61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
|
/**
|
||
|
* Copyright (c) 2000 Matthias Elter <elter@kde.org>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef __desktop_h__
|
||
|
#define __desktop_h__
|
||
|
|
||
|
#include <kcmodule.h>
|
||
|
|
||
|
class QLabel;
|
||
|
class QCheckBox;
|
||
|
class KLineEdit;
|
||
|
class KIntNumInput;
|
||
|
class QStringList;
|
||
|
|
||
|
#ifdef Q_WS_X11
|
||
|
|
||
|
// if you change this, update also the number of keyboard shortcuts in kwin/kwinbindings.cpp
|
||
|
static const int maxDesktops = 20;
|
||
|
|
||
|
class KDesktopConfig : public KCModule
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
KDesktopConfig(QWidget *parent, const QVariantList &args);
|
||
|
|
||
|
void load();
|
||
|
void save();
|
||
|
void defaults();
|
||
|
|
||
|
protected Q_SLOTS:
|
||
|
void slotValueChanged(int);
|
||
|
|
||
|
private:
|
||
|
KIntNumInput *_numInput;
|
||
|
QLabel *_nameLabel[maxDesktops];
|
||
|
KLineEdit *_nameInput[maxDesktops];
|
||
|
#if 0
|
||
|
QCheckBox *_wheelOption;
|
||
|
bool _wheelOptionImmutable;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
#endif // Q_WS_X11
|
||
|
#endif
|