Moka Ihm Qt
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
creation-options.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 BOITE_POSITIONNEMENT_QT_HH
25 #define BOITE_POSITIONNEMENT_QT_HH
26 
27 //--------- Include autres classes developees --------
28 #include "controler-gmap.hh"
29 #include "floatSpinBox.qt.hh"
30 class Window ;
31 class CreationObjet ;
32 
33 //-------------------- Include QT --------------------
34 #include <QtGui/QPushButton>
35 #include <QtGui/QLabel>
36 #include <QtGui/QToolBar>
37 #include <QtGui/QDialog>
38 
39 /*****************************************************/
40 /* CLASSE BoitePositionnement */
41 /*****************************************************/
42 class BoitePositionnement : public QDialog
43 {
44  Q_OBJECT
45 
46 public:
53  BoitePositionnement(CreationObjet * lien , Window * parent , int objet) ;
54 
59 
60  //****************************************************
61  // Accesseurs *
62  //****************************************************
63  virtual TCoordinate getScale() const;
64  virtual CVertex getProportions() const;
65  virtual CVertex getDimensions() const;
66  virtual CVertex getCenter() const;
67  virtual CVertex getRotations() const;
68  virtual CVertex getFirstVertex() const;
69  virtual CVertex getNormalVector() const;
70  virtual void activateYProportions(bool b) ;
71  virtual void activateZProportions(bool b) ;
72 
73  virtual void setScale(TCoordinate);
74  virtual void setProportions(const CVertex &);
75  virtual void setDimensions(const CVertex &);
76  virtual void setCenter(const CVertex &);
77  virtual void setRotations(const CVertex &);
78  virtual void setFirstVertex(const CVertex &);
79  virtual void setNormalVector(const CVertex &);
80 
81  virtual void update() ;
82 
83  virtual void show() ;
84 
85 private slots:
86 
87  void callbackScale() ;
88  void callbackProportions() ;
89  void callbackDimensions() ;
90  void callbackCenter() ;
91  void callbackRotations() ;
92  void callbackFirstVertex() ;
93  void callbackNormalVector() ;
94 
95 private:
96 
97  // Les Saisies
98  FloatSpinBox * FSaisieCentre [ 3 ] ;
99  FloatSpinBox * FSaisieFacteur ;
100  FloatSpinBox * FSaisieProportions [ 3 ] ;
101  FloatSpinBox * FSaisieDimensions [ 3 ] ;
102  FloatSpinBox * FSaisieRotations [ 3 ] ;
103  FloatSpinBox * FSaisiePoleNord [ 3 ] ;
104  FloatSpinBox * FSaisieEquateur [ 3 ] ;
105 
106  // Les affichages
107  QLabel * FAffCentre [ 3 ] ;
108  QLabel * FAffProportions [ 3 ] ;
109  QLabel * FAffDimensions [ 3 ] ;
110  QLabel * FAffRotations [ 3 ] ;
111  QLabel * FAffPoleNord [ 3 ] ;
112  QLabel * FAffEquateur [ 3 ] ;
113 
114  QLabel * FTitreCentre ;
115  QLabel * FTitreFacteur ;
116  QLabel * FTitreProportions ;
117  QLabel * FTitreDimensions ;
118  QLabel * FTitreRotations ;
119  QLabel * FTitrePoleNord ;
120  QLabel * FTitreEquateur ;
121 
122  // Pointeur sur la toolbar a laquelle il est lie
123  CreationObjet * FLien ;
124 
125  // Booleen de modification
126  bool FModifie ;
127 
128  // Identifiant du type de l'objet a construire
129  int FNumObject ;
130 
131  // Bouton masquer
132  QPushButton * FMasquer ;
133 } ;
134 
135 #endif