From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpovmodeler/pmlightedit.h | 115 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 kpovmodeler/pmlightedit.h (limited to 'kpovmodeler/pmlightedit.h') diff --git a/kpovmodeler/pmlightedit.h b/kpovmodeler/pmlightedit.h new file mode 100644 index 00000000..0b9b5ffb --- /dev/null +++ b/kpovmodeler/pmlightedit.h @@ -0,0 +1,115 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2001 by Andreas Zehender + email : zehender@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. * +* * +**************************************************************************/ + + +#ifndef PMLIGHTEDIT_H +#define PMLIGHTEDIT_H + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include "pmnamedobjectedit.h" + +class PMLight; +class PMVectorEdit; +class PMColorEdit; +class QComboBox; +class PMFloatEdit; +class PMIntEdit; +class QLabel; +class QCheckBox; + +/** + * Dialog edit class for @ref PMLight + */ +class PMLightEdit : public PMNamedObjectEdit +{ + Q_OBJECT + typedef PMNamedObjectEdit Base; +public: + /** + * Creates a PMLightEdit with parent and name + */ + PMLightEdit( QWidget* parent, const char* name = 0 ); + + /** */ + virtual void displayObject( PMObject* o ); + + /** */ + virtual bool isDataValid( ); +public slots: + void slotTypeActivated( int index ); + void slotAreaClicked( ); + void slotOrientCheck( ); + void slotFadingClicked( ); +protected: + /** */ + virtual void createTopWidgets( ); + /** */ + virtual void saveContents( ); + +private: + /** + * Returns true if orient should be enabled + */ + bool orientEnabled( bool readOnly ); + + PMLight* m_pDisplayedObject; + PMVectorEdit* m_pLocation; + PMColorEdit* m_pColor; + QComboBox* m_pType; + + PMFloatEdit* m_pRadius; + QLabel* m_pRadiusLabel; + PMFloatEdit* m_pFalloff; + QLabel* m_pFalloffLabel; + PMFloatEdit* m_pTightness; + QLabel* m_pTightnessLabel; + + PMVectorEdit* m_pPointAt; + QLabel* m_pPointAtLabel; + QCheckBox* m_pParallel; + + QCheckBox* m_pAreaLight; + QLabel* m_pAreaTypeLabel; + QComboBox* m_pAreaType; + PMVectorEdit* m_pAxis1; + PMIntEdit* m_pSize1; + PMVectorEdit* m_pAxis2; + PMIntEdit* m_pSize2; + QLabel* m_pAxis1Label; + QLabel* m_pAxis2Label; + QLabel* m_pSize1Label; + QLabel* m_pSize2Label; + PMIntEdit* m_pAdaptive; + QLabel* m_pAdaptiveLabel; + QCheckBox* m_pOrient; + QCheckBox* m_pJitter; + + QCheckBox* m_pFading; + PMFloatEdit* m_pFadeDistance; + QLabel* m_pFadeDistanceLabel; + PMIntEdit* m_pFadePower; + QLabel* m_pFadePowerLabel; + QCheckBox* m_pMediaInteraction; + QCheckBox* m_pMediaAttenuation; +}; + + +#endif -- cgit v1.2.3