snippetsettings.h
Go to the documentation of this file.00001 /* 00002 * File : snippetsettings.h 00003 * 00004 * Author: Robert Gruber <rgruber@users.sourceforge.net> 00005 * 00006 * Copyright: See COPYING file that comes with this distribution 00007 */ 00008 00009 #ifndef SNIPPETSETTINGS_H 00010 #define SNIPPETSETTINGS_H 00011 00012 #include "snippetsettingsbase.h" 00013 00014 class SnippetWidget; 00015 class SnippetConfig; 00016 00024 class SnippetSettings : public SnippetSettingsBase 00025 { 00026 Q_OBJECT 00027 public: 00028 SnippetSettings(QWidget *parent = 0, const char *name = 0); 00029 SnippetSettings(SnippetWidget * w, QWidget *parent = 0, const char *name = 0); 00030 00031 ~SnippetSettings(); 00032 00033 public slots: 00034 void slotOKClicked(); 00035 00036 private: 00037 SnippetConfig * _cfg; 00038 }; 00039 00040 #endif