KDEUI
ktoolbarspaceraction.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2006 Hamish Rodda <rodda@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License version 2 as published by the Free Software Foundation. 00007 00008 This library is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 Library General Public License for more details. 00012 00013 You should have received a copy of the GNU Library General Public License 00014 along with this library; see the file COPYING.LIB. If not, write to 00015 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00016 Boston, MA 02110-1301, USA. 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
KDE 4.6 API Reference