Changeset 2222

Show
Ignore:
Timestamp:
08/13/08 18:41:46 (3 months ago)
Author:
hlamer
Message:

Documentation for regular expressions editor

Location:
v2/branches/dev/plugins/base/RegExpEditor/src
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • v2/branches/dev/plugins/base/RegExpEditor/src/RegExpEditor.cpp

    r2142 r2222  
     1//TODO make it standalone application 
     2 
    13#include "RegExpEditor.h" 
    24#include "UIRegExpEditor.h" 
  • v2/branches/dev/plugins/base/RegExpEditor/src/RegExpEditor.h

    r2142 r2222  
     1// TODO make it standalone application 
     2 
    13#ifndef REGEXPEDITOR_H 
    24#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*/ 
    136#include "UIRegExpEditor.h" 
    237 
     
    641#include <QDebug> 
    742 
     43/*! 
     44        Initialise UI 
     45        \param w Parent widget 
     46*/ 
    847UIRegExpEditor::UIRegExpEditor( QWidget* w ) 
    948        : QMainWindow( w, Qt::Tool ) 
     
    2261} 
    2362 
     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*/ 
    2470void UIRegExpEditor::on_tbFind_clicked() 
    2571{ 
  • 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*/ 
    136#ifndef UIREGEXPEDITOR_H 
    237#define UIREGEXPEDITOR_H 
     
    439#include "ui_UIRegExpEditor.h" 
    540 
     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*/ 
    647class UIRegExpEditor : public QMainWindow, public Ui::UIRegExpEditor 
    748{