1 /* This file is part of the KDE project
2    Copyright (C) 2005 Jarosław Staniek <staniek@kde.org>
3 
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public
6    License as published by the Free Software Foundation; either
7    version 2 of the License, or (at your option) any later version.
8 
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13 
14    You should have received a copy of the GNU Library General Public License
15    along with this program; see the file COPYING.  If not, write to
16    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 #ifndef KEXIPRJTYPESELECTOR_H
21 #define KEXIPRJTYPESELECTOR_H
22 
23 #include "kexiextwidgets_export.h"
24 #include "ui_kexiprjtypeselector.h"
25 
26 #include <QWidget>
27 
28 //! @short A simple widget with radio buttons with "show file/server-based projects" options
29 class KEXIEXTWIDGETS_EXPORT KexiPrjTypeSelector
30             : public QWidget, public Ui_KexiPrjTypeSelector
31 {
32     Q_OBJECT
33 
34 public:
35     explicit KexiPrjTypeSelector(QWidget* parent = 0);
36     ~KexiPrjTypeSelector();
37 
38 public Q_SLOTS:
39     void slotSelectionChanged(QAbstractButton *btn);
40 };
41 
42 #endif // KEXIPRJTYPESELECTOR_H
43