Main Page   Class Hierarchy   Compound List   File List   Compound Members  

identdlg.h

00001 
00002 
00003 /*
00004  * Definition off class for dialog to display the type of the selected structure.
00005 */
00006 
00007 #ifndef IDENTDLG_H
00008 #define IDENTDLG_H
00009 
00010 #ifdef __GNUG__
00011 #pragma interface
00012 #endif
00013 
00016 
00017 //:defenition
00022 
00023 
00024 class IdentDlg: public wxDialog
00025 {
00026         public:
00027 
00028         // Constructor.
00029                 IdentDlg(GDSMainWindow*,char*,long style = (wxTHICK_FRAME | wxCAPTION),char *name="identification dialog");
00030 
00031       // Destructor.
00032                 ~IdentDlg();
00033 
00034       // Hide window if HIDE-button is pressed.
00035       void                              hide();
00036 
00037       // Close window if EXIT-button is pressed.
00038       void                              OnCloseWindow(wxCloseEvent& event);
00039 
00040       // Update information about selection.
00041       void                              Update();
00042 
00043       // Make editing of selection possible.
00044       void                              Edit();
00045 
00046         protected:
00047 
00048         // Pointer to mainwindow.
00049                 GDSMainWindow*  _parent;
00050 
00051       // wxWindows class.
00052                 wxPanel*                        _panel;
00053 
00054       // wxWindows class.
00055                 wxButton*               _updateButton;
00056 
00057       // wxWindows class.
00058                 wxButton*               _hideButton;
00059 
00060       // wxWindows class.
00061                 wxButton*               _editButton;
00062 
00063       // wxWindows class.
00064                 wxListBox*              _lb;
00065 
00066       // Declare used events.
00067       DECLARE_EVENT_TABLE()
00068 
00069 };
00070 
00071 #endif
identdlg.h Source File -- Thu Nov 28 21:24:56 2002 -- 28 Nov 2002 -- 1.2.18 -- -- . -- Main Page