00001 /*************************************************************************** 00002 aboutdialog.h - description 00003 ------------------- 00004 begin : Sat Oct 26 2002 00005 copyright : (C) 2002 by Michael Otto 00006 email : Michael.Otto@saskathex.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef ABOUTDIALOG_H 00019 #define ABOUTDIALOG_H 00020 00021 #include <gtkmm.h> 00022 00023 #include <stdio.h> 00024 #include <iostream> 00025 00026 using namespace std; 00027 00033 class AboutDialog : public Gtk::Window { 00034 private: 00035 void quit(); 00036 void showCredits(); 00037 00038 public: 00039 AboutDialog(); 00040 ~AboutDialog(); 00041 00042 protected: 00043 virtual bool on_delete_event(GdkEventAny *event); 00044 }; 00045 00046 #endif