Changeset 2222
- Timestamp:
- 08/13/08 18:41:46 (3 months ago)
- Location:
- v2/branches/dev/plugins/base/RegExpEditor/src
- Files:
-
- 4 modified
-
RegExpEditor.cpp (modified) (1 diff)
-
RegExpEditor.h (modified) (1 diff)
-
ui/UIRegExpEditor.cpp (modified) (3 diffs)
-
ui/UIRegExpEditor.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
v2/branches/dev/plugins/base/RegExpEditor/src/RegExpEditor.cpp
r2142 r2222 1 //TODO make it standalone application 2 1 3 #include "RegExpEditor.h" 2 4 #include "UIRegExpEditor.h" -
v2/branches/dev/plugins/base/RegExpEditor/src/RegExpEditor.h
r2142 r2222 1 // TODO make it standalone application 2 1 3 #ifndef REGEXPEDITOR_H 2 4 #define REGEXPEDITOR_H -
v2/branches/dev/plugins/base/RegExpEditor/src/ui/UIRegExpEditor.cpp
r2142 r2222 1 /**************************************************************************** 2 ** 3 ** Created using Monkey Studio v1.8.1.0 4 ** Authors : Andrei Kopats aka hlamer <hlamer at tut by>, 5 Filipe AZEVEDO aka PasNox <pasnox at gmail com> 6 ** Project : Monkey Studio Base Plugins 7 ** FileName : UIRegExpEditor.cpp 8 ** Date : 2008-01-14T00:40:08 9 ** License : GPL 10 ** Comment : Regular expression editor 11 ** Home Page : http://www.monkeystudio.org 12 ** 13 Copyright (C) 2005 - 2008 Filipe AZEVEDO & The Monkey Studio Team 14 15 This program is free software; you can redistribute it and/or modify 16 it under the terms of the GNU General Public License as published by 17 the Free Software Foundation; either version 2 of the License, or 18 (at your option) any later version. 19 20 This program is distributed in the hope that it will be useful, 21 but WITHOUT ANY WARRANTY; without even the implied warranty of 22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 GNU General Public License for more details. 24 25 You should have received a copy of the GNU General Public License 26 along with this program; if not, write to the Free Software 27 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 28 ** 29 ****************************************************************************/ 30 /*! 31 \file UIRegExpEditor.cpp 32 \date 2008-01-14T00:40:08 33 \author Andrei KOPATS, Filipe AZEVEDO 34 \brief Regular expression editor 35 */ 1 36 #include "UIRegExpEditor.h" 2 37 … … 6 41 #include <QDebug> 7 42 43 /*! 44 Initialise UI 45 \param w Parent widget 46 */ 8 47 UIRegExpEditor::UIRegExpEditor( QWidget* w ) 9 48 : QMainWindow( w, Qt::Tool ) … … 22 61 } 23 62 63 /*! 64 Handler or click on Find button 65 66 Searchs for matching, if it's possible and displaying it on UI 67 If impossible to search (empty pattern for example) - explains on status 68 bar, why impossible 69 */ 24 70 void UIRegExpEditor::on_tbFind_clicked() 25 71 { -
v2/branches/dev/plugins/base/RegExpEditor/src/ui/UIRegExpEditor.h
r2142 r2222 1 /**************************************************************************** 2 ** 3 ** Created using Monkey Studio v1.8.1.0 4 ** Authors : Andrei Kopats aka hlamer <hlamer at tut by>, 5 Filipe AZEVEDO aka PasNox <pasnox at gmail com> 6 ** Project : Monkey Studio Base Plugins 7 ** FileName : UIRegExpEditor.h 8 ** Date : 2008-01-14T00:40:08 9 ** License : GPL 10 ** Comment : Regular expression editor 11 ** Home Page : http://www.monkeystudio.org 12 ** 13 Copyright (C) 2005 - 2008 Filipe AZEVEDO & The Monkey Studio Team 14 15 This program is free software; you can redistribute it and/or modify 16 it under the terms of the GNU General Public License as published by 17 the Free Software Foundation; either version 2 of the License, or 18 (at your option) any later version. 19 20 This program is distributed in the hope that it will be useful, 21 but WITHOUT ANY WARRANTY; without even the implied warranty of 22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 GNU General Public License for more details. 24 25 You should have received a copy of the GNU General Public License 26 along with this program; if not, write to the Free Software 27 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 28 ** 29 ****************************************************************************/ 30 /*! 31 \file UIRegExpEditor.h 32 \date 2008-01-14T00:40:08 33 \author Andrei KOPATS, Filipe AZEVEDO 34 \brief Regular expression editor 35 */ 1 36 #ifndef UIREGEXPEDITOR_H 2 37 #define UIREGEXPEDITOR_H … … 4 39 #include "ui_UIRegExpEditor.h" 5 40 41 /*! 42 Regular expression editor 43 44 Tool for quick creation of regular expressions. 45 Allows you apply pattern for some text and see matches for pattern 46 */ 6 47 class UIRegExpEditor : public QMainWindow, public Ui::UIRegExpEditor 7 48 {
