/*************************************************************************** * * * begin : 07 May 2004 * * copyright : (C) 2003 by Samokhvalov Anton :) * * * ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __size__box__h__dsf86g87ds #define __size__box__h__dsf86g87ds #include class SizeBox: public KComboBox { Q_OBJECT public: SizeBox( QWidget* parent = 0, const char* name = 0, WFlags fl = 0); virtual ~SizeBox(); virtual void setCurrentText( const QString& txt ); private slots: void slotTextChanged( const QString& text ); signals: void sizeChanged( int percents ); }; #endif