kde-workspace/kate/part/utils/katecmds.h

325 lines
9.5 KiB
C
Raw Normal View History

/* This file is part of the KDE libraries and the Kate part.
*
* Copyright (C) 2003-2005 Anders Lund <anders@alweb.dk>
* Copyright (C) 2001-2010 Christoph Cullmann <cullmann@kde.org>
* Copyright (C) 2001 Charles Samuels <charles@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 as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* 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 __KATE_CMDS_H__
#define __KATE_CMDS_H__
#include <ktexteditor/commandinterface.h>
#include "kateregexpsearch.h"
#include <QtCore/QStringList>
class KateDocument;
class KCompletion;
/**
* The KateCommands namespace collects subclasses of KTextEditor::Command
* for specific use in kate.
*/
namespace KateCommands
{
/**
* This KTextEditor::Command provides access to a lot of the core functionality
* of kate part, settings, utilities, navigation etc.
* it needs to get a kateview pointer, it will cast the kate::view pointer
* hard to kateview
*/
class CoreCommands : public KTextEditor::Command, public KTextEditor::CommandExtension,
public KTextEditor::RangeCommand
{
CoreCommands() { }
static CoreCommands* m_instance;
public:
~CoreCommands() { m_instance = 0; }
/**
* execute command
* @param view view to use for execution
* @param cmd cmd string
* @param errorMsg error to return if no success
* @return success
*/
bool exec( class KTextEditor::View *view, const QString &cmd, QString &errorMsg );
/**
* execute command on given range
* @param view view to use for execution
* @param cmd cmd string
* @param errorMsg error to return if no success
* @param rangeStart first line in range
* @param rangeEnd last line in range
* @return success
*/
bool exec( class KTextEditor::View *view, const QString &cmd, QString &errorMsg,
const KTextEditor::Range &range = KTextEditor::Range(-1, -0, -1, 0) );
bool supportsRange(const QString &range);
/** This command does not have help. @see KTextEditor::Command::help */
bool help( class KTextEditor::View *, const QString &, QString & );
/**
* supported commands as prefixes
* @return prefix list
*/
const QStringList &cmds();
/**
* override completionObject from interfaces/document.h .
*/
KCompletion *completionObject( KTextEditor::View *, const QString & );
virtual void flagCompletions( QStringList& ) {}
virtual bool wantsToProcessText( const QString & ) { return false; }
virtual void processText( KTextEditor::View *, const QString & ) {}
static CoreCommands* self() {
if (m_instance == 0) {
m_instance = new CoreCommands();
}
return m_instance;
}
};
/**
* This KTextEditor::Command provides vi commands for the application
*/
class AppCommands : public KTextEditor::Command
{
AppCommands();
static AppCommands* m_instance;
public:
~AppCommands() { m_instance = 0; }
/**
* execute command
* @param view view to use for execution
* @param cmd cmd string
* @param msg message returned from running the command
* @return success
*/
bool exec( class KTextEditor::View *view, const QString &cmd, QString &msg );
/** Help for AppCommands */
bool help( class KTextEditor::View *, const QString &, QString & );
/**
* supported commands as prefixes
* @return prefix list
*/
const QStringList &cmds();
static AppCommands* self() {
if (m_instance == 0) {
m_instance = new AppCommands();
}
return m_instance;
}
private:
QRegExp re_write;
/*QRegExp re_quit;
QRegExp re_exit;
QRegExp re_changeBuffer;
QRegExp re_edit;
QRegExp re_new;*/
};
/**
* Support vim/sed style search and replace
* @author Charles Samuels <charles@kde.org>
**/
class SedReplace : public KTextEditor::Command, public KTextEditor::RangeCommand
{
SedReplace() { }
static SedReplace* m_instance;
public:
~SedReplace() { m_instance = 0; }
/**
* Execute command. Valid command strings are:
* - s/search/replace/ find @c search, replace it with @c replace
* on this line
* - \%s/search/replace/ do the same to the whole file
* - s/search/replace/i do the search and replace case insensitively
* - $s/search/replace/ do the search are replacement to the
* selection only
*
* @note $s/// is currently unsupported
* @param view view to use for execution
* @param cmd cmd string
* @param errorMsg error to return if no success
* @return success
*/
bool exec (class KTextEditor::View *view, const QString &cmd, QString &errorMsg);
bool exec (class KTextEditor::View *view, const QString &cmd, QString &errorMsg,
const KTextEditor::Range &r);
bool supportsRange(const QString &) { return true; }
/** This command does not have help. @see KTextEditor::Command::help */
bool help (class KTextEditor::View *, const QString &, QString &) { return false; }
/**
* supported commands as prefixes
* @return prefix list
*/
const QStringList &cmds () { static QStringList l("s"); if (l.isEmpty()) l << "%s" << "$s"; return l; }
static SedReplace* self() {
if (m_instance == 0) {
m_instance = new SedReplace();
}
return m_instance;
}
/**
* Parses @c sedReplaceString to see if it is a valid sed replace expression (e.g. "s/find/replace/gi").
* If it is, returns true and sets @c delimiter to the delimiter used in the expression;
* @c destFindBeginPos and @c destFindEndPos to the positions in * @c sedReplaceString of the
* begin and end of the "find" term; and @c destReplaceBeginPos and @c destReplaceEndPos to the begin
* and end positions of the "replace" term.
*/
static bool parse(const QString& sedReplaceString, QString& destDelim, int& destFindBeginPos, int& destFindEndPos, int& destReplaceBeginPos, int& destReplaceEndPos);
class InteractiveSedReplacer
{
public:
InteractiveSedReplacer(KateDocument* doc, const QString& findPattern, const QString& replacePattern, bool caseSensitive, bool onlyOnePerLine, int startLine, int endLine);
/**
* Will return invalid Range if there are no further matches.
*/
KTextEditor::Range currentMatch();
void skipCurrentMatch();
void replaceCurrentMatch();
void replaceAllRemaining();
QString currentMatchReplacementConfirmationMessage();
QString finalStatusReportMessage();
private:
const QString m_findPattern;
const QString m_replacePattern;
bool m_onlyOnePerLine;
int m_endLine;
KateDocument *m_doc;
KateRegExpSearch m_regExpSearch;
int m_numReplacementsDone;
int m_numLinesTouched;
int m_lastChangedLineNum;
KTextEditor::Cursor m_currentSearchPos;
const QVector<KTextEditor::Range> fullCurrentMatch();
QString replacementTextForCurrentMatch();
};
private:
};
/**
* insert a unicode or ascii character
* base 9+1: 1234
* hex: 0x1234 or x1234
* octal: 01231
*
* prefixed with "char:"
**/
class Character : public KTextEditor::Command
{
Character() { }
static Character* m_instance;
public:
~Character() { m_instance = 0; }
/**
* execute command
* @param view view to use for execution
* @param cmd cmd string
* @param errorMsg error to return if no success
* @return success
*/
bool exec (class KTextEditor::View *view, const QString &cmd, QString &errorMsg);
/** This command does not have help. @see KTextEditor::Command::help */
bool help (class KTextEditor::View *, const QString &, QString &);
/**
* supported commands as prefixes
* @return prefix list
*/
const QStringList &cmds () { static QStringList test("char"); return test; }
static Character* self() {
if (m_instance == 0) {
m_instance = new Character();
}
return m_instance;
}
};
/**
* insert the current date/time in the given format
*/
class Date : public KTextEditor::Command
{
Date() { }
static Date* m_instance;
public:
~Date() { m_instance = 0; }
/**
* execute command
* @param view view to use for execution
* @param cmd cmd string
* @param errorMsg error to return if no success
* @return success
*/
bool exec (class KTextEditor::View *view, const QString &cmd, QString &errorMsg);
/** This command does not have help. @see KTextEditor::Command::help */
bool help (class KTextEditor::View *, const QString &, QString &);
/**
* supported commands as prefixes
* @return prefix list
*/
const QStringList &cmds () { static QStringList test("date"); return test; }
static Date* self() {
if (m_instance == 0) {
m_instance = new Date();
}
return m_instance;
}
};
} // namespace KateCommands
#endif
// kate: space-indent on; indent-width 2; replace-tabs on;