Bases: PyQt4.QtGui.QComboBox
Bases: PyQt4.QtGui.QLineEdit
Bases: PyQt4.QtGui.QWizardPage
Abstract class for the select file page of a backup and a restore file.
Bases: camelot.view.wizard.pages.backup_page.Page
Bases: PyQt4.QtGui.QWizardPage
FormPage is a generic wizard page that displays a form for an object in a wizard page, subclass this class to use it. The class attribute ‘Data’ should be the class of the object to be used to store the form information.
To access the data stored by the wizard form into a data object, use its get_data method.
The ‘Next’ button will only be activated when the form is complete.
Created on Jan 7, 2010
@author: tw55413
Bases: PyQt4.QtGui.QWizardPage
Generic progress page for a wizard.
Subclass and reimplement the run method. And within this run method, regulary emit the update_progress_signal and the update_maximum_signal.
the update_maximum_signal should have as its single argument an integer value indicating the maximum of the progress bar.
the update_progress_signal should two arguments, the first is an integer indicating the current position of the progress bar, and the second is a string telling the user what is going on.
If required, set the title and sub_title class attribute to change the text displayed to the user.
This method contains the actual action, that will be run in the model thread.
Reimplement this method, while regulary emiting update_progress_signal and update_maximum_signal to keep the progress bar moving.
Bases: PyQt4.QtGui.QWizardPage
SelectFilePage is the file selection page of an import wizard
Created on Jan 18, 2010
@author: tw55413
Bases: camelot.view.wizard.pages.progress_page.ProgressPage
A progress page that updates each entity in a collection, then flushes the entity, and informs all views that the entity has been updated. Subclass this page and implement update_entity to make this page do something.