1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* 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.
**/
#ifdef QT_ONLY
#include "compat.h"
#else
#include <klocale.h>
#include <kgenericfactory.h>
#include <kapplication.h>
#include "kregexpeditorgui.moc"
#endif
#include "kregexpeditorgui.h"
// #include <unistd.h> // DO I need this?
#include <stdio.h>
#include "kregexpeditorprivate.h"
#include <qlayout.h>
const QString KRegExpEditorGUI::version = QString::fromLocal8Bit("1.0");
KRegExpEditorGUI::KRegExpEditorGUI(QWidget *parent, const char *name,
const QStringList & )
: QWidget( parent, name)
{
QHBoxLayout* layout = new QHBoxLayout( this, 6 );
_editor = new KRegExpEditorPrivate( this, "_editor" );
layout->addWidget( _editor );
connect( _editor, SIGNAL( canUndo(bool) ), this, SIGNAL( canUndo(bool) ) );
connect( _editor, SIGNAL( canRedo(bool) ), this, SIGNAL( canRedo(bool) ) );
connect( _editor, SIGNAL( changes(bool) ), this, SIGNAL( changes(bool) ) );
}
QString KRegExpEditorGUI::regExp() const
{
return _editor->regexp();
}
void KRegExpEditorGUI::redo()
{
_editor->slotRedo();
}
void KRegExpEditorGUI::undo()
{
_editor->slotUndo();
}
void KRegExpEditorGUI::setRegExp( const QString ®exp )
{
_editor->slotSetRegexp( regexp );
}
KRegExpEditorGUIDialog::KRegExpEditorGUIDialog( QWidget *parent,
const char *name,
const QStringList & )
: KDialogBase( KDialogBase::Plain, i18n("Regular Expression Editor"),
KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::Help, KDialogBase::Ok,
parent, name ? name : "KRegExpDialog" )
{
QFrame* frame = plainPage();
QVBoxLayout* layout = new QVBoxLayout( frame, 6 );
layout->setAutoAdd( true );
_editor = new KRegExpEditorGUI( frame );
connect( _editor, SIGNAL( canUndo(bool) ), this, SIGNAL( canUndo(bool) ) );
connect( _editor, SIGNAL( canRedo(bool) ), this, SIGNAL( canRedo(bool) ) );
connect( _editor, SIGNAL( changes(bool) ), this, SIGNAL( changes(bool) ) );
resize( 640, 400 );
setHelp( QString::null, QString::fromLocal8Bit( "KRegExpEditor" ) );
#ifdef QT_ONLY
connect( this, SIGNAL( helpClicked() ), _editor, SLOT( showHelp() ) );
#endif
}
QString KRegExpEditorGUIDialog::regExp() const
{
return _editor->regExp();
}
void KRegExpEditorGUIDialog::setRegExp( const QString ®exp )
{
_editor->setRegExp( regexp );
}
void KRegExpEditorGUIDialog::redo()
{
_editor->redo();
}
void KRegExpEditorGUIDialog::undo()
{
_editor->undo();
}
void KRegExpEditorGUIDialog::doSomething( QString method, void* arguments )
{
_editor->doSomething( method, arguments );
}
void KRegExpEditorGUI::doSomething( QString method, void* arguments )
{
if ( method == QString::fromLatin1( "setCaseSensitive" ) ) {
_editor->setCaseSensitive( (bool) arguments );
}
else if ( method == QString::fromLatin1("setMinimal") ) {
_editor->setMinimal( (bool) arguments );
}
else if ( method == QString::fromLatin1("setSyntax") ) {
_editor->setSyntax( *((QString*) arguments) );
}
else if ( method == QString::fromLatin1("setAllowNonQtSyntax") ) {
_editor->setAllowNonQtSyntax( (bool) arguments );
}
else {
qFatal( "%s", tr("Method '%1' is not valid!").arg(method).latin1() );
}
}
void KRegExpEditorGUIDialog::setMatchText( const QString& txt )
{
_editor->setMatchText( txt );
}
void KRegExpEditorGUI::setMatchText( const QString& txt )
{
_editor->setMatchText( txt );
}
void KRegExpEditorGUI::showHelp()
{
#ifdef QT_ONLY
_editor->showHelp();
#else
kapp->invokeHelp( QString::null, QString::fromLocal8Bit( "KRegExpEditor" ) );
#endif
}
#ifndef QT_ONLY
typedef K_TYPELIST_2( KRegExpEditorGUI, KRegExpEditorGUIDialog ) Products;
K_EXPORT_COMPONENT_FACTORY( libkregexpeditorgui,
KGenericFactory<Products>( "kregexpeditor" ) )
#endif
|