Jump to content

Project Explorer: Difference between revisions

From LabVIEW Wiki
Removed redirect. Separating page from LabVIEW Project
Tag: Removed redirect
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{underconstruction}}
[[Image:Project Explorer.png|frame|thumbnail|The Project Explorer]]{{TOCright}}
The '''Project Explorer''' window is the window to view and edit [[LabVIEW Project]] files (''[[LVPROJ File Extension|*.lvproj]]'').  The Project Explorer was first introduced in [[LabVIEW 8]] as the means to organizes files, hardware configurations, Target configurations, and Build Specifications as a project.
The '''Project Explorer''' window is the window to view and edit [[LabVIEW Project]] (''[[LVPROJ File Extension|*.lvproj]]'') files .  The Project Explorer was first introduced in [[LabVIEW 8]] as the means to organizes files, hardware configurations, Target configurations, and Build Specifications as a project.
[[Image:Project Explorer.png|frame|center|550px|The Project Explorer]]
== Contents  ==


The contents of a project are separated into ''Targets''. Each target represent a platform on which the code will run, for instance, Real-Time modules, FPGA, or "My Computer" representing a Windows, Mac, or Linux OS.
The Project Explorer consists of:
* A Menu bar
* Toolbars
* An Items Page
* A Files Page
 
== Items Page ==
The '''Items Page''' shows the contents of a project separated into ''Targets''. Each target represents a platform on which the code will run, for instance, Real-Time modules, FPGA modules, or "My Computer" representing a Windows, Mac, or Linux OS.


Under each target three subdivisions are made:
Under each target three subdivisions are made:
Line 18: Line 23:
=== Dependencies  ===
=== Dependencies  ===


