KDEUI
kseparator.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KSEPARATOR_H
00021 #define KSEPARATOR_H
00022
00023 #include <kdeui_export.h>
00024 #include <QtGui/QFrame>
00025
00031 class KDEUI_EXPORT KSeparator : public QFrame
00032 {
00033 Q_OBJECT
00034 Q_PROPERTY( Qt::Orientation orientation READ orientation WRITE setOrientation )
00035
00036 public:
00042 explicit KSeparator(QWidget* parent=0, Qt::WFlags f=0);
00043
00051 explicit KSeparator(Qt::Orientation orientation, QWidget* parent=0, Qt::WFlags f=0);
00052
00057 Qt::Orientation orientation() const;
00058
00064 void setOrientation(Qt::Orientation orientation);
00065
00066 private:
00067 class KSeparatorPrivate* d;
00068 };
00069
00070
00071 #endif // KSEPARATOR_H