Moka Ihm Qt
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
dialog-homothetie.qt.hh
Go to the documentation of this file.
1 /*
2  * Moka : Un modeleur de 3-G-cartes.
3  * Copyright (C) 2004, Moka Team, Université de Poitiers, Laboratoire SIC
4  * http://www.sic.sp2mi.univ-poitiers.fr/
5  * Copyright (C) 2009, Guillaume Damiand, CNRS, LIRIS,
6  * guillaume.damiand@liris.cnrs.fr, http://liris.cnrs.fr/
7  *
8  * This file is part of Moka
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef DIALOGHOMOTHETIE_QT_HH
25 #define DIALOGHOMOTHETIE_QT_HH
26 
27 //--------- Include autres classes developees ----------
28 #include "dialog-operations.qt.hh"
29 
30 //--------------------- Include QT --------------------
31 #include <QtGui/QComboBox>
32 #include <QtGui/QLabel>
33 
34 class Window ;
35 
40 {
41  Q_OBJECT
42 
43 public:
44 
50  dialogHomothetie ( Window * parent ,
51  GMap3d :: CControlerGMap * controler ) ;
52 
56  ~dialogHomothetie ( ) ;
57 
61  virtual void update ( ) ;
62 
63 
64  // Accesseurs
65  //-----------
66  void setDistanceType ( GMap3d :: TScaleType ) ;
67  void setIso ( bool ) ;
68 
69  void setC ( const CVertex & /*center*/ ) ;
70  void setV ( const CVertex & /*vector*/ ) ;
71  void setK ( const CVertex & /*coefs */ ) ;
72 
73  void setCx ( TCoordinate ) ; TCoordinate getCx ( ) const ;
74  void setCy ( TCoordinate ) ; TCoordinate getCy ( ) const ;
75  void setCz ( TCoordinate ) ; TCoordinate getCz ( ) const ;
76 
77  void setVx ( TCoordinate ) ; TCoordinate getVx ( ) const ;
78  void setVy ( TCoordinate ) ; TCoordinate getVy ( ) const ;
79  void setVz ( TCoordinate ) ; TCoordinate getVz ( ) const ;
80 
81  void setKx ( TCoordinate ) ; TCoordinate getKx ( ) const ;
82  void setKy ( TCoordinate ) ; TCoordinate getKy ( ) const ;
83  void setKz ( TCoordinate ) ; TCoordinate getKz ( ) const ;
84 
85  void setIsoCoef ( TCoordinate ) ;
86 
87  public slots:
88 
89  void callbackCx ( ) ;
90  void callbackCy ( ) ;
91  void callbackCz ( ) ;
92 
93  void callbackVx ( ) ;
94  void callbackVy ( ) ;
95  void callbackVz ( ) ;
96 
97  void callbackKx ( ) ;
98  void callbackKy ( ) ;
99  void callbackKz ( ) ;
100 
101  void callbackIsoCoef ( ) ;
102 
103  void callbackDistance ( );
104  void callbackToggleIsoButton ( ) ;
105 
106  void callbackTakeCenter ( ) ;
107  void callbackTakeVector ( ) ;
108 
109  void callbackTogglePonderation ( ) ;
110 
111 
112 private:
113 
114  QLabel * FAffParam , * FAffSommet , * FAffVecteur , * FAffCoef , * FAffCoeffs ;
115  QLabel * FAffX , * FAffY , * FAffZ ;
116  QComboBox * FSaisieParam ;
117  champsOperations * FSaisieVecteur ;
118  QCheckBox * FSaisieIso , * FSaisiePonderation ;
119  FloatSpinBox * FSaisieCoef , * FSaisieX , * FSaisieY , * FSaisieZ ;
120 
121 
122 } ;
123 
124 #endif