* system/dialogs.py: Oooops. Forgot this file in the previous commits. Well,

here it is, currently only with the New Project dialog.
This commit is contained in:
2006-04-22 22:29:02 +00:00
parent 2da88a5128
commit e762aef882
5 changed files with 114 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ class Workflow:
"""
name = "Workflow"
description = "Workflow Description"
def __init__(self, app):
self.stages = []
@@ -100,7 +101,6 @@ class WorkflowView (gtk.VBox):
self.pack_start(exp, expand=False, fill=False)
def remove_workflow(self):
print self.get_children()
for c in self.get_children():
c.hide()
self.remove(c)
@@ -109,8 +109,6 @@ class WorkflowView (gtk.VBox):
self.workflow = workflow
self.remove_workflow()
self.setup_workflow(workflow)
print workflow
logger.log('notice', 'Created new workflow')
def run_function(self, function):
logger.log('debug', 'Starting function: %s' % function.name)