kexi
kexiframe.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KexiFrame_H
00021 #define KexiFrame_H
00022
00023 #include <qframe.h>
00024
00026 class KEXIFORMUTILS_EXPORT KexiFrame : public QFrame
00027 {
00028 Q_OBJECT
00029 Q_PROPERTY( QColor frameColor READ frameColor WRITE setFrameColor DESIGNABLE true )
00030
00031 public:
00032 KexiFrame( QWidget * parent, const char * name = 0 );
00033 virtual ~KexiFrame();
00034
00035 virtual const QColor& frameColor() const;
00036
00037 public slots:
00038 virtual void setPalette( const QPalette &pal );
00039 virtual void setFrameColor(const QColor& color);
00040
00041 protected:
00042 virtual void drawFrame( QPainter * );
00043
00044 class Private;
00045 Private *d;
00046 };
00047
00048 #endif
|