summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/interfaces/view.h
Unidiff
Diffstat (limited to 'noncore/apps/tinykate/libkate/interfaces/view.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/interfaces/view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/apps/tinykate/libkate/interfaces/view.h b/noncore/apps/tinykate/libkate/interfaces/view.h
index 5b24bb5..5846395 100644
--- a/noncore/apps/tinykate/libkate/interfaces/view.h
+++ b/noncore/apps/tinykate/libkate/interfaces/view.h
@@ -21,25 +21,25 @@
21 21
22 You should have received a copy of the GNU Library General Public License 22 You should have received a copy of the GNU Library General Public License
23 along with this library; see the file COPYING.LIB. If not, write to 23 along with this library; see the file COPYING.LIB. If not, write to
24 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 24 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. 25 Boston, MA 02111-1307, USA.
26 ***************************************************************************/ 26 ***************************************************************************/
27 27
28#ifndef _KATE_VIEW_INCLUDE_ 28#ifndef _KATE_VIEW_INCLUDE_
29#define _KATE_VIEW_INCLUDE_ 29#define _KATE_VIEW_INCLUDE_
30 30
31#include <ktexteditor.h> 31#include <ktexteditor.h>
32 32
33class KConfig; 33class KateConfig;
34 34
35namespace Kate 35namespace Kate
36{ 36{
37 37
38class Document; 38class Document;
39class Mark; 39class Mark;
40 40
41/** This interface provides access to the view. 41/** This interface provides access to the view.
42*/ 42*/
43class View : public KTextEditor::View 43class View : public KTextEditor::View
44{ 44{
45 Q_OBJECT 45 Q_OBJECT
@@ -70,26 +70,26 @@ class View : public KTextEditor::View
70 70
71 // undo/redo stuff 71 // undo/redo stuff
72 virtual void undo () { ; }; 72 virtual void undo () { ; };
73 virtual void redo () { ; }; 73 virtual void redo () { ; };
74 virtual void undoHistory() { ; }; 74 virtual void undoHistory() { ; };
75 75
76 public: 76 public:
77 // read/save config of the view 77 // read/save config of the view
78 virtual void readConfig () { ; }; 78 virtual void readConfig () { ; };
79 virtual void writeConfig () { ; }; 79 virtual void writeConfig () { ; };
80 80
81 // read/save sessionconfig of the view 81 // read/save sessionconfig of the view
82 virtual void readSessionConfig (KConfig *) { ; }; 82 virtual void readSessionConfig (KateConfig *) { ; };
83 virtual void writeSessionConfig (KConfig *) { ; }; 83 virtual void writeSessionConfig (KateConfig *) { ; };
84 84
85 public slots: 85 public slots:
86 // some simply key commands 86 // some simply key commands
87 virtual void keyReturn () { ; }; 87 virtual void keyReturn () { ; };
88 virtual void keyDelete () { ; }; 88 virtual void keyDelete () { ; };
89 virtual void backspace () { ; }; 89 virtual void backspace () { ; };
90 virtual void killLine () { ; }; 90 virtual void killLine () { ; };
91 91
92 // move cursor in the view 92 // move cursor in the view
93 virtual void cursorLeft () { ; }; 93 virtual void cursorLeft () { ; };
94 virtual void shiftCursorLeft () { ; }; 94 virtual void shiftCursorLeft () { ; };
95 virtual void cursorRight () { ; }; 95 virtual void cursorRight () { ; };