Categories


Popular topics

(Undo revision 630 by Idmadmin (talk))
 
Line 1: Line 1:
 
[[Category:Project tab]]
 
[[Category:Project tab]]
[[File:UEStudio new project using templates.png|right|alt=screenshot of UEStudio's create new project using templates dialog]]
 
  
 
<span class="idm-uestudio-only">''This feature is available in [https://www.ultraedit.com/products/uestudio/ UEStudio] only.''</span>
 
<span class="idm-uestudio-only">''This feature is available in [https://www.ultraedit.com/products/uestudio/ UEStudio] only.''</span>
  
UEStudio supports several different project templates based upon different compilers. Short summaries for the default templates (for each compiler, where supported) are included below.
+
The Project Manager dialog allows you to see and manage multiple projects that you've recently opened in UEStudio.
+
 
'''Windows App'''<br>
+
[[File:UEStudio project manager.png|alt=screenshot of UEStudio's project manager dialog]]
A Windows application is an executable application (.EXE) using calls to the Win32 API rather than to MFC classesUEStudio will create workspace and project files for your program that you can then customize with your own code.
+
 
+
Projects you've opened in UEStudio are listed in the project list grid on the left with the following columns:
'''Console App'''<br>
+
 
Console applications are developed with console API functions, which provide character-mode support in console windows. UEStudio will create workspace and project files for your program that you can then customize with your own elements.
+
* '''Project name''': The name you assigned to the project.
+
* '''Compiler''': The compiler (if any) set for the project.
'''Dialog App'''<br>
+
* '''Working time''': The total time the project has been open.
Dialog applications are based on a dialog window. These are the same as in Visual Studio wizards.  
+
* '''Project path''': The full path to the project file.
+
 
'''Dynamic Link Library'''<br>
+
The functions related to project management are divided into three categories:
A dynamic link library is a binary file (using calls to the Win32 API rather than to MFC classes), that acts as a shared library of functions that can be used simultaneously by multiple applicationsUEStudio will create workspace and project files for your program that you can then customize with your own code.
+
 
+
# '''Project''', related to opening, creating, backing up, and restoring project files,
'''Static Library'''<br>
+
# '''Projects List''', related to adding projects to or removing them from the projects list, and
A static library is a file containing objects and their functions and data that is linked into your program when the executable file is built. You can link a static library to an MFC-based program or to a non-MFC program for Windows written in C or C++, that makes calls to the Win32 API rather than to MFC classes.
+
# '''Batch Builder''', related to opening/creating lists for batch building.
+
 
'''Utility Project (Empty/User-Define Project)'''<br>
+
==Project==
When you create an empty project (or user-defined template), no files are added to the project. The empty project does not generate any predetermined output files, such as a .LIB, .DLL or .EXE.  An empty project can be used as a container for files you can build without a link step.  You can use an empty project as a master project for your subprojects, and an empty project can export a makefile.
+
 
+
'''Open'''<br>
The dialog also includes the following buttons for modifying, deleting, and creating user-defined templates:
+
Opens the selected project. You can also double-click the project's name in the grid view to open it.
 +
 
 +
'''Create'''<br>
 +
Allows you to create a new project by opening a sub-menu where you can select "Empty" or "Using templates."
 +
 
 +
[[File:UEStudio new project from project manager.png|right|alt=screenshot of UEStudio's new (empty) project dialog, from project manager dialog]]
 +
 
 +
Choosing "Empty" opens a "New project" dialog where you can specify the '''project name''' and the '''location''' of the project file. The location must be a folder that already exists on the system. If '''Create project directory''' is selected then a directory with the name of the project will be created on the specified pathFor example, if you set the project location to "C:\Development\" and the project name to "MyApp," the path to the project file would be "C:\Development\My App\MyApp.prj".
 +
 
 +
Choosing "Using templates" opens the [[Project templates]] dialog where you can select a template for the new project.
 +
 
 +
'''Backup'''<br>
 +
Immediately backs up project and opens the [[Backup project]] dialog. If the '''Location''' field below these options is empty, the project will be backed up to your "Documents" folder under a "\Projects\Backup\PROJECTNAME" subfolder. Otherwise, the backup is created in the path provided in the '''Location''' field.
 +
 
 +
'''Restore'''<br>
 +
Opens sub-menu allowing you to choose which backup of the project to restore, then launches [[Restore project]] for that particular backup.
 +
 
 +
'''Remove backup'''<br>
 +
Opens sub-menu allowing you to permanently delete a backup.
 +
 
 +
==Projects List==
 +
 
 +
'''Add'''<br>
 +
Allows you to select an existing project file (.prj) to add to the projects list.
 +
 
 +
'''Remove'''<br>
 +
Removes the selected project(s) from the projects list.
 +
 
 +
'''Find'''<br>
 +
Allows you to select a location that UEStudio will search for existing projects. Any projects found are added to the projects list.
  
 
'''Delete'''<br>
 
'''Delete'''<br>
This deletes a custom user-defined template (the built-in templates described above cannot be deleted).
+
Clears all items from the projects list.
  
'''Copy'''<br>
+
==Batch Builder==
This creates a copy of a custom user-defined template.
 
  
'''Rename'''<br>
+
'''Open'''<br>
Renames selected custom user-defined template.
+
Opens the [[Batch builder]].
  
'''Edit'''<br>
+
'''Create'''<br>
Opens user-defined template file for editing in UEStudio.
+
Quickly creates a batch builder list from the selected project.

Latest revision as of 19:49, 13 October 2017


This feature is available in UEStudio only.

The Project Manager dialog allows you to see and manage multiple projects that you've recently opened in UEStudio.

Projects you've opened in UEStudio are listed in the project list grid on the left with the following columns:

  • Project name: The name you assigned to the project.
  • Compiler: The compiler (if any) set for the project.
  • Working time: The total time the project has been open.
  • Project path: The full path to the project file.

The functions related to project management are divided into three categories:

  1. Project, related to opening, creating, backing up, and restoring project files,
  2. Projects List, related to adding projects to or removing them from the projects list, and
  3. Batch Builder, related to opening/creating lists for batch building.

Project

Open
Opens the selected project. You can also double-click the project's name in the grid view to open it.

Create
Allows you to create a new project by opening a sub-menu where you can select "Empty" or "Using templates."

Choosing "Empty" opens a "New project" dialog where you can specify the project name and the location of the project file. The location must be a folder that already exists on the system. If Create project directory is selected then a directory with the name of the project will be created on the specified path. For example, if you set the project location to "C:\Development\" and the project name to "MyApp," the path to the project file would be "C:\Development\My App\MyApp.prj".

Choosing "Using templates" opens the Project templates dialog where you can select a template for the new project.

Backup
Immediately backs up project and opens the Backup project dialog. If the Location field below these options is empty, the project will be backed up to your "Documents" folder under a "\Projects\Backup\PROJECTNAME" subfolder. Otherwise, the backup is created in the path provided in the Location field.

Restore
Opens sub-menu allowing you to choose which backup of the project to restore, then launches Restore project for that particular backup.

Remove backup
Opens sub-menu allowing you to permanently delete a backup.

Projects List

Add
Allows you to select an existing project file (.prj) to add to the projects list.

Remove
Removes the selected project(s) from the projects list.

Find
Allows you to select a location that UEStudio will search for existing projects. Any projects found are added to the projects list.

Delete
Clears all items from the projects list.

Batch Builder

Open
Opens the Batch builder.

Create
Quickly creates a batch builder list from the selected project.

MediaWiki spam blocked by CleanTalk.