00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef unitnamingH
00011 #define unitnamingH
00012
00013 #include "../paradialog.h"
00014
00015 class PG_LineEdit;
00016 class ContainerBase;
00017
00018 class UnitNaming: public ASC_PG_Dialog {
00019 PG_LineEdit* publicName;
00020 PG_LineEdit* privateName;
00021 ContainerBase* unit;
00022
00023 bool ok();
00024 bool cancel();
00025 static const int border = 20;
00026 bool line1completed();
00027 public:
00028 UnitNaming ( ContainerBase* unit );
00029 int RunModal();
00030 };
00031
00032
00033
00034
00035 #endif