Developer documentation | Axl-2.5.1

axlInspectorSeparator.h
Go to the documentation of this file.
1 /* axlInspectorSeparator.h ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Julien Wintz, Inria.
5  * Created: Tue Mar 15 14:06:35 2011 (+0100)
6  * Version: $Id$
7  * Last-Updated: Thu Mar 17 23:58:51 2011 (+0100)
8  * By: Meriadeg Perrinel
9  * Update #: 10
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 #ifndef AXLINSPECTORSEPARATOR_H
21 #define AXLINSPECTORSEPARATOR_H
22 
23 #include "axlGuiExport.h"
24 
25 #include <QtWidgets>
26 
27 class axlInspectorSeparatorPrivate;
28 
29 
30 class AXLGUI_EXPORT axlInspectorSeparator : public QWidget
31 {
32  Q_OBJECT
33 
34 public:
35  axlInspectorSeparator(QWidget *parent = 0, Qt::Orientation orientation = Qt::Horizontal);
36  ~axlInspectorSeparator(void);
37 
38 public:
39  QSize sizeHint(void) const;
40 
41 protected:
42  void paintEvent(QPaintEvent *event);
43 
44 private:
45  axlInspectorSeparatorPrivate *d;
46 };
47 
48 #endif
#define AXLGUI_EXPORT
Definition: axlGuiExport2.h:15