mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
188 lines
3.9 KiB
C++
188 lines
3.9 KiB
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2011 Dominik Haumann <dhaumann kde org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef VARIABLE_EDITOR_H
|
|
#define VARIABLE_EDITOR_H
|
|
|
|
#include <QWidget>
|
|
#include <QCheckBox>
|
|
#include <QComboBox>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QSpinBox>
|
|
#include <QFontComboBox>
|
|
|
|
class KateHelpButton;
|
|
|
|
class VariableBoolItem;
|
|
class VariableColorItem;
|
|
class VariableFontItem;
|
|
class VariableItem;
|
|
class VariableStringListItem;
|
|
class VariableIntItem;
|
|
class VariableStringItem;
|
|
class VariableSpellCheckItem;
|
|
class VariableRemoveSpacesItem;
|
|
|
|
class KColorCombo;
|
|
class KSpellDictionaryComboBox;
|
|
|
|
class VariableEditor : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
VariableEditor(VariableItem* item, QWidget* parent = 0);
|
|
virtual ~VariableEditor();
|
|
|
|
VariableItem* item() const;
|
|
|
|
Q_SIGNALS:
|
|
void valueChanged();
|
|
|
|
protected Q_SLOTS:
|
|
void itemEnabled(bool enabled);
|
|
void activateItem();
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent* event);
|
|
virtual void enterEvent(QEvent* event);
|
|
virtual void leaveEvent(QEvent* event);
|
|
|
|
|
|
private:
|
|
VariableItem* m_item;
|
|
|
|
QCheckBox* m_checkBox;
|
|
QLabel* m_variable;
|
|
QLabel* m_helpText;
|
|
KateHelpButton* m_btnHelp;
|
|
};
|
|
|
|
class VariableIntEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableIntEditor(VariableIntItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(int newValue);
|
|
|
|
private:
|
|
QSpinBox* m_spinBox;
|
|
};
|
|
|
|
class VariableBoolEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableBoolEditor(VariableBoolItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(int enabled);
|
|
|
|
private:
|
|
QComboBox* m_comboBox;
|
|
};
|
|
|
|
class VariableStringListEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableStringListEditor(VariableStringListItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(const QString& newValue);
|
|
|
|
private:
|
|
QComboBox* m_comboBox;
|
|
};
|
|
|
|
class VariableColorEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableColorEditor(VariableColorItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(const QColor& newValue);
|
|
|
|
private:
|
|
KColorCombo* m_comboBox;
|
|
};
|
|
|
|
class VariableFontEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableFontEditor(VariableFontItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(const QFont& newValue);
|
|
|
|
private:
|
|
QFontComboBox* m_comboBox;
|
|
};
|
|
|
|
|
|
class VariableStringEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableStringEditor(VariableStringItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(const QString& newValue);
|
|
|
|
private:
|
|
QLineEdit* m_lineEdit;
|
|
};
|
|
|
|
|
|
class VariableSpellCheckEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableSpellCheckEditor(VariableSpellCheckItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(const QString& newValue);
|
|
|
|
private:
|
|
KSpellDictionaryComboBox *m_dictionaryCombo;
|
|
};
|
|
|
|
|
|
class VariableRemoveSpacesEditor : public VariableEditor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VariableRemoveSpacesEditor(VariableRemoveSpacesItem* item, QWidget* parent);
|
|
|
|
protected Q_SLOTS:
|
|
void setItemValue(int enabled);
|
|
|
|
private:
|
|
QComboBox* m_comboBox;
|
|
};
|
|
|
|
#endif
|
|
|
|
// kate: indent-width 2; replace-tabs on;
|