00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef GEKGHELP_H
00023 #define GEKGHELP_H
00024
00025 #include <gtk--/window.h>
00026 #include <gtk--/notebook.h>
00027 #include <gtk--/button.h>
00028 #include <gtk--/frame.h>
00029 #include <gtk--/label.h>
00030 #include <gtk--/pixmap.h>
00031 #include <gtk--/box.h>
00032 #include <gtk--/buttonbox.h>
00033 #include <gtk--/scrolledwindow.h>
00034 using namespace std;
00035
00046 class gEKGhelp : public Gtk::Window
00047 {
00048 public:
00050 gEKGhelp();
00052 Gtk::Button OKButton;
00053 private:
00054 Gtk::VBox vbox;
00055 Gtk::HButtonBox bbox;
00056 Gtk::Notebook notebook;
00057
00058
00059
00060
00061 Gtk::Frame frame1Left;
00062 Gtk::Frame frame1Right;
00063 Gtk::Frame frame1pLeft;
00064 Gtk::Frame frame1pRight;
00065 Gtk::Pixmap pix1Left;
00066 Gtk::Pixmap pix1Right;
00067 Gtk::VBox vbox1Left;
00068 Gtk::VBox vbox1Right;
00069 Gtk::HBox hbox1;
00070
00071
00072
00073
00074 Gtk::Frame frame2;
00075 Gtk::Label label2;
00076
00077
00078
00079
00080 Gtk::ScrolledWindow win3;
00081 Gtk::Frame frame3;
00082 Gtk::Label label3;
00083
00084
00085
00086
00087
00089 void buttonCallback() { hide(); }
00091 gint keyCallback( GdkEventKey * e );
00093 int delete_event_impl(GdkEventAny *event)
00094 { buttonCallback(); return true; }
00095
00096
00097
00098
00099
00101 void writestring( const char ** const s, string & d );
00102
00103 };
00104
00105 #endif