Plugin_Project_TurboGears.ProjectTurboGears.Project

Module implementing the TurboGears project support.

Classes

Project Class implementing the TurboGears project support.

Functions

None


Project

Class implementing the TurboGears project support.

Derived from

QObject

Methods

Project Constructor
initActions Public method to define the refactoring actions.
initMenu Public slot to initialize the refactoring menu.
newForm Public method to create a new form.
projectClosedHooks Public method to remove our hook methods.
projectOpenedHooks Public method to add our hook methods.

Project (Constructor)

Project(plugin, parent = None)

Constructor

plugin
reference to the plugin object
parent
parent (QObject)

Project.initActions

initActions()

Public method to define the refactoring actions.

Project.initMenu

initMenu()

Public slot to initialize the refactoring menu.

Returns:
the menu generated (QMenu)

Project.newForm

newForm(path)

Public method to create a new form.

path
full directory path for the new form file (string)

Project.projectClosedHooks

projectClosedHooks()

Public method to remove our hook methods.

Project.projectOpenedHooks

projectOpenedHooks()

Public method to add our hook methods.

Up