Skip to content

Commit 8f17269

Browse files
committed
Initial Commit
0 parents  commit 8f17269

File tree

5 files changed

+118
-0
lines changed

5 files changed

+118
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Libraries
2+
*.lvlibp
3+
*.llb
4+
5+
# Shared objects (inc. Windows DLLs)
6+
*.dll
7+
*.so
8+
*.so.*
9+
*.dylib
10+
11+
# Executables
12+
*.exe
13+
14+
# Metadata
15+
*.aliases
16+
*.lvlps
17+
18+
build

Add Labels.vi

21.4 KB
Binary file not shown.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Martin Nöhrer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

QuickDrop_AddLabels.lvproj

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Project Type="Project" LVVersion="16008000">
3+
<Property Name="NI.LV.All.SourceOnly" Type="Bool">true</Property>
4+
<Item Name="My Computer" Type="My Computer">
5+
<Property Name="NI.SortType" Type="Int">3</Property>
6+
<Property Name="server.app.propertiesEnabled" Type="Bool">true</Property>
7+
<Property Name="server.control.propertiesEnabled" Type="Bool">true</Property>
8+
<Property Name="server.tcp.enabled" Type="Bool">false</Property>
9+
<Property Name="server.tcp.port" Type="Int">0</Property>
10+
<Property Name="server.tcp.serviceName" Type="Str">My Computer/VI Server</Property>
11+
<Property Name="server.tcp.serviceName.default" Type="Str">My Computer/VI Server</Property>
12+
<Property Name="server.vi.callsEnabled" Type="Bool">true</Property>
13+
<Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property>
14+
<Property Name="specify.custom.address" Type="Bool">false</Property>
15+
<Item Name="Add Labels.vi" Type="VI" URL="../Add Labels.vi"/>
16+
<Item Name="Dependencies" Type="Dependencies">
17+
<Item Name="vi.lib" Type="Folder">
18+
<Item Name="QuickDrop Plugin Data ver1.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/QuickDropSupport/QuickDrop Plugin Data ver1.ctl"/>
19+
<Item Name="QuickDrop Parse Plugin Variant.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/QuickDropSupport/QuickDrop Parse Plugin Variant.vi"/>
20+
<Item Name="Clear Errors.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Clear Errors.vi"/>
21+
</Item>
22+
</Item>
23+
<Item Name="Build Specifications" Type="Build">
24+
<Item Name="Zip File distribution" Type="Zip File">
25+
<Property Name="Absolute[0]" Type="Bool">false</Property>
26+
<Property Name="BuildName" Type="Str">Zip File distribution</Property>
27+
<Property Name="Comments" Type="Str"></Property>
28+
<Property Name="DestinationID[0]" Type="Str">{8162C916-32E6-493B-9C7C-5E5D1FF82FD1}</Property>
29+
<Property Name="DestinationItemCount" Type="Int">1</Property>
30+
<Property Name="DestinationName[0]" Type="Str">Destination Directory</Property>
31+
<Property Name="IncludedItemCount" Type="Int">1</Property>
32+
<Property Name="IncludedItems[0]" Type="Ref">/My Computer/Add Labels.vi</Property>
33+
<Property Name="IncludedItems[1]" Type="Ref"></Property>
34+
<Property Name="IncludeProject" Type="Bool">false</Property>
35+
<Property Name="Path[0]" Type="Path">../build/QuickDrop_AddLabels.zip</Property>
36+
<Property Name="ZipBase" Type="Str">NI_zipbasevirtual</Property>
37+
</Item>
38+
</Item>
39+
</Item>
40+
</Project>

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# LabView QuickDrop AddLabels
2+
3+
A LabVIEW Quick-Drop (QD) plug-in for adding or removing labels to block diagram elements and subdiagram labels for structure elements.
4+
5+
6+
## Installation
7+
Place the content of the zip file in your `<LabVIEW>\resource\dialog\QuickDrop\plugins` folder.
8+
9+
## Usage
10+
11+
This quick-drop plug-in works only in the block diagram.
12+
Press Ctrl+Space Ctrl+Q to add the labels to the selected items.
13+
If the plug-in is called using the SHIFT key than the label will be removed.
14+
15+
## Hints
16+
The plug-in has been developed with LabVIEW 2016.
17+
18+
## License
19+
20+
MIT License
21+
22+
Permission is hereby granted, free of charge, to any person obtaining a copy
23+
of this software and associated documentation files (the "Software"), to deal
24+
in the Software without restriction, including without limitation the rights
25+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26+
copies of the Software, and to permit persons to whom the Software is
27+
furnished to do so, subject to the following conditions:
28+
29+
The above copyright notice and this permission notice shall be included in all
30+
copies or substantial portions of the Software.
31+
32+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38+
SOFTWARE.
39+

0 commit comments

Comments
 (0)