1 /********************************************************************
2 This file contains the B2 configuration widget
5 Karol Szwed <gallium@kde.org>
8 Luciano Montanaro <mikelima@cirulla.net>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 *********************************************************************/
24 #ifndef _KDE_B2CONFIG_H
25 #define _KDE_B2CONFIG_H
33 class B2Config
: public QObject
38 B2Config(KConfig
*conf
, QWidget
*parent
);
41 // These public signals/slots work similar to KCM modules
46 void load(const KConfigGroup
&conf
);
47 void save(KConfigGroup
&conf
);
51 void slotSelectionChanged(); // Internal use
55 QCheckBox
*cbColorBorder
;
56 QCheckBox
*showGrabHandleCb
;
58 QComboBox
*menuDblClickOp
;