configdialog.h
00001 /* 00002 This file is part of KOrganizer. 00003 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 */ 00019 #ifndef CONFIGDIALOG_H 00020 #define CONFIGDIALOG_H 00021 // $Id: configdialog.h,v 1.4 2003/03/07 22:06:23 waba Exp $ 00022 00023 #include <qlistview.h> 00024 00025 #include <kdialogbase.h> 00026 00027 class QComboBox; 00028 00029 class ConfigDialog : public KDialogBase 00030 { 00031 Q_OBJECT 00032 public: 00033 ConfigDialog(QWidget *parent=0); 00034 virtual ~ConfigDialog(); 00035 00036 protected: 00037 void load(); 00038 void save(); 00039 00040 protected slots: 00041 void slotOk(); 00042 00043 private: 00044 QComboBox *mHolidayCombo; 00045 QMap<QString,QString> mCountryMap; 00046 }; 00047 00048 #endif