Module implementing the project management functionality.
Project | Module implementing the project management functionality. |
None |
Module implementing the project management functionality.
Project | Constructor |
__checkSecurity | Private method to check some entries for security problems. |
addDirectory | Private method used to add all files of a directory to the project. |
addFiles | Public slot used to add files to the project. |
addIdlDir | Public slot to add all IDL interfaces of a directory to the current project. |
addIdlFiles | Public slot to add IDL interfaces to the current project. |
addLanguage | Public slot used to add a language to the project. |
addOthersDir | Private slot to add a directory to the OTHERS project data. |
addOthersFiles | Private slot to add files to the OTHERS project data. |
addPyDir | Public slot to add all python files of a directory to the current project. |
addPyFiles | Public slot to add python files to the current project. |
addRecursiveDirectory | Private method used to add all files of a directory tree. |
addSingleDirectory | Private method used to add all files of a single directory to the project. |
addToOthers | Private method to add file/directory to the OTHERS project data. |
addUiDir | Public slot to add all forms of a directory to the current project. |
addUiFiles | Public slot to add forms to the current project. |
appendFile | Public method to append a file to the project. |
checkDirty | Private method to check dirty status and open a message window. |
checkFilesExist | Private method to check, if the files in a list exist. |
closeProject | Public slot to close the current project. |
copyDirectory | Public slot to copy a directory. |
deleteDebugProperties | Private method to delete the project debugger properties file (.e3d) |
deleteDirectory | Public slot to delete a directory from the project directory. |
deleteFile | Public slot to delete a file from the project directory. |
deleteLanguage | Public slot to delete a translation from the project directory. |
deleteSession | Public method to delete the session file. |
getActions | Public method to get a list of all actions. |
getDebugProperty | Public method to retrieve a debugger property. |
getFiles | Public method to get all files starting with a common prefix. |
getMainScript | Public method to return the main script filename. |
getSources | Public method to return the source script files. |
handleApplicationDiagram | Private method to handle the application diagram context menu action. |
handleClearRecent | Private method to clear the recent projects menu. |
handleCodeCoverage | Private slot used to show the code coverage information for the project files. |
handleCodeMetrics | Private slot used to calculate some code metrics for the project files. |
handleCyclopsReport | Private slot used to show the Cyclops report for the project. |
handleOpenRecent | Private method to open a project from the list of rencently opened projects. |
handleProfileData | Private slot used to show the profiling information for the project. |
handlePyLint | Private slot used to check the project with pylint. |
handleRemoveCyclopsReport | Private slot used to remove the Cyclops report for the project. |
handleSearchNewFiles | Private slot used to handle the search new files action. |
handleShowRecentMenu | Private method to set up the recent projects menu. |
handleShowShowMenu | Private slot called before the show menu is shown. |
handleShowVCSMenu | Private slot called before the vcs menu is shown. |
handleSyntaxCheck | Private slot used to check the project files for bad syntax. |
handleTabnanny | Private slot used to check the project files for bad indentations. |
hasEntry | Public method to check the project for a file. |
init | Private method to initialize the project data part. |
initActions | Public slot to initialize the project related actions. |
initDebugProperties | Private method to initialize the debug properties. |
initFileTypes | Private method to initialize the filetype associations with default values. |
initMenu | Public slot to initialize the project menu. |
initToolbar | Public slot to initialize the project toolbar. |
initVCS | Private method used to instantiate a vcs system. |
isDebugPropertiesLoaded | Public method to return the status of the debug properties. |
isDirty | Public method to return the dirty state. |
isOpen | Public method to return the opened state. |
isProjectForm | Public method used to check, if the passed in filename belongs to the project forms. |
isProjectInterface | Public method used to check, if the passed in filename belongs to the project interfaces. |
isProjectSource | Public method used to check, if the passed in filename belongs to the project sources. |
moveDirectory | Public slot to move a directory. |
newProject | Public slot to built a new project. |
openProject | Public slot to open a project. |
othersAdded | Public slot to be called, if something was added to the OTHERS project data area. |
readDebugProperties | Private method to read in the project debugger properties file (.e3d) |
readProject | Public method to read in a project (.e3p, .e3pz) file. |
readSession | Private method to read in the project session file (.e3s) |
readTasks | Private method to read in the project tasks file (.e3t) |
readXMLDebugProperties | Public method to read the debugger properties from an XML file. |
readXMLProject | Public method to read the project data from an XML file. |
readXMLSession | Public method to read the session data from an XML file. |
readXMLTasks | Public method to read the project tasks data from an XML file. |
removeDirectory | Public slot to remove a directory from the project. |
removeFile | Public slot to remove a file from the project. |
removeLanguage | Public slot to remove a translation from the project. |
renameFile | Public slot to rename a file of the project. |
renameMainScript | Public method to rename the main script. |
saveAllScripts | Public method to save all scripts belonging to the project. |
saveProject | Public slot to save the current project. |
saveProjectAs | Public slot to save the current project to a different file. |
searchNewFiles | Private method to search for new files in the project directory. |
setDbgInfo | Public method to set the debugging information. |
setDirty | Private method to set the dirty state. |
showDebugProperties | Private slot to display the debugger properties dialog. |
showFiletypeAssociations | Public slot to display the filetype association dialog. |
showProperties | Public slot to display the properties dialog. |
writeDebugProperties | Private method to write the project debugger properties file (.e3d) |
writeProject | Public method to save the project infos to a project file. |
writeSession | Public method to write the session data to an XML file (.e3s). |
writeTasks | Public method to write the tasks data to an XML file (.e3t). |
writeXMLProject | Public method to write the project data to an XML file. |
Constructor
Private method to check some entries for security problems. If a security problem is found, the respective entry is replaced with the default value.
Private method used to add all files of a directory to the project.
Public slot used to add files to the project.
Public slot to add all IDL interfaces of a directory to the current project.
Public slot to add IDL interfaces to the current project.
Public slot used to add a language to the project.
Private slot to add a directory to the OTHERS project data.
Private slot to add files to the OTHERS project data.
Public slot to add all python files of a directory to the current project.
Public slot to add python files to the current project.
Private method used to add all files of a directory tree. The tree is rooted at source to another one rooted at target. This method decents down to the lowest subdirectory.
Private method used to add all files of a single directory to the project.
Private method to add file/directory to the OTHERS project data.
Public slot to add all forms of a directory to the current project.
Public slot to add forms to the current project.
Public method to append a file to the project.
Private method to check dirty status and open a message window.
Private method to check, if the files in a list exist. The files in the indicated list are checked for existance in the filesystem. Non existant files are removed from the list and the dirty state of the project is changed accordingly.
Public slot to close the current project.
Public slot to copy a directory.
Private method to delete the project debugger properties file (.e3d)
Public slot to delete a directory from the project directory.
Public slot to delete a file from the project directory.
Public slot to delete a translation from the project directory.
Public method to delete the session file.
Public method to get a list of all actions.
Public method to retrieve a debugger property.
Public method to get all files starting with a common prefix.
Public method to return the main script filename.
Public method to return the source script files.
Private method to handle the application diagram context menu action.
Private method to clear the recent projects menu.
Private slot used to show the code coverage information for the project files.
Private slot used to calculate some code metrics for the project files.
Private slot used to show the Cyclops report for the project.
Private method to open a project from the list of rencently opened projects.
Private slot used to show the profiling information for the project.
Private slot used to check the project with pylint.
Private slot used to remove the Cyclops report for the project.
Private slot used to handle the search new files action.
Private method to set up the recent projects menu.
Private slot called before the show menu is shown.
Private slot called before the vcs menu is shown.
Private slot used to check the project files for bad syntax.
Private slot used to check the project files for bad indentations.
Public method to check the project for a file.
Private method to initialize the project data part.
Public slot to initialize the project related actions.
Private method to initialize the debug properties.
Private method to initialize the filetype associations with default values.
Public slot to initialize the project menu.
Public slot to initialize the project toolbar.
Private method used to instantiate a vcs system.
Public method to return the status of the debug properties.
Public method to return the dirty state.
Public method to return the opened state.
Public method used to check, if the passed in filename belongs to the project forms.
Public method used to check, if the passed in filename belongs to the project interfaces.
Public method used to check, if the passed in filename belongs to the project sources.
Public slot to move a directory.
Public slot to built a new project. This method displays the new project dialog and initializes the project object with the data entered.
Public slot to open a project.
Public slot to be called, if something was added to the OTHERS project data area.
Private method to read in the project debugger properties file (.e3d)
Public method to read in a project (.e3p, .e3pz) file.
Private method to read in the project session file (.e3s)
Private method to read in the project tasks file (.e3t)
Public method to read the debugger properties from an XML file.
Public method to read the project data from an XML file.
Public method to read the session data from an XML file. The data read is:
Public method to read the project tasks data from an XML file.
Public slot to remove a directory from the project. The directory is not deleted from the project directory.
Public slot to remove a file from the project. The file is not deleted from the project directory.
Public slot to remove a translation from the project. The translation file is not deleted from the project directory.
Public slot to rename a file of the project.
Public method to rename the main script.
Public method to save all scripts belonging to the project.
Public slot to save the current project.
Public slot to save the current project to a different file.
Private method to search for new files in the project directory. If new files were found it shows a dialog listing these files and gives the user the oportunity to select the ones he wants to include. If 'Automatic Inclusion' is enabled, the new files are automatically added to the project.
Public method to set the debugging information.
Private method to set the dirty state. It emits the signal dirty(int).
Private slot to display the debugger properties dialog.
Public slot to display the filetype association dialog.
Public slot to display the properties dialog.
Private method to write the project debugger properties file (.e3d)
Public method to save the project infos to a project file.
Public method to write the session data to an XML file (.e3s). The data saved is:
Public method to write the tasks data to an XML file (.e3t).
Public method to write the project data to an XML file.