Dependencies are files used by files inside the [[LabVIEW Project#Code|code]] section and not explicitly added to the project. LabVIEW 8.5 and up have separate categories for [[Vi.lib|vi.lib]], [[User.lib|user.lib]] and [[Instr.lib|instr.lib]].
Dependencies are files used by files inside the [[LabVIEW Project#Code|code]] section and not explicitly added to the project. [[LabVIEW 8.5]] and up have separate categories for [[Vi.lib|vi.lib]], [[User.lib|user.lib]] and [[Instr.lib|instr.lib]].


=== Build specifications  ===
=== Build specifications  ===


The build specifications contains setting for distributing the code in several forms as a toolkit (source distribution), executable (exe), shared library (DLL) or web-app.
The build specifications contain settings for distributing the code in several forms as a toolkit (source distribution), executable (exe), shared library (DLL) or web-app.


These builds can be included in an installer.
These builds can be included in an installer.


=== Project Item<br> ===
== Files Page ==
The '''Files Page''' shows the contents of a project by the directory structure on disk.  It does not show the entire file system.  Instead, it only shows the directory structure of where items in the project or in the dependencies exist on disk. If a mass file move needs to happen, it is better to do it here that using the files system because it allows LabVIEW to update and maintain any file linking.
 
== Project Items ==
Project Items are individual items as they appear in the tree in the Project Explorer.  They can be:
* [[VI]]s
* libraries
* classes
* folders
* targets
* build specifications
* and more 
 
A list of valid [[ProjectItem]]s types can be found on the [[ProjectItem]] page.
 
=== Folders ===
Elements in a project can be organized using folders. The original [[LabVIEW Project]] implementation from [[LabVIEW 8]] to [[LabVIEW 8.20|8.2]] only allowed for ''Virtual folders'' where there was no connection between the project folder or a disk folder.  Upon user request, in [[LabVIEW 8.5]] support was added for [[Auto-populating Folder]]s. These folders are a shortcut to a folder on a disk and will include all the files inside that folder (including sub-folders). However, only [[LabVIEW Project]]s can have [[Auto-populating Folder]]s. Other libraries can only have [[Virtual Folder]]s. '''Note:''' Mixing [[Auto-populating Folder]]s in a [[LabVIEW Project]] with [[Virtual Folder]]s in other libraries is not recommended and might cause [[Cross link|cross-linking]] issues.


==== Folders<br>  ====
=== Libraries ===
Libraries provide organization within a project as folders do.  However, unlike folders, libraries provide [[wikipedia:Namespace|namespacing]] and modularization.  In a project [[VI]]s must have unique names to avoid [[Cross link|cross-linking]] issues.  A library allows for VIs with the same name by providing a namespace for them, the library name is prepended to the VI name. 


Elements in a project can be organized using folders. (The original LabVIEW project implementation (LabVIEW 8.0-8.2) only allowed so called ''Virtual folders'' where there was no connection between the project folder or a disk folder.) Upon user request LabVIEW 8.5 added support for ''Auto-Populating folders''.&nbsp;These folders are a shortcut to a folder on a disk and will include all the files inside that folder (including sub-folders). Mixing Auto-Populating folders with ''LabVIEW library folders'' is not recommended and might cause [[Cross link|cross-links]].'''<br>'''
Also, when libraries are added to a project only the library file is referenced by the project. This means that everything the library owns is known only to the library file and not to the project file. This is helps with modularization because adding to or modifying the library won't necessitate a change to the project file and wouldn't require the project file to be updated in [[Source Code Control]].


<br>
=== Nested Libraries ===
Some library types allow for nesting libraries (a library inside of a library).  [[LabVIEW Project Library|LabIEW Project Libraries]], [[LabVIEW Class|LabVIEW Classes]], [[LabVIEW StateChart|LabVIEW StateChart Libraries]], and [[XControl]]s can be added to other [[LabVIEW Project Library|LabIEW Project Libraries]] or [[XControl]]s, only the nested library file is referenced in the parent library file, like with projects.  Again, this helps with modularization by requiring only the modified library to be updated in [[Source Code Control]] and not the parent library.  '''Note:''' [[LabVIEW Class|LabVIEW Classes]] are not allowed to have nested libraries.


==== GUID Index<br>  ====
=== Targets ===
There are many types of targets (i.e. Real-time OSs, [[FPGA]]s, [[cRIO]]s, [[Raspberry Pi]], etc.  Code cannot be shared easily across targets. Trying to use a [[LabVIEW Class]] by two targets will cause the class to be locked for editing.


For any Project Item a Type string and GUID string can be obtained using VI server. The following table lists the GUID&nbsp;for several Project Item types.<br>
=== Overlays ===
Overlays are smaller icons that appear on the [[ProjectItem|ProjectItem's]] icon that show status or other properties. 
* For [[LabVIEW Project Library|LabIEW Project Libraries]] and [[LabVIEW Class|LabVIEW Classes]] colored key icons show the [[Access scope|access scope]] of the item. 
* For [[LabVIEW Class|LabVIEW Classes]] and [[XControl]]s a lock icon appears when the class or [[XControl]] is locked and won't allow editing.
* For some integrated [[Source Code Control]] programs, checkboxes and/or "X's" denote items checked-out or items that have edits that need to be checked-in or committed.


{| cellspacing="1" cellpadding="1" border="1" style="width: 551px; height: 103px;"
== Menu Bar ==
Consists of the Standard Basic Menu Bar. See [[LabVIEW IDE Menu Bar]].
 
== Toolbars ==
The standard toolbars include:
{| class="wikitable"
|-
! Icon
! Description
|-
! colspan=2 style="text-align: left;" | '''Standard Toolbar'''
|-
| [[File:Project Explorer-New.png|center|frameless]]
| New - opens the "New..." dialog (see [[New dialog|New Dialog]])
|-
| [[File:Project Explorer-Open.png|center|frameless]]
| Open - opens a file dialog.  Allows opening any LabVIEW file type. (See [[LabVIEW File Extensions]])
|-
| [[File:Project Explorer-Save All (This Project).png|center|frameless]]
| Save All (this Project) - saves all items in the project
|-
|-
! scope="col" | Item type<br>
| [[File:Project Explorer-Cut.png|center|frameless]]
! scope="col" | Type String<br>
| Cut
! scope="col" | GUID&nbsp;String<br>
|-
|-
| Virtual Folder<br>
| [[File:Project Explorer-Copy.png|center|frameless]]
| Folder<br>
| Copy
| {D60740D6-F254-4BBC-5675-8858F35B820E}<br>
|-
|-
| Auto Populating Folder<br>
| [[File:Project Explorer-Paste.png|center|frameless]]
| Folder<br>
| Paste
| {D60740D6-F254-4BBC-5675-8858F35B820E}<br>
|-
|-
| VI<br>
| [[File:Project Explorer-Remove From Project.png|center|frameless]]
| VI<br>
| Remove from Project - Deletes item from the project.  All child items, if a folder or library, are also removed from the project.
| {D60740D6-F254-4BBC-5675-8858F35B810E}<br>
|-
|-
| Control<br>
! colspan=2 style="text-align: left;" | '''Project Toolbar'''
| VI<br>
| {D60740D6-F254-4BBC-5675-8858F35B810E}<br>
|-
|-
| (Non-LabVIEW) file<br>
| [[File:Project Explorer-Open Project.png|center|frameless]]
| Document<br>
| Open Project - opens a file dialog. Similar to the open button but limits selection to [[LabVIEW Project]] [[LVPROJ File Extension| ''(*.lvproj)'']] files.
| {D60740D6-F255-4BBC-5675-8858F35B820E}<br>
|-
|-
| LLB-file<br>
| [[File:Project Explorer-Save Project.png|center|frameless]]
| Folder<br>
| Save Project - save the project file.  Similar to Save All, but only saves the [[LabVIEW Project]] [[LVPROJ File Extension| ''(*.lvproj)'']] file.
| {D60740D6-F254-4BBC-5675-8858F35B820E}<br>
|-
|-
| Lvlib file<br>
| [[File:Project Explorer-Filter Project View.png|center|frameless]]
| Library<br>
| Filter Project View - toggle '''Dependencies''' or '''Build Specification''' visibility.
| {ABC740D6-F254-4BBC-5675-8858F35B820E}<br>
|-
|-
| LabVIEW class<br>
| [[File:Project Explorer-Resolve Conflicts.png|center|frameless]]
| LVClass<br>
| Resolve Conflicts... - opens conflict resolution dialog.
| {EFD740D6-F254-4BBC-5675-8858F35B820E}<br>
|-
|-
| Class datatype<br>
! colspan=2 style="text-align: left;" | '''Build Toolbar'''
| Class Private Data<br>
| {64A9BF48-4C55-45DB-8F18-9C796DA0C113}<br>
|-
|-
| LabVIEW&nbsp;XControl<br>
| [[File:Project Explorer-Build All.png|center|frameless]]
| XControl<br>
| Build All - builds all items in '''Build Specification'''
| {2E4BD3AC-4E04-45C9-B6C5-AD138962C435}<br>
|-
|-
| XControl ability VI<br>
| [[File:Project Explorer-Build Selected.png|center|frameless]]
| Ability VI<br>
| Build Selected - builds the selected item in '''Build Specification'''
| {DAABD3DA-4F44-4C3D-8BA3-E5D035A4F27A}<br>
|-
|-
| DAQmx Task<br>
| [[File:Project Explorer-Run From Build.png|center|frameless]]
| NI-DAQmx Task<br>
| Run From Build - builds and then the selected item in '''Build Specification'''
| {0A806145-1BF3-3A50-0B5E-F969F56C8E2A}<br>
|-
|-
| DAQmx Virtual Channel<br>
! colspan=2 style="text-align: left;" | '''Source Control Toolbar'''
| NI-DAQmx Channel<br>
| {B5F05770-7C71-3A03-C9FB-F73F35629FC1}<br>
|-
|-
| DAQmx Scale<br>
| [[File:Project Explorer-Check Out.png|center|frameless]]
| NI-DAQmx Scale<br>
| Check Out - checks out the file from [[Source Code Control]] if SCC integration has been turned on.
| {BC977C97-1833-3D51-4EF6-D82E6838A8F3}<br>
|-
|-
| Shared NetworkVariable<br>
| [[File:Project Explorer-Undo Check Out.png|center|frameless]]
| Variable<br>
| Undo Check Out - checks in the file to [[Source Code Control]] without any changes if SCC integration has been turned on.
| {9BA597C5-4996-4622-B9BB-444431834D0D}<br>
|-
|-
| Hyperlink<br>
| [[File:Project Explorer-Check In.png|center|frameless]]
| Hyperlink<br>
| Check In - checks in the file to [[Source Code Control]] with the changes if SCC integration has been turned on.
| {CC472C20-0441-48DC-AF25-3E82ECC9376F}<br>
|-
| [[File:Project Explorer-Add to Source Code Control.png|center|frameless]]
| Add to Source Code Control - adds the file to [[Source Code Control]] if SCC integration has been turned on.
|}
|}


<br>
Some optional toolbars, depending on the toolkits installed:
 
{| class="wikitable"
<br>
|-
! Icon
! Description
|-
! colspan=2 style="text-align: left;" | '''Unit Test Framework Toolbar'''
|-
| [[File:Project Explorer-Run Unit Test.png|center|frameless]]
| Run Unit Test - runs the unit test.  Requires the [[Unit Test Framework]].
|-
| [[File:Project Explorer-Unit Test Framework Results.png|center|frameless]]
| Unit Test Framework Results - open the Unit Test Framework results viewer.  Requires the [[Unit Test Framework]].
|}


== Tips and tricks ==
== Tips and tricks ==
* Select '''Arrange By''' from the right-click menu of a folder to choose between different sorting options.
* Select '''Arrange By''' from the right-click menu of a folder to choose between different sorting options.
* Drop any file into the '''Project Explorer''' to add it to the project. This also works for multiple files and folders.
* Drop any file into the '''Project Explorer''' to add it to the project. This also works for multiple files and folders.
== Project Providers ==
Project Providers are the way to add functionality to the Project Explorer.  They allow additions to the Toolbar and Right-click menus, the creation of special [[ProjectItem]] types, additional dialogs and wizards, and additional overlays.  To learn more see [[Project Provider Framework]].
== History ==
{| class="wikitable"
! Version
! Change(s)
|-
|[[File:LV8-2013.png|frameless|border|64x64px|LabVIEW 8.5|link=LabVIEW 8.5]]
| In [[LabVIEW 8.5]], with the introduction of ''Auto-populating Folders'', the '''Items''' and '''Files''' tabs were added.
|-
|[[File:LV8-2013.png|frameless|border|64x64px|LabVIEW 8|link=LabVIEW 8]]
| First introduced in [[LabVIEW 8]].
|}
== See Also ==
* [[LabVIEW Project]]
* [[LabVIEW Project Library]]
* [[LabVIEW Class]]
* [[LabVIEW LINX]]
* [[FPGA]]
* [[Real-time]]
* [[Unit Test Framework]]
* [[Project Provider Framework]]


== External Links  ==
== External Links  ==


*[http://zone.ni.com/reference/en-XX/help/371361E-01/lvconcepts/using_labview_projects/ Using LabVIEW Projects] (NI LabVIEW 8.6 Help)  
*[http://zone.ni.com/reference/en-XX/help/371361E-01/lvconcepts/using_labview_projects/ Using LabVIEW Projects] (NI LabVIEW 8.6 Help)  
*[http://forums.lavag.org/False-linking-of-VIs-to-svn-folder-t12757.html# Incompatibility of Auto-Populating folders and LabVIEW libraries]<br>
*[http://forums.lavag.org/False-linking-of-VIs-to-svn-folder-t12757.html# Incompatibility of Auto-Populating folders and LabVIEW libraries]
 
[[Category:Project Explorer]]

Latest revision as of 14:43, 21 March 2024

The Project Explorer

The Project Explorer window is the window to view and edit LabVIEW Project (*.lvproj) files . The Project Explorer was first introduced in LabVIEW 8 as the means to organizes files, hardware configurations, Target configurations, and Build Specifications as a project.

The Project Explorer consists of:

  • A Menu bar
  • Toolbars
  • An Items Page
  • A Files Page

Items Page

The Items Page shows the contents of a project separated into Targets. Each target represents a platform on which the code will run, for instance, Real-Time modules, FPGA modules, or "My Computer" representing a Windows, Mac, or Linux OS.

Under each target three subdivisions are made:

  1. Code
  2. Dependencies
  3. Build specifications

Code

Items under a target represent links to actual files, these files can be rearranged inside the LabVIEW project to have a better separation like VIs, controls or libraries. Moving things around inside the LabVIEW project will not alter the files or their location except when the files are added or removed from a library-file.

Dependencies

Dependencies are files used by files inside the code section and not explicitly added to the project. LabVIEW 8.5 and up have separate categories for vi.lib, user.lib and instr.lib.

Build specifications

The build specifications contain settings for distributing the code in several forms as a toolkit (source distribution), executable (exe), shared library (DLL) or web-app.

These builds can be included in an installer.

Files Page

The Files Page shows the contents of a project by the directory structure on disk. It does not show the entire file system. Instead, it only shows the directory structure of where items in the project or in the dependencies exist on disk. If a mass file move needs to happen, it is better to do it here that using the files system because it allows LabVIEW to update and maintain any file linking.

Project Items

Project Items are individual items as they appear in the tree in the Project Explorer. They can be:

  • VIs
  • libraries
  • classes
  • folders
  • targets
  • build specifications
  • and more

A list of valid ProjectItems types can be found on the ProjectItem page.

Folders

Elements in a project can be organized using folders. The original LabVIEW Project implementation from LabVIEW 8 to 8.2 only allowed for Virtual folders where there was no connection between the project folder or a disk folder. Upon user request, in LabVIEW 8.5 support was added for Auto-populating Folders. These folders are a shortcut to a folder on a disk and will include all the files inside that folder (including sub-folders). However, only LabVIEW Projects can have Auto-populating Folders. Other libraries can only have Virtual Folders. Note: Mixing Auto-populating Folders in a LabVIEW Project with Virtual Folders in other libraries is not recommended and might cause cross-linking issues.

Libraries

Libraries provide organization within a project as folders do. However, unlike folders, libraries provide namespacing and modularization. In a project VIs must have unique names to avoid cross-linking issues. A library allows for VIs with the same name by providing a namespace for them, the library name is prepended to the VI name.

Also, when libraries are added to a project only the library file is referenced by the project. This means that everything the library owns is known only to the library file and not to the project file. This is helps with modularization because adding to or modifying the library won't necessitate a change to the project file and wouldn't require the project file to be updated in Source Code Control.

Nested Libraries

Some library types allow for nesting libraries (a library inside of a library). LabIEW Project Libraries, LabVIEW Classes, LabVIEW StateChart Libraries, and XControls can be added to other LabIEW Project Libraries or XControls, only the nested library file is referenced in the parent library file, like with projects. Again, this helps with modularization by requiring only the modified library to be updated in Source Code Control and not the parent library. Note: LabVIEW Classes are not allowed to have nested libraries.

Targets

There are many types of targets (i.e. Real-time OSs, FPGAs, cRIOs, Raspberry Pi, etc. Code cannot be shared easily across targets. Trying to use a LabVIEW Class by two targets will cause the class to be locked for editing.

Overlays

Overlays are smaller icons that appear on the ProjectItem's icon that show status or other properties.

Menu Bar

Consists of the Standard Basic Menu Bar. See LabVIEW IDE Menu Bar.

Toolbars

The standard toolbars include:

Icon Description
Standard Toolbar
New - opens the "New..." dialog (see New Dialog)
Open - opens a file dialog. Allows opening any LabVIEW file type. (See LabVIEW File Extensions)
Save All (this Project) - saves all items in the project
Cut
Copy
Paste
Remove from Project - Deletes item from the project. All child items, if a folder or library, are also removed from the project.
Project Toolbar
Open Project - opens a file dialog. Similar to the open button but limits selection to LabVIEW Project (*.lvproj) files.
Save Project - save the project file. Similar to Save All, but only saves the LabVIEW Project (*.lvproj) file.
Filter Project View - toggle Dependencies or Build Specification visibility.
Resolve Conflicts... - opens conflict resolution dialog.
Build Toolbar
Build All - builds all items in Build Specification
Build Selected - builds the selected item in Build Specification
Run From Build - builds and then the selected item in Build Specification
Source Control Toolbar
Check Out - checks out the file from Source Code Control if SCC integration has been turned on.
Undo Check Out - checks in the file to Source Code Control without any changes if SCC integration has been turned on.
Check In - checks in the file to Source Code Control with the changes if SCC integration has been turned on.
Add to Source Code Control - adds the file to Source Code Control if SCC integration has been turned on.

Some optional toolbars, depending on the toolkits installed:

Icon Description
Unit Test Framework Toolbar
Run Unit Test - runs the unit test. Requires the Unit Test Framework.
Unit Test Framework Results - open the Unit Test Framework results viewer. Requires the Unit Test Framework.

Tips and tricks

  • Select Arrange By from the right-click menu of a folder to choose between different sorting options.
  • Drop any file into the Project Explorer to add it to the project. This also works for multiple files and folders.

Project Providers

Project Providers are the way to add functionality to the Project Explorer. They allow additions to the Toolbar and Right-click menus, the creation of special ProjectItem types, additional dialogs and wizards, and additional overlays. To learn more see Project Provider Framework.

History

Version Change(s)
LabVIEW 8.5 In LabVIEW 8.5, with the introduction of Auto-populating Folders, the Items and Files tabs were added.
LabVIEW 8 First introduced in LabVIEW 8.

See Also

External Links