KDEUI
ktoolbarspaceraction.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 #ifndef KTOOLBARSPACERACTION_H
00020 #define KTOOLBARSPACERACTION_H
00021
00022 #include "kaction.h"
00023
00032 class KDEUI_EXPORT KToolBarSpacerAction : public KAction
00033 {
00034 Q_OBJECT
00035 Q_PROPERTY( int width READ width WRITE setWidth )
00036 Q_PROPERTY( int minimumWidth READ minimumWidth WRITE setMinimumWidth )
00037 Q_PROPERTY( int maximumWidth READ maximumWidth WRITE setMaximumWidth )
00038
00039 public:
00045 explicit KToolBarSpacerAction(QObject *parent);
00046
00047 ~KToolBarSpacerAction();
00048
00052 int width() const;
00053
00057 void setWidth( int width );
00058
00062 int minimumWidth() const;
00063
00067 void setMinimumWidth( int width );
00068
00072 int maximumWidth() const;
00073
00077 void setMaximumWidth( int width );
00078
00082 virtual QWidget* createWidget( QWidget* parent );
00083
00087 virtual void deleteWidget(QWidget *widget);
00088
00089
00090 private:
00091 class Private;
00092 Private* const d;
00093
00094 Q_PRIVATE_SLOT( d, void _k_spacerDestroyed( QObject* ) )
00095 };
00096
00097 #endif