add more spacing
[personal-kdebase.git] / runtime / kcontrol / locale / countryselectordialog.h
blob0c509206a70ed6ddf1cd8bc5d9841d9f9b5278e1
1 /***************************************************************************
2 * Copyright (C) 2007 by Albert Astals Cid <aacid@kde.org> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 ***************************************************************************/
10 #ifndef COUNTRYSELECTORDIALOG_H
11 #define COUNTRYSELECTORDIALOG_H
13 #include <KDialog>
15 class CSDListView;
17 class KControlLocale;
19 class QModelIndex;
21 class CountrySelectorDialog : public KDialog
23 Q_OBJECT
24 public:
25 CountrySelectorDialog(QWidget *parent);
27 bool editCountry(KControlLocale *locale);
29 private slots:
30 void regionChanged(const QModelIndex &current);
31 void regionActivated();
33 private:
34 CSDListView *m_countriesView;
37 #endif