katecmds.h
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2003 Anders Lund <anders@alweb.dk> 00003 Copyright (C) 2001-2004 Christoph Cullmann <cullmann@kde.org> 00004 Copyright (C) 2001 Charles Samuels <charles@kde.org> 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License version 2 as published by the Free Software Foundation. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef __KATE_CMDS_H__ 00022 #define __KATE_CMDS_H__ 00023 00024 #include "../interfaces/document.h" 00025 #include "../interfaces/view.h" 00026 00027 class KateDocument; 00028 class KCompletion; 00029 00030 namespace KateCommands 00031 { 00032 00039 class CoreCommands : public Kate::Command, public Kate::CommandExtension 00040 { 00041 public: 00049 bool exec( class Kate::View *view, const TQString &cmd, TQString &errorMsg ); 00050 00051 bool help( class Kate::View *, const TQString &, TQString & ) {return false;}; 00052 00057 TQStringList cmds(); 00058 00062 KCompletion *completionObject( const TQString &cmd, Kate::View *view ); 00063 }; 00064 00075 class SedReplace : public Kate::Command 00076 { 00077 public: 00085 bool exec (class Kate::View *view, const TQString &cmd, TQString &errorMsg); 00086 00087 bool help (class Kate::View *, const TQString &, TQString &) { return false; }; 00088 00093 TQStringList cmds () { TQStringList l("s"); l << "%s" << "$s"; return l; }; 00094 00095 private: 00115 static int sedMagic(KateDocument *doc, int &line, 00116 const TQString &find, const TQString &replace, const TQString &delim, 00117 bool noCase, bool repeat, 00118 uint startcol=0, int endcol=-1); 00119 }; 00120 00129 class Character : public Kate::Command 00130 { 00131 public: 00139 bool exec (class Kate::View *view, const TQString &cmd, TQString &errorMsg); 00140 00141 bool help (class Kate::View *, const TQString &, TQString &) { return false; }; 00142 00147 TQStringList cmds () { return TQStringList("char"); }; 00148 }; 00149 00153 class Date : public Kate::Command 00154 { 00155 public: 00163 bool exec (class Kate::View *view, const TQString &cmd, TQString &errorMsg); 00164 00165 bool help (class Kate::View *, const TQString &, TQString &) { return false; }; 00166 00171 TQStringList cmds () { return TQStringList("date"); }; 00172 }; 00173 00174 00175 } // namespace KateCommands 00176 #endif 00177 00178 // kate: space-indent on; indent-width 2; replace-tabs on;