00001
00002
00003
00004
00005
00006
00007 #ifndef ORDERDLG_H
00008 #define ORDERDLG_H
00009
00010 #ifdef __GNUG__
00011 #pragma interface
00012 #endif
00013
00016
00017
00021
00022 class LayerOrder: public wxDialog
00023 {
00024 public:
00025
00026
00027 LayerOrder(GDSMainWindow* parent,char* title,long style =0 ,char* name = "main_layer_dlg");
00028
00029
00030 ~LayerOrder();
00031
00032
00033 wxListBox* Get_ListBox();
00034
00035
00036 wxButton* Get_ButtonUP();
00037
00038
00039 wxButton* Get_ButtonDOWN();
00040
00041
00042 wxMessageDialog* Get_Text();
00043
00044
00045 void SetupWindow();
00046
00047
00048 void StoreOrder();
00049
00050
00051 void CmOk();
00052
00053
00054 void CmCancel();
00055
00056
00057 void CmUp();
00058
00059
00060 void CmDown();
00061
00062
00063 void CmShow();
00064
00065
00066
00067 void CmListBox();
00068
00069
00070 void OnCloseWindow(wxCloseEvent& event);
00071
00072 protected:
00073
00074 void Update();
00075
00076
00077 GDSMainWindow* _parent;
00078
00079
00080 wxPanel* _panel1;
00081
00082
00083 wxButton* _buttonOK;
00084
00085
00086 wxButton* _buttonCANCEL;
00087
00088
00089 wxStaticBox* _groupbox;
00090
00091
00092 wxListBox* _listbox;
00093
00094
00095 wxStaticText* _text1;
00096
00097
00098 wxButton* _buttonUP;
00099
00100
00101 wxButton* _buttonDOWN;
00102
00103
00104 wxButton* _buttonSHOW;
00105
00106
00107 DECLARE_EVENT_TABLE()
00108
00109 };
00110
00111 #endif
orderdlg.h Source File -- Thu Nov 28 21:24:56 2002 -- 28 Nov 2002 -- 1.2.18 -- -- . --