diff options
Diffstat (limited to 'kregexpeditor/repeatwidget.h')
-rw-r--r-- | kregexpeditor/repeatwidget.h | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/kregexpeditor/repeatwidget.h b/kregexpeditor/repeatwidget.h new file mode 100644 index 0000000..434b4cb --- /dev/null +++ b/kregexpeditor/repeatwidget.h @@ -0,0 +1,103 @@ +/* + * Copyright (c) 2002-2003 Jesper K. Pedersen <blackie@kde.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License version 2 as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + **/ +#ifndef __repeatwidget +#define __repeatwidget + +#include "singlecontainerwidget.h" +#include <qvbox.h> +class QButtonGroup; +class KDialogBase; +class QCheckBox; +class QSpinBox; +class RepeatRegExp; + +/** + Widget containging the configuration for a @ref RepeatWidget + @internal +*/ +class RepeatRangeWindow :public QVBox +{ +Q_OBJECT + +public: + enum REPEATTYPE {ANY, ATLEAST, ATMOST, EXACTLY, MINMAX}; + + RepeatRangeWindow( QWidget* parent, const char* name = 0 ); + QString text(); + int min(); + int max(); + void set( REPEATTYPE tp, int min, int max ); + +protected slots: + void slotItemChange( int which ); + void slotUpdateMinVal( int minVal ); + void slotUpdateMaxVal( int minVal ); + + +private: + void createLine( QWidget* parent, QString text, QSpinBox** spin, REPEATTYPE tp ); + + QSpinBox* _leastTimes; + QSpinBox* _mostTimes; + QSpinBox* _exactlyTimes; + QSpinBox* _rangeFrom; + QSpinBox* _rangeTo; + QButtonGroup* _group; +}; + + + + + +/** + RegExp widget for `repeated content' + @internal +*/ +class RepeatWidget :public SingleContainerWidget +{ +Q_OBJECT + +public: + RepeatWidget( RegExpEditorWindow* editorWindow, QWidget *parent, + const char *name = 0); + RepeatWidget( RepeatRegExp* regexp, RegExpEditorWindow* editorWindow, + QWidget* parent, const char* name = 0); + void init(); + virtual QSize sizeHint() const; + virtual RegExp* regExp() const; + virtual RegExpType type() const { return REPEAT; } + virtual int edit(); + +protected: + virtual void paintEvent( QPaintEvent *e ); + +protected slots: + void slotConfigCanceled(); + void slotConfigWindowClosed(); + +private: + KDialogBase* _configWindow; + RepeatRangeWindow* _content; + + mutable QSize _textSize; + mutable QSize _childSize; + QByteArray _backup; +}; + + +#endif // __repeatwidget |