french -> French
[kdepim.git] / knode / kngrouppropdlg.h
blobc557703028b6c060ee659a302789ac93e1695c7d
1 /*
2 KNode, the KDE newsreader
3 Copyright (c) 1999-2005 the KNode authors.
4 See file AUTHORS for details
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10 You should have received a copy of the GNU General Public License
11 along with this program; if not, write to the Free Software Foundation,
12 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
15 #ifndef KNGROUPPROPDLG_H
16 #define KNGROUPPROPDLG_H
18 #include <kpagedialog.h>
20 class QCheckBox;
21 class QComboBox;
23 class KLineEdit;
25 class KNGroup;
27 namespace KNode {
28 class IdentityWidget;
29 class GroupCleanupWidget;
33 /** News group properties dialog. */
34 class KNGroupPropDlg : public KPageDialog {
35 Q_OBJECT
36 public:
37 explicit KNGroupPropDlg( KNGroup *group, QWidget *parent=0 );
38 ~KNGroupPropDlg();
40 bool nickHasChanged()const { return n_ickChanged; }
42 protected:
43 KNGroup *g_rp;
44 bool n_ickChanged;
45 KNode::IdentityWidget* i_dWidget;
46 KNode::GroupCleanupWidget *mCleanupWidget;
47 KLineEdit *n_ick;
48 QCheckBox *u_seCharset;
49 QComboBox *c_harset;
51 protected slots:
52 void slotOk();
56 #endif