Developer documentation | Axl-2.5.1

axlInspectorSettings.h
Go to the documentation of this file.
1 /* axlInspectorSettings.h ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Meriadeg Perrinel, Inria.
5  * Created: Tue Mar 15 14:06:35 2011 (+0100)
6  * Version: $Id$
7  * Last-Updated: Wed Nov 9 15:53:56 2011 (+0100)
8  * By: Julien Wintz
9  * Update #: 13
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLINSPECTORSETTINGS_H
21 #define AXLINSPECTORSETTINGS_H
22 
23 #include "axlGuiExport.h"
24 
25 #include <QtWidgets>
26 
27 class axlInspectorSettingsPrivate;
28 
29 class AXLGUI_EXPORT axlInspectorSettings : public QFrame
30 {
31  Q_OBJECT
32  Q_PROPERTY(int width READ width WRITE setWidth)
33 
34 public:
35  axlInspectorSettings(QWidget *parent = 0);
36  ~axlInspectorSettings(void);
37 
38 public:
39  int width(void) const;
40 
41 public slots:
42  void setWidth(int width);
43 
44 private:
45  axlInspectorSettingsPrivate *d;
46 };
47 
48 #endif
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15