00001 /* 00002 * kcmsmserver.h 00003 * Copyright (c) 2000 Oswald Buddenhagen <ob6@inf.tu-dresden.de> 00004 * 00005 * based on kcmtaskbar.h 00006 * Copyright (c) 2000 Kurt Granroth <granroth@kde.org> 00007 * 00008 * This program is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 */ 00021 #ifndef __kcmsmserver_h__ 00022 #define __kcmsmserver_h__ 00023 00024 #include <kcmodule.h> 00025 00026 class SMServerConfigImpl; 00027 00028 00029 class SMServerConfig : public KCModule 00030 { 00031 Q_OBJECT 00032 00033 public: 00034 SMServerConfig( TQWidget *parent=0, const char* name=0, const TQStringList &list=TQStringList() ); 00035 00036 void load(); 00037 void load(bool useDefaults); 00038 void save(); 00039 void defaults(); 00040 00041 private: 00042 SMServerConfigImpl* dialog; 00043 00044 }; 00045 00046 #endif
1.6.1