Developer documentation | Axl-2.5.1

axlInspectorSidePane.h
Go to the documentation of this file.
1 /* axlInspectorSidePane.h ---
2  *
3  * Author: Julien Wintz
4  * Copyright (C) 2008 - Julien Wintz, Inria.
5  * Created: Tue Mar 15 14:06:35 2011 (+0100)
6  * Version: $Id$
7  * Last-Updated: Wed Nov 9 11:12:00 2011 (+0100)
8  * By: Julien Wintz
9  * Update #: 11
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLINSPECTORSIDEPANE_H
21 #define AXLINSPECTORSIDEPANE_H
22 
23 #include "axlGuiExport.h"
24 
25 #include <QtWidgets>
26 
27 class axlInspectorSidePanePrivate;
28 
29 class AXLGUI_EXPORT axlInspectorSidePane : public QToolBar
30 {
31  Q_OBJECT
32 
33 public:
34  axlInspectorSidePane(QWidget *parent = 0);
35  ~axlInspectorSidePane(void);
36 
37  QSize sizeHint(void) const;
38 
39 signals:
40  void showInspector(bool);
41  void worldCamera(void);
42  void objectCamera(void);
43  void trackballCamera(void);
44  void joystickCamera(void);
45  void showSettings(bool);
46  void switchFullScreen(void);
47 
48 private:
49  axlInspectorSidePanePrivate *d;
50 };
51 
52 #endif
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15