00001 /*************************************************************************** 00002 settingsdlg.h - settings dialog 00003 ------------------- 00004 begin : Mon, 10 Mär 2003 00005 copyright : (C) 2003 by Heiko Köhler 00006 email : heicom@users.sourceforge.net 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 __SETTINGSDLG_H__ 00019 #define __SETTINGSDLG_H__ 00020 00021 #include "ui/settings.h" 00022 00024 class SettingsDlg : public SettingsDialog 00025 { 00026 Q_OBJECT 00027 public: 00028 SettingsDlg(QWidget *parent=0, const char* name=0); 00030 void show(); 00031 protected slots: 00033 void ok(); 00035 void applySettings(); 00036 signals: 00038 void updateConfig(); 00039 }; 00040 00041 #endif