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
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2000-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. *
* *
**************************************************************************/
#include "pmnormaledit.h"
#include "pmnormal.h"
#include "pmlinkedit.h"
#include "pmlineedits.h"
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tdelocale.h>
PMNormalEdit::PMNormalEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
}
void PMNormalEdit::createTopWidgets( )
{
TQHBoxLayout* hl;
Base::createTopWidgets( );
hl = new TQHBoxLayout( topLayout( ) );
m_pBumpSizeCheck = new TQCheckBox( i18n( "Bump size" ), this );
m_pBumpSizeEdit = new PMFloatEdit( this );
hl->addWidget( m_pBumpSizeCheck );
hl->addWidget( m_pBumpSizeEdit );
hl->addStretch( 1 );
hl = new TQHBoxLayout( topLayout( ) );
TQLabel* lbl = new TQLabel( i18n( "Accuracy" ), this );
m_pAccuracy = new PMFloatEdit( this );
hl->addWidget( lbl );
hl->addWidget( m_pAccuracy );
hl->addStretch( 1 );
m_pUVMapping = new TQCheckBox( i18n( "UV mapping" ), this );
topLayout( )->addWidget( m_pUVMapping );
connect( m_pBumpSizeCheck, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotBumpSizeClicked( )) );
connect( m_pBumpSizeEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( )) );
connect( m_pAccuracy, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
connect( m_pUVMapping, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) );
}
void PMNormalEdit::displayObject( PMObject* o )
{
if( o->isA( "Normal" ) )
{
bool readOnly = o->isReadOnly( );
m_pDisplayedObject = ( PMNormal* )o;
m_pBumpSizeCheck->setChecked( m_pDisplayedObject->isBumpSizeEnabled( ) );
m_pBumpSizeCheck->setEnabled( !readOnly );
m_pBumpSizeEdit->setValue( m_pDisplayedObject->bumpSize( ) );
m_pBumpSizeEdit->setReadOnly( readOnly );
slotBumpSizeClicked( );
m_pAccuracy->setValue( m_pDisplayedObject->accuracy( ) );
m_pAccuracy->setReadOnly( readOnly );
m_pUVMapping->setChecked( m_pDisplayedObject->uvMapping() );
m_pUVMapping->setEnabled( !readOnly );
Base::displayObject( o );
}
else
kdError( PMArea ) << "PMNormalEdit: Can't display object\n";
}
void PMNormalEdit::saveContents( )
{
if( m_pDisplayedObject )
{
Base::saveContents( );
m_pDisplayedObject->enableBumpSize( m_pBumpSizeCheck->isChecked( ) );
m_pDisplayedObject->setBumpSize( m_pBumpSizeEdit->value( ) );
m_pDisplayedObject->setAccuracy( m_pAccuracy->value( ) );
m_pDisplayedObject->setUVMapping( m_pUVMapping->isChecked() );
}
}
bool PMNormalEdit::isDataValid( )
{
if( !m_pBumpSizeEdit->isDataValid( ) ) return false;
if( !m_pAccuracy->isDataValid( ) ) return false;
return Base::isDataValid( );
}
void PMNormalEdit::slotBumpSizeClicked( )
{
if( m_pBumpSizeCheck->isChecked( ) )
m_pBumpSizeEdit->show( );
else
m_pBumpSizeEdit->hide( );
emit sizeChanged( );
emit dataChanged( );
}
#include "pmnormaledit.moc"
|