Developer documentation | Axl-2.5.1

axlInspectorLight.h
Go to the documentation of this file.
1 /* axlInspectorLight.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 AXLINSPECTORLIGHT_H
21 #define AXLINSPECTORLIGHT_H
22 
23 #include "axlGuiExport.h"
24 
25 class axlAbstractView;
26 
27 class dtkAbstractData;
28 
29 #include <QtWidgets>
30 
31 class axlInspectorLightPrivate;
32 
33 class AXLGUI_EXPORT axlInspectorLight : public QDialog
34 {
35  Q_OBJECT
36 
37 public:
38  axlInspectorLight(QWidget *parent = 0);
39  ~axlInspectorLight(void);
40 
41  void setView(axlAbstractView *view);
42 
43 
44 public slots:
45  void onActiveDefaultLight(bool useDefaultLight);
46  void onValueChanged(QString value);
47  void onLightVisibilityChanged(bool hide);
48  void onPositionChanged(double x, double y, double z);
49 
50 
51 private :
52  void setStateLight(bool state);
53 
54 private:
55  axlInspectorLightPrivate *d;
56 };
57 
58 #endif //AXLINSPECTORLIGHT_H
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15