summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmgridsettings.cpp
blob: 693191873a06a7ffd158f87920e697ed8bc868fd (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
**************************************************************************
                                 description
                             --------------------
    copyright            : (C) 2003 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.                                   *
*                                                                        *
**************************************************************************/

#include "pmgridsettings.h"

#include "pmlineedits.h"
#include "pmrendermanager.h"
#include "pmcontrolpoint.h"
#include "pmdefaults.h"

#include <tqlayout.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <kcolorbutton.h>
#include <klocale.h>

PMGridSettings::PMGridSettings( TQWidget* parent, const char* name )
      : PMSettingsDialogPage( parent, name )
{
   TQHBoxLayout* htqlayout;
   TQVBoxLayout* vtqlayout;
   TQVBoxLayout* gvl;
   TQGridLayout* grid;
   TQGroupBox* gb;

   vtqlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint( ) );
   gb = new TQGroupBox( i18n( "Displayed Grid" ), this );
   vtqlayout->addWidget( gb );
   gvl = new TQVBoxLayout( gb, KDialog::marginHint( ), KDialog::spacingHint( ) );
   gvl->addSpacing( 10 );

   htqlayout = new TQHBoxLayout( gvl );
   htqlayout->addWidget( new TQLabel( i18n( "Color:" ), gb ) );
   m_pGridColor = new KColorButton( gb );
   htqlayout->addWidget( m_pGridColor );
   htqlayout->addStretch( 1 );

   htqlayout = new TQHBoxLayout( gvl );
   htqlayout->addWidget( new TQLabel( i18n( "Distance:" ), gb ) );
   m_pGridDistance = new PMIntEdit( gb );
   m_pGridDistance->setValidation( true, 20, false, 0 );
   htqlayout->addWidget( m_pGridDistance );
   htqlayout->addStretch( 1 );

   gb = new TQGroupBox( i18n( "Control Point Grid" ), this );
   vtqlayout->addWidget( gb );
   gvl = new TQVBoxLayout( gb, KDialog::marginHint( ), KDialog::spacingHint( ) );
   gvl->addSpacing( 10 );

   htqlayout = new TQHBoxLayout( gvl );
   grid = new TQGridLayout( htqlayout, 3, 2 );
   grid->addWidget( new TQLabel( i18n( "2D/3D movement:" ), gb ), 0, 0 );
   m_pMoveGrid = new PMFloatEdit( gb );
   m_pMoveGrid->setValidation( true, 0.001, true, 100 );
   grid->addWidget( m_pMoveGrid, 0, 1 );
   
   grid->addWidget( new TQLabel( i18n( "Scale:" ), gb ), 1, 0 );
   m_pScaleGrid = new PMFloatEdit( gb );
   m_pScaleGrid->setValidation( true, 0.001, true, 100 );
   grid->addWidget( m_pScaleGrid, 1, 1 );
   
   grid->addWidget( new TQLabel( i18n( "Rotation:" ), gb ), 2, 0 );
   m_pRotateGrid = new PMFloatEdit( gb );
   m_pRotateGrid->setValidation( true, 0.001, true, 180 );
   grid->addWidget( m_pRotateGrid, 2, 1 );

   htqlayout->addStretch( 1 );

   vtqlayout->addStretch( 1 );
}

void PMGridSettings::displaySettings( )
{
   PMRenderManager* rm = PMRenderManager::theManager( );
   m_pGridColor->setColor( rm->gridColor( ) );
   m_pGridDistance->setValue( rm->gridDistance( ) );
   m_pMoveGrid->setValue( PMControlPoint::moveGrid( ) );
   m_pScaleGrid->setValue( PMControlPoint::scaleGrid( ) );
   m_pRotateGrid->setValue( PMControlPoint::rotateGrid( ) );
}

void PMGridSettings::displayDefaults( )
{
   m_pGridColor->setColor( c_defaultGridColor );
   m_pGridDistance->setValue( c_defaultGridDistance );
   m_pMoveGrid->setValue( c_defaultMoveGrid );
   m_pScaleGrid->setValue( c_defaultScaleGrid );
   m_pRotateGrid->setValue( c_defaultRotateGrid );      
}

bool PMGridSettings::validateData( )
{
   if( !m_pGridDistance->isDataValid( ) )
   {
      emit showMe( );
      m_pGridDistance->setFocus( );
      return false;
   }
   if( !m_pMoveGrid->isDataValid( ) )
   {
      emit showMe( );
      m_pMoveGrid->setFocus( );
      return false;
   }
   if( !m_pScaleGrid->isDataValid( ) )
   {
      emit showMe( );
      m_pScaleGrid->setFocus( );
      return false;
   }
   if( !m_pRotateGrid->isDataValid( ) )
   {
      emit showMe( );
      m_pRotateGrid->setFocus( );
      return false;
   }
   return true;
}

void PMGridSettings::applySettings( )
{
   bool tqrepaint = false;
   PMRenderManager* rm = PMRenderManager::theManager( );
   if( rm->gridColor( ) != m_pGridColor->color( ) )
   {
      rm->setGridColor( m_pGridColor->color( ) );
      tqrepaint = true;
   }
   if( rm->gridDistance( ) != m_pGridDistance->value( ) )
   {
      rm->setGridDistance( m_pGridDistance->value( ) );
      tqrepaint = true;
   }
   PMControlPoint::setMoveGrid( m_pMoveGrid->value( ) );
   PMControlPoint::setScaleGrid( m_pScaleGrid->value( ) );
   PMControlPoint::setRotateGrid( m_pRotateGrid->value( ) );
   if( tqrepaint )
      emit repaintViews( );
}

#include "pmgridsettings.moc"