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 | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /quanta/components/csseditor/doubleeditors.cpp | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.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/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/components/csseditor/doubleeditors.cpp')
-rw-r--r-- | quanta/components/csseditor/doubleeditors.cpp | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/quanta/components/csseditor/doubleeditors.cpp b/quanta/components/csseditor/doubleeditors.cpp new file mode 100644 index 00000000..6fab0547 --- /dev/null +++ b/quanta/components/csseditor/doubleeditors.cpp @@ -0,0 +1,120 @@ +/*************************************************************************** + doubleeditors.cpp - description + ------------------- + begin : dom ago 3 2003 + copyright : (C) 2003 by gulmini luciano + email : gulmini.luciano@student.unife.it + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + #include "doubleeditors.h" + #include "specialsb.h" + #include <qcombobox.h> + #include "csseditor_globals.h" + #include "propertysetter.h" + #include <qregexp.h> + + + +doubleEditorBase::doubleEditorBase(QWidget *parent, const char *name) : miniEditor(parent,name){ +} + +void doubleEditorBase::sxValueSlot(const QString& v){ + m_sxValue=v; + emit valueChanged( m_sxValue +" " + m_dxValue); +} + +void doubleEditorBase::dxValueSlot(const QString& v){ + m_dxValue=v; + emit valueChanged( m_sxValue +" " + m_dxValue); +} + + doubleLengthEditor::doubleLengthEditor(QWidget *parent, const char *name) : doubleEditorBase(parent,name){ + + m_ssbSx = new specialSB(this); + m_ssbSx->insertItem("cm"); + m_ssbSx->insertItem("em"); + m_ssbSx->insertItem("ex"); + m_ssbSx->insertItem("in"); + m_ssbSx->insertItem("mm"); + m_ssbSx->insertItem("pc"); + m_ssbSx->insertItem("pt"); + m_ssbSx->insertItem("px"); + + m_ssbDx = new specialSB(this); + m_ssbDx->insertItem("cm"); + m_ssbDx->insertItem("em"); + m_ssbDx->insertItem("ex"); + m_ssbDx->insertItem("in"); + m_ssbDx->insertItem("mm"); + m_ssbDx->insertItem("pc"); + m_ssbDx->insertItem("pt"); + m_ssbDx->insertItem("px"); + + connect(m_ssbSx, SIGNAL(valueChanged(const QString&)), this, SLOT(sxValueSlot(const QString&))); + connect(m_ssbDx, SIGNAL(valueChanged(const QString&)), this, SLOT(dxValueSlot(const QString&))); +} + +doubleLengthEditor::~doubleLengthEditor(){ + delete m_ssbSx; + delete m_ssbDx; +} + +void doubleLengthEditor::connectToPropertySetter(propertySetter* p){ + connect(this, SIGNAL(valueChanged(const QString&)), p ,SIGNAL(valueChanged(const QString&))); +} + +void doubleLengthEditor::setInitialValue(const QString& sx, const QString& dx){ + m_ssbSx->setInitialValue(sx); + m_ssbDx->setInitialValue(dx); +} + +doubleComboBoxEditor::doubleComboBoxEditor(QWidget *parent, const char *name) : doubleEditorBase(parent,name){ + m_cbSx = new QComboBox(this); + m_cbDx = new QComboBox(this); + connect(m_cbSx, SIGNAL(activated ( const QString & )), this, SLOT(sxValueSlot(const QString&))); + connect(m_cbDx, SIGNAL(activated ( const QString & )), this, SLOT(dxValueSlot(const QString&))); +} + +doubleComboBoxEditor::~doubleComboBoxEditor(){ + delete m_cbSx; + delete m_cbDx; +} + +void doubleComboBoxEditor::connectToPropertySetter(propertySetter* p){ + connect(this, SIGNAL(valueChanged(const QString&)), p ,SIGNAL(valueChanged(const QString&))); +} + +doublePercentageEditor::doublePercentageEditor(QWidget *parent, const char *name) : doubleEditorBase(parent,name){ + m_sbSx = new mySpinBox(this); + m_sbDx = new mySpinBox(this); + m_sbSx->setSuffix("%"); + m_sbDx->setSuffix("%"); + connect(m_sbSx,SIGNAL(valueChanged(const QString&)),this,SLOT(sxValueSlot(const QString&))); + connect(m_sbDx,SIGNAL(valueChanged(const QString&)),this,SLOT(dxValueSlot(const QString&))); +} + +doublePercentageEditor::~doublePercentageEditor(){ + delete m_sbSx; + delete m_sbDx; +} + +void doublePercentageEditor::connectToPropertySetter(propertySetter* p){ + connect(this, SIGNAL(valueChanged(const QString&)), p ,SIGNAL(valueChanged(const QString&))); +} + +void doublePercentageEditor::setInitialValue(const QString& a_sx, const QString& a_dx){ + QString sx = a_sx; + QString dx = a_dx; + m_sbSx->setValue(sx.remove("%").toInt()); + m_sbDx->setValue(dx.remove("%").toInt()); +} + +#include "doubleeditors.moc" |