class NewProjectDlg : Dialog {
Workspace _currentWorkspace;
IDEFrame _ide;
bool _newWorkspace;
StringListWidget _projectTypeList;
StringListWidget _projectTemplateList;
EditBox _templateDescription;
EditBox _directoryLayout;
DirEditLine _edLocation;
EditLine _edWorkspaceName;
EditLine _edProjectName;
CheckBox _cbCreateSubdir;
CheckBox _cbCreateWorkspace;
CheckBox _cbCreateWorkspaceSubdir;
TextWidget _statusText;
string _projectName;
string _workspaceName;
string _location;
int _currentTemplateIndex;
ProjectTemplate _currentTemplate;
ProjectTemplate[] _templates;
ProjectCreationResult _result;
}