00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef GCU_DIALOG_H
00026 #define GCU_DIALOG_H
00027 #include <glade/glade.h>
00028 #include <gtk/gtk.h>
00029 #include <string>
00030
00031 using namespace std;
00032
00033 namespace gcu {
00034
00050 enum CheckType
00051 {
00052 NoCheck,
00053 Min,
00054 Max,
00055 MinMax,
00056 MinEq,
00057 MaxEq,
00058 MinEqMax,
00059 MinMaxEq,
00060 MinEqMaxEq
00061 };
00062
00063 class Application;
00064
00068 class Dialog
00069 {
00070 public:
00087 Dialog (Application* App, const char* filename, const char* windowname, void (*extra_destroy)(gpointer) = NULL, gpointer data = NULL);
00088 virtual ~Dialog ();
00089
00096 virtual void Destroy ();
00097
00106 virtual bool Apply ();
00107
00112 void Help ();
00113
00117 GtkWindow* GetWindow () {return dialog;}
00118
00119 protected:
00132 bool GetNumber (GtkEntry *Entry, double *x, CheckType c = NoCheck, double min = 0, double max = 0);
00133
00134 void (*m_extra_destroy) (gpointer);
00135 gpointer m_data;
00136 GladeXML* xml;
00137 char m_buf[64];
00138 string m_windowname;
00139 GtkWindow *dialog;
00140 Application *m_App;
00141 };
00142
00143 }
00144
00145 #endif // GCU_DIALOG_H