blob: 3f7f2e5eb4f31cdbc0f3178cd24b84552e2bc8f5 (
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
116
117
118
119
120
121
122
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2001 by Luis Carvalho
email : lpassos@mail.telepac.pt
**************************************************************************
**************************************************************************
* *
* 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 PMFINISHEDIT_H
#define PMFINISHEDIT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pmtexturebaseedit.h"
class PMFinish;
class PMFloatEdit;
class PMColorEdit;
class TQCheckBox;
class TQLabel;
class TQWidget;
/**
* Dialog edit class for @ref PMFinish
*/
class PMFinishEdit : public PMTextureBaseEdit
{
TQ_OBJECT
typedef PMTextureBaseEdit Base;
public:
/**
* Creates a PMFinishEdit with parent and name
*/
PMFinishEdit( TQWidget* parent, const char* name = 0 );
/** */
virtual void displayObject( PMObject* o );
/** */
virtual bool isDataValid( );
protected:
/** */
virtual void createTopWidgets( );
/** */
virtual void saveContents( );
protected slots:
void slotIridClicked( );
void slotAmbientClicked( );
void slotPhongClicked( );
void slotPhongSizeClicked( );
void slotBrillianceClicked( );
void slotDiffuseClicked( );
void slotMetallicClicked( );
void slotCrandClicked( );
void slotSpecularClicked( );
void slotRoughnessClicked( );
void slotReflectionClicked( );
void slotReflectionMinClicked( );
void slotRefFalloffClicked( );
void slotRefExponentClicked( );
void slotRefMetallicClicked( );
private:
PMFinish* m_pDisplayedObject;
PMColorEdit* m_pAmbientColorEdit;
TQLabel* m_pAmbientColorLabel;
PMFloatEdit* m_pDiffuseEdit;
PMFloatEdit* m_pBrillianceEdit;
PMFloatEdit* m_pCrandEdit;
TQCheckBox* m_pConserveEnergyEdit;
PMFloatEdit* m_pPhongEdit;
PMFloatEdit* m_pPhongSizeEdit;
PMFloatEdit* m_pMetallicEdit;
PMFloatEdit* m_pSpecularEdit;
PMFloatEdit* m_pRoughnessEdit;
TQCheckBox* m_pIridEdit;
PMFloatEdit* m_pIridAmountEdit;
PMFloatEdit* m_pIridThicknessEdit;
PMFloatEdit* m_pIridTurbulenceEdit;
TQLabel* m_pIridAmountLabel;
TQLabel* m_pIridThicknessLabel;
TQLabel* m_pIridTurbulenceLabel;
TQCheckBox* m_pEnableAmbientEdit;
TQCheckBox* m_pEnablePhongEdit;
TQCheckBox* m_pEnablePhongSizeEdit;
TQCheckBox* m_pEnableDiffuseEdit;
TQCheckBox* m_pEnableBrillianceEdit;
TQCheckBox* m_pEnableCrandEdit;
TQCheckBox* m_pEnableSpecularEdit;
TQCheckBox* m_pEnableRoughnessEdit;
TQCheckBox* m_pEnableMetallicEdit;
TQWidget* m_pReflectionWidget;
PMColorEdit* m_pReflectionColorEdit;
PMColorEdit* m_pReflectionMinColorEdit;
TQCheckBox* m_pReflectionFresnelEdit;
PMFloatEdit* m_pReflectionFalloffEdit;
PMFloatEdit* m_pReflectionExponentEdit;
PMFloatEdit* m_pReflectionMetallicEdit;
TQCheckBox* m_pEnableReflectionEdit;
TQCheckBox* m_pEnableReflectionMinEdit;
TQCheckBox* m_pEnableRefFalloffEdit;
TQCheckBox* m_pEnableRefExponentEdit;
TQCheckBox* m_pEnableRefMetallicEdit;
};
#endif
|