blob: 90c75bca8544fd39de40e818c95d97ee22557d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/*
**************************************************************************
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 <config.h>
#endif
#include "pmnamedobjectedit.h"
class PMLight;
class PMVectorEdit;
class PMColorEdit;
class TQComboBox;
class PMFloatEdit;
class PMIntEdit;
class TQLabel;
class TQCheckBox;
/**
* Dialog edit class for @ref PMLight
*/
class PMLightEdit : public PMNamedObjectEdit
{
TQ_OBJECT
typedef PMNamedObjectEdit Base;
public:
/**
* Creates a PMLightEdit with parent and name
*/
PMLightEdit( TQWidget* 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;
TQComboBox* m_pType;
PMFloatEdit* m_pRadius;
TQLabel* m_pRadiusLabel;
PMFloatEdit* m_pFalloff;
TQLabel* m_pFalloffLabel;
PMFloatEdit* m_pTightness;
TQLabel* m_pTightnessLabel;
PMVectorEdit* m_pPointAt;
TQLabel* m_pPointAtLabel;
TQCheckBox* m_pParallel;
TQCheckBox* m_pAreaLight;
TQLabel* m_pAreaTypeLabel;
TQComboBox* m_pAreaType;
PMVectorEdit* m_pAxis1;
PMIntEdit* m_pSize1;
PMVectorEdit* m_pAxis2;
PMIntEdit* m_pSize2;
TQLabel* m_pAxis1Label;
TQLabel* m_pAxis2Label;
TQLabel* m_pSize1Label;
TQLabel* m_pSize2Label;
PMIntEdit* m_pAdaptive;
TQLabel* m_pAdaptiveLabel;
TQCheckBox* m_pOrient;
TQCheckBox* m_pJitter;
TQCheckBox* m_pFading;
PMFloatEdit* m_pFadeDistance;
TQLabel* m_pFadeDistanceLabel;
PMIntEdit* m_pFadePower;
TQLabel* m_pFadePowerLabel;
TQCheckBox* m_pMediaInteraction;
TQCheckBox* m_pMediaAttenuation;
};
#endif
|