kpilot
dbFlagsEditor.h
Go to the documentation of this file.00001 #ifndef _KPILOT_DBFLAGSEDITOR_H 00002 #define _KPILOT_DBFLAGSEDITOR_H 00003 /* dbFlagsEditor.h KPilot 00004 ** 00005 ** Copyright (C) 2003 Reinhold Kainhofer <reinhold@kainhofer.com> 00006 ** 00007 */ 00008 00009 /* 00010 ** This program is free software; you can redistribute it and/or modify 00011 ** it under the terms of the GNU General Public License as published by 00012 ** the Free Software Foundation; either version 2 of the License, or 00013 ** (at your option) any later version. 00014 ** 00015 ** This program is distributed in the hope that it will be useful, 00016 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 ** GNU General Public License for more details. 00019 ** 00020 ** You should have received a copy of the GNU General Public License 00021 ** along with this program in a file called COPYING; if not, write to 00022 ** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 00023 ** MA 02110-1301, USA. 00024 */ 00025 00026 /* 00027 ** Bug reports and questions can be sent to kde-pim@kde.org 00028 */ 00029 00030 #include "options.h" 00031 #include <kdialogbase.h> 00032 00033 class DBFlagsEditorWidget; 00034 struct DBInfo; 00038 class DBFlagsEditor : public KDialogBase 00039 { 00040 Q_OBJECT 00041 public: 00042 DBFlagsEditor(DBInfo*dbinfo=0L, QWidget *parent = 0); 00043 ~DBFlagsEditor(); 00044 00045 protected: 00046 void fillWidgets(); 00047 DBInfo*dbi; 00048 DBFlagsEditorWidget*widget; 00049 protected slots: 00050 virtual void slotOk(); 00051 virtual void slotCancel(); 00052 00053 00054 }; 00055 00056 #endif