Developer documentation | Axl-2.5.1

axlInspectorCamera.h
Go to the documentation of this file.
1 /* axlInspectorCamera.h ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Meriadeg Perrinel, Inria.
5  * Created: Wed Mar 16 17:17:53 2011 (+0100)
6  * Version: $Id$
7  * Last-Updated: Wed Mar 16 17:37:04 2011 (+0100)
8  * By: Meriadeg Perrinel
9  * Update #: 14
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLINSPECTORCAMERA_H
21 #define AXLINSPECTORCAMERA_H
22 
23 #include "axlGuiExport.h"
24 
25 class axlAbstractView;
26 
27 class dtkAbstractData;
28 
29 #include <QtWidgets>
30 
31 class axlInspectorCameraPrivate;
32 
33 class AXLGUI_EXPORT axlInspectorCamera : public QDialog
34 {
35  Q_OBJECT
36 
37 public:
38  axlInspectorCamera(QWidget *parent = 0);
39  ~axlInspectorCamera(void);
40 
41  void setView(axlAbstractView *view);
42  void updateView(void);
43 
44 public slots:
45  void onCameraViewChanged(void);
46  void onCameraProjectionChanged(void);
47  void onGridChanged(void);
48 
49 
50 private :
51  void setStateLight(bool state);
52 
53 private:
54  axlInspectorCameraPrivate *d;
55 };
56 
57 #endif //AXLINSPECTORCAMERA_H
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15