Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_selectconn.h
blob3c917cf3ec6cbaf5cc46de7fde924b923a088b6a
1 /*
2 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU 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.
9 * This library 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.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 **/
20 #ifndef _KU_SELECTCONN_H_
21 #define _KU_SELECTCONN_H_
23 #include <kdialog.h>
24 #include <kcombobox.h>
26 class KU_SelectConn : public KDialog {
27 Q_OBJECT
28 public:
29 KU_SelectConn( const QString &selected, QWidget* parent );
30 QString connSelected();
31 protected slots:
32 void slotUser1();
33 void slotUser2();
34 void slotUser3();
35 void slotNewApplySettings();
36 void slotApplySettings();
37 void slotApply();
39 protected:
40 KComboBox *mCombo;
41 QString conn, newconn, mSelected;
44 #endif // _KU_SELECTCONN_H_