summaryrefslogtreecommitdiffstats
path: root/src/gui/pieditor.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:49:02 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-24 01:49:02 +0000
commit5de3dd4762ca33a0f92e79ffa4fe2ff67069d531 (patch)
treebad482b7afa4cdf47422d60a5dd2c61c7e333b09 /src/gui/pieditor.h
downloadktechlab-5de3dd4762ca33a0f92e79ffa4fe2ff67069d531.tar.gz
ktechlab-5de3dd4762ca33a0f92e79ffa4fe2ff67069d531.zip
Added KDE3 version of ktechlab
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1095338 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/pieditor.h')
-rw-r--r--src/gui/pieditor.h188
1 files changed, 188 insertions, 0 deletions
diff --git a/src/gui/pieditor.h b/src/gui/pieditor.h
new file mode 100644
index 0000000..8423c7d
--- /dev/null
+++ b/src/gui/pieditor.h
@@ -0,0 +1,188 @@
+/***************************************************************************
+ * Copyright (C) 2003-2004 by David Saxton *
+ * david@bluehaze.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. *
+ ***************************************************************************/
+
+#ifndef PIEDITOR_H
+#define PIEDITOR_H
+
+#include <qwidget.h>
+#include <qstring.h>
+#include <qvariant.h>
+
+class DoubleSpinBox;
+class ColorCombo;
+class KComboBox;
+class KIntSpinBox;
+class KLineEdit;
+class KURLRequester;
+class Variant;
+
+
+/**
+@author Daniel Clarke
+*/
+class PIEditor : public QWidget
+{
+ Q_OBJECT
+ public:
+ PIEditor(QString id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PIEditor();
+
+ public slots:
+ virtual void valueChanged( QVariant variant );
+
+ signals:
+ void editorDataChanged(const QString &id, QVariant data);
+
+ protected:
+ QString m_id;
+ Variant *m_data;
+};
+
+
+/**
+@author David Saxton
+ */
+class PIBool : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIBool( QString id, Variant *data, QWidget *parent = 0, const char *name = 0 );
+ ~PIBool();
+
+ void popup();
+
+ protected slots:
+ void selectChanged( int index );
+ virtual void valueChanged( QVariant variant );
+
+ protected:
+ KComboBox *m_comboBox;
+};
+
+/**
+@author Daniel Clarke
+ */
+class PIColor : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIColor(QString id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PIColor();
+ void popup();
+
+ protected slots:
+ void colorChanged(const QColor &col);
+ virtual void valueChanged( QVariant variant );
+
+ protected:
+ ColorCombo *m_combo;
+};
+
+
+/**
+Allows the editing of double precision numerical values, using the DoubleNum widget
+@author Daniel Clarke
+ */
+class PIDouble : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIDouble(QString id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PIDouble();
+
+ protected slots:
+ void spinValueChanged(double value);
+ virtual void valueChanged( QVariant variant );
+
+ protected:
+ DoubleSpinBox *spin;
+};
+
+
+/**
+@author Daniel Clarke
+ */
+class PIFilename : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIFilename(QString id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PIFilename();
+
+ protected slots:
+ void slotURLChanged(const QString &url);
+ virtual void valueChanged( QVariant variant );
+ // see comments in implementation.
+ //void slotOpenFileDialog(KURLRequester *kurlreq);
+
+ protected:
+ KURLRequester *m_urlreq;
+ KComboBox *m_combo;
+};
+
+/**
+@author David Saxton
+ */
+class PIInt : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIInt( const QString &id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PIInt();
+
+ protected slots:
+ void spinValueChanged( int value );
+ virtual void valueChanged( QVariant variant );
+
+ protected:
+ KIntSpinBox *spin;
+};
+
+
+/**
+@author Daniel Clarke
+ */
+class PILineEdit : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PILineEdit(QString id, Variant *data, QWidget *parent = 0, const char *name = 0);
+ ~PILineEdit();
+
+ protected slots:
+ void slotEditTextChanged();
+ virtual void valueChanged( QVariant variant );
+
+ protected:
+ KLineEdit *m_edit;
+};
+
+
+/**
+@author Daniel Clarke
+ */
+class PIStringCombo : public PIEditor
+{
+ Q_OBJECT
+ public:
+ PIStringCombo(QString id, Variant *data, QWidget *parent, const char *name = 0);
+ ~PIStringCombo();
+ void popup();
+
+ public slots:
+ virtual void valueChanged( QVariant variant );
+ void slotComboChanged();
+
+ protected:
+ KComboBox *m_combo;
+
+};
+
+#endif