diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 8b2aa1b5301ab60368a03e36df4ff5216726e87d (patch) | |
tree | 36163d4ee667c23b5cf232df2f3004cd0a76202a /kscreensaver/kxsconfig/kxscontrol.h | |
download | tdeartwork-8b2aa1b5301ab60368a03e36df4ff5216726e87d.tar.gz tdeartwork-8b2aa1b5301ab60368a03e36df4ff5216726e87d.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeartwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kscreensaver/kxsconfig/kxscontrol.h')
-rw-r--r-- | kscreensaver/kxsconfig/kxscontrol.h | 160 |
1 files changed, 160 insertions, 0 deletions
diff --git a/kscreensaver/kxsconfig/kxscontrol.h b/kscreensaver/kxsconfig/kxscontrol.h new file mode 100644 index 00000000..36f16e43 --- /dev/null +++ b/kscreensaver/kxsconfig/kxscontrol.h @@ -0,0 +1,160 @@ +//----------------------------------------------------------------------------- +// +// KDE xscreensaver configuration dialog +// +// Copyright (c) Martin R. Jones <mjones@kde.org> 1999 +// +// 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; +// version 2 of the License. +// +// 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; see the file COPYING. If not, write to +// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +// Boston, MA 02110-1301, USA. + +#ifndef __KXSCONTROL_H__ +#define __KXSCONTROL_H__ + +#include <qwidget.h> +#include <qcheckbox.h> + +#include "kxsitem.h" + +class QLabel; +class QSlider; +class QSpinBox; +class QComboBox; +class QLineEdit; + +//=========================================================================== +class KXSRangeControl : public QWidget, public KXSRangeItem +{ + Q_OBJECT +public: + KXSRangeControl(QWidget *parent, const QString &name, KConfig &config); + KXSRangeControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + +signals: + void changed(); + +protected slots: + void slotValueChanged(int value); + +protected: + QSlider *mSlider; + QSpinBox *mSpinBox; +}; + +//=========================================================================== +class KXSDoubleRangeControl : public QWidget, public KXSDoubleRangeItem +{ + Q_OBJECT +public: + KXSDoubleRangeControl(QWidget *parent, const QString &name, KConfig &config); + KXSDoubleRangeControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + +signals: + void changed(); + +protected slots: + void slotValueChanged(int value); + +protected: + QSlider *mSlider; + double mStep; +}; + +//=========================================================================== +class KXSCheckBoxControl : public QCheckBox, public KXSBoolItem +{ + Q_OBJECT +public: + KXSCheckBoxControl(QWidget *parent, const QString &name, KConfig &config); + KXSCheckBoxControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + +signals: + void changed(); + +protected slots: + void slotToggled(bool); +}; + +//=========================================================================== +class KXSDropListControl : public QWidget, public KXSSelectItem +{ + Q_OBJECT +public: + KXSDropListControl(QWidget *parent, const QString &name, KConfig &config); + KXSDropListControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + + virtual void addOption( const QXmlAttributes &attr ); + +signals: + void changed(); + +protected slots: + void slotActivated(int); + +protected: + QComboBox *mCombo; +}; + +//=========================================================================== +class KXSLineEditControl : public QWidget, public KXSStringItem +{ + Q_OBJECT +public: + KXSLineEditControl(QWidget *parent, const QString &name, KConfig &config); + KXSLineEditControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + +signals: + void changed(); + +protected slots: + void textChanged(const QString &); + +protected: + QLineEdit *mEdit; +}; + +//=========================================================================== +class KXSFileControl : public QWidget, public KXSStringItem +{ + Q_OBJECT +public: + KXSFileControl(QWidget *parent, const QString &name, KConfig &config); + KXSFileControl(QWidget *parent, const QString &name, const QXmlAttributes &attr ); + + virtual void read(KConfig &config); + +signals: + void changed(); + +protected slots: + void textChanged(const QString &); + void selectFile(); + +protected: + QLineEdit *mEdit; + +}; + +#endif + |