kseparator.h
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 <qframe.h>
00024
00031 class KSeparator :
public QFrame
00032 {
00033 Q_OBJECT
00034 Q_PROPERTY(
int orientation READ orientation WRITE
setOrientation )
00035
public:
00042
KSeparator(
QWidget* parent=0,
const char* name=0, WFlags f=0);
00043
00052
KSeparator(
int orientation,
QWidget* parent=0,
const char* name=0,
00053 WFlags f=0);
00054
00059
int orientation()
const;
00060
00066
void setOrientation(
int orient);
00067
00071
virtual QSize sizeHint()
const;
00072
00073
protected:
00077
virtual void drawFrame(
QPainter *p );
00078
protected:
00079
virtual void virtual_hook(
int id,
void* data );
00080
private:
00081
class KSeparatorPrivate* d;
00082 };
00083
00084
00085
#endif // __KSEPARATOR_H__
This file is part of the documentation for kdeui Library Version 3.3.1.