Class: Ruber::NewProjectDialog
- Defined in:
- lib/ruber/main_window/main_window_actions.rb
Overview
Dialog where the user enters the parameters to create a new project
Defined Under Namespace
Classes: NewProjectWidget
Instance Method Summary collapse
-
#initialize(parent = ) ⇒ NewProjectDialog
constructor
A new instance of NewProjectDialog.
-
#project_file ⇒ String
The path of the project file.
-
#project_name ⇒ String
The name chosen by the user for the project.
Constructor Details
#initialize(parent = ) ⇒ NewProjectDialog
870 871 872 873 874 875 876 877 |
# File 'lib/ruber/main_window/main_window_actions.rb', line 870 def initialize parent = Ruber[:main_window] super self.caption = 'New Project' self. = NewProjectWidget.new self enableButtonOk false self..set_focus connect , SIGNAL('complete_status_changed(bool)'), self, SLOT('enableButtonOk(bool)') end |