* 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

5
fluent
View File

@@ -2,7 +2,6 @@
import sys
sys.path.append('system')
sys.path.append('workflows')
import dialogs
import pygtk
@@ -19,8 +18,6 @@ import dataset
import logger
import plots
import navigator
#import go_workflow
#import pca_workflow
import scipy
PROGRAM_NAME = 'fluent'
@@ -37,7 +34,6 @@ class FluentApp:
gtk.glade.set_custom_handler(self.custom_object_factory)
self.widget_tree = gtk.glade.XML(GLADEFILENAME, 'appwindow')
self.workflow = workflow.EmptyWorkflow(self)
# self.workflow.add_project(self.project)
def set_project(self, project):
logger.log('notice', 'Creating a new project')
@@ -124,7 +120,6 @@ class FluentApp:
return self.widget_tree.get_widget(key)
def on_create_project(self, *rest):
logger.log('error', 'FIXME: Create project')
d = dialogs.CreateProjectDruid(self)
d.run()