00001 /*************************************************************************** 00002 qgsabout.h - description 00003 ------------------- 00004 begin : Sat Aug 10 2002 00005 copyright : (C) 2002 by Gary E.Sherman 00006 email : sherman at mrcc.com 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 /* $Id:$ */ 00018 #ifndef QGSABOUT_H 00019 #define QGSABOUT_H 00020 00021 #include "ui_qgsabout.h" 00022 00023 class QgsAbout : public QDialog, private Ui::QgsAbout 00024 { 00025 Q_OBJECT 00026 public: 00027 QgsAbout(); 00028 ~QgsAbout(); 00029 void setVersion( QString v ); 00030 void setWhatsNew( QString txt ); 00031 static QString fileSystemSafe( QString string ); 00032 00033 private: 00034 void setPluginInfo(); 00035 void init(); 00036 void openUrl( QString url ); 00037 00038 private slots: 00039 void on_buttonCancel_clicked(); 00040 void on_listBox1_currentItemChanged( QListWidgetItem *theItem ); 00041 void on_btnQgisUser_clicked(); 00042 void on_btnQgisHome_clicked(); 00043 }; 00044 00045 #endif
1.5.1