/*************************************************************************** * Copyright (C) 2003 by Martin Galpin * * martin@nemohackers.org * * * * 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 _KUAKECUSTOMSIZE_H_ #define _KUAKECUSTOMSIZE_H_ #include class QWidget; class KIntNumInput; class QSlider; class KuakeCustomSize : public KDialogBase { Q_OBJECT public: KuakeCustomSize(QWidget *parent = 0, const char* name = 0, unsigned int* value = 0); ~KuakeCustomSize(); private: KIntNumInput* input; QSlider* slider; unsigned int* _value; public slots: void slotSave(); }; #endif