author | harlekin <harlekin> | 2003-04-26 19:12:45 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-04-26 19:12:45 (UTC) |
commit | 64c48b637c1bd1bef679bff500f3e0ce5365358d (patch) (unidiff) | |
tree | ef7405ffc95384e52daa12af13a9e55f484d19a8 | |
parent | 9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae (diff) | |
download | opie-64c48b637c1bd1bef679bff500f3e0ce5365358d.zip opie-64c48b637c1bd1bef679bff500f3e0ce5365358d.tar.gz opie-64c48b637c1bd1bef679bff500f3e0ce5365358d.tar.bz2 |
added a setDocuments method
-rw-r--r-- | noncore/apps/tinykate/tinykate.cpp | 5 | ||||
-rw-r--r-- | noncore/apps/tinykate/tinykate.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp index 694efc6..ea7ea45 100644 --- a/noncore/apps/tinykate/tinykate.cpp +++ b/noncore/apps/tinykate/tinykate.cpp | |||
@@ -156,64 +156,69 @@ TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) : | |||
156 | TinyKate::~TinyKate( ) | 156 | TinyKate::~TinyKate( ) |
157 | { | 157 | { |
158 | qWarning("TinyKate destructor\n"); | 158 | qWarning("TinyKate destructor\n"); |
159 | if( KGlobal::config() != 0 ) { | 159 | if( KGlobal::config() != 0 ) { |
160 | qWarning("deleting KateConfig object..\n"); | 160 | qWarning("deleting KateConfig object..\n"); |
161 | delete KGlobal::config(); | 161 | delete KGlobal::config(); |
162 | } | 162 | } |
163 | } | 163 | } |
164 | 164 | ||
165 | void TinyKate::slotOpen( ) | 165 | void TinyKate::slotOpen( ) |
166 | { | 166 | { |
167 | QString filename = OFileDialog::getOpenFileName( OFileSelector::EXTENDED_ALL, | 167 | QString filename = OFileDialog::getOpenFileName( OFileSelector::EXTENDED_ALL, |
168 | QPEApplication::documentDir()); | 168 | QPEApplication::documentDir()); |
169 | if (!filename.isEmpty()) { | 169 | if (!filename.isEmpty()) { |
170 | open(filename); | 170 | open(filename); |
171 | } | 171 | } |
172 | } | 172 | } |
173 | 173 | ||
174 | void TinyKate::open(const QString & filename) | 174 | void TinyKate::open(const QString & filename) |
175 | { | 175 | { |
176 | KateDocument *kd= new KateDocument(false, false, this,0,this); | 176 | KateDocument *kd= new KateDocument(false, false, this,0,this); |
177 | KTextEditor::View *kv; | 177 | KTextEditor::View *kv; |
178 | QFileInfo fi(filename); | 178 | QFileInfo fi(filename); |
179 | QString filenamed = fi.fileName(); | 179 | QString filenamed = fi.fileName(); |
180 | tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate", filenamed ); | 180 | tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate", filenamed ); |
181 | qDebug(filename); | 181 | qDebug(filename); |
182 | 182 | ||
183 | kd->setDocName( filenamed); | 183 | kd->setDocName( filenamed); |
184 | kd->open( filename ); | 184 | kd->open( filename ); |
185 | viewCount++; | 185 | viewCount++; |
186 | } | 186 | } |
187 | 187 | ||
188 | void TinyKate::setDocument(const QString& fileref) | ||
189 | { | ||
190 | open( fileref ); | ||
191 | } | ||
192 | |||
188 | void TinyKate::slotCurrentChanged( QWidget * view) | 193 | void TinyKate::slotCurrentChanged( QWidget * view) |
189 | { | 194 | { |
190 | if (currentView) { | 195 | if (currentView) { |
191 | 196 | ||
192 | disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy())); | 197 | disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy())); |
193 | disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut())); | 198 | disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut())); |
194 | disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste())); | 199 | disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste())); |
195 | disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo())); | 200 | disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo())); |
196 | disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); | 201 | disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); |
197 | disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); | 202 | disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); |
198 | disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); | 203 | disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); |
199 | disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); | 204 | disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); |
200 | disconnect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); | 205 | disconnect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); |
201 | } | 206 | } |
202 | 207 | ||
203 | currentView=(KTextEditor::View*)view; | 208 | currentView=(KTextEditor::View*)view; |
204 | 209 | ||
205 | connect(editCopy,SIGNAL(clicked()),currentView,SLOT(copy())); | 210 | connect(editCopy,SIGNAL(clicked()),currentView,SLOT(copy())); |
206 | connect(editCut,SIGNAL(clicked()),currentView,SLOT(cut())); | 211 | connect(editCut,SIGNAL(clicked()),currentView,SLOT(cut())); |
207 | connect(editPaste,SIGNAL(clicked()),currentView,SLOT(paste())); | 212 | connect(editPaste,SIGNAL(clicked()),currentView,SLOT(paste())); |
208 | connect(editUndo,SIGNAL(clicked()),currentView,SLOT(undo())); | 213 | connect(editUndo,SIGNAL(clicked()),currentView,SLOT(undo())); |
209 | connect(editRedo,SIGNAL(clicked()),currentView,SLOT(redo())); | 214 | connect(editRedo,SIGNAL(clicked()),currentView,SLOT(redo())); |
210 | connect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); | 215 | connect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); |
211 | connect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); | 216 | connect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); |
212 | connect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); | 217 | connect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); |
213 | connect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); | 218 | connect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); |
214 | 219 | ||
215 | } | 220 | } |
216 | 221 | ||
217 | void TinyKate::slotNew( ) | 222 | void TinyKate::slotNew( ) |
218 | { | 223 | { |
219 | KateDocument *kd= new KateDocument(false, false, this,0,this); | 224 | KateDocument *kd= new KateDocument(false, false, this,0,this); |
diff --git a/noncore/apps/tinykate/tinykate.h b/noncore/apps/tinykate/tinykate.h index cdd8f43..2e8ca74 100644 --- a/noncore/apps/tinykate/tinykate.h +++ b/noncore/apps/tinykate/tinykate.h | |||
@@ -7,56 +7,57 @@ | |||
7 | ***************************************************************************/ | 7 | ***************************************************************************/ |
8 | 8 | ||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation. * | 13 | * the Free Software Foundation. * |
14 | * ONLY VERSION 2 OF THE LICENSE IS APPLICABLE * | 14 | * ONLY VERSION 2 OF THE LICENSE IS APPLICABLE * |
15 | * * | 15 | * * |
16 | ***************************************************************************/ | 16 | ***************************************************************************/ |
17 | 17 | ||
18 | #ifndef __TINYKATE_H__ | 18 | #ifndef __TINYKATE_H__ |
19 | #define __TINYKATE_H__ | 19 | #define __TINYKATE_H__ |
20 | 20 | ||
21 | 21 | ||
22 | #include <qmainwindow.h> | 22 | #include <qmainwindow.h> |
23 | #include <opie/otabwidget.h> | 23 | #include <opie/otabwidget.h> |
24 | #include <ktexteditor.h> | 24 | #include <ktexteditor.h> |
25 | 25 | ||
26 | class QToolButton; | 26 | class QToolButton; |
27 | class QAction; | 27 | class QAction; |
28 | class QPopupMenu; | 28 | class QPopupMenu; |
29 | 29 | ||
30 | class TinyKate : public QMainWindow | 30 | class TinyKate : public QMainWindow |
31 | { | 31 | { |
32 | Q_OBJECT | 32 | Q_OBJECT |
33 | public: | 33 | public: |
34 | TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0); | 34 | TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0); |
35 | ~TinyKate( ); | 35 | ~TinyKate( ); |
36 | 36 | ||
37 | public slots: | 37 | public slots: |
38 | void slotNew(); | 38 | void slotNew(); |
39 | void setDocument(const QString& fileref); | ||
39 | 40 | ||
40 | protected slots: | 41 | protected slots: |
41 | void slotOpen(); | 42 | void slotOpen(); |
42 | void slotClose(); | 43 | void slotClose(); |
43 | void slotCurrentChanged(QWidget *); | 44 | void slotCurrentChanged(QWidget *); |
44 | void slotSave(); | 45 | void slotSave(); |
45 | void slotSaveAs(); | 46 | void slotSaveAs(); |
46 | protected: | 47 | protected: |
47 | void open(const QString&); | 48 | void open(const QString&); |
48 | private: | 49 | private: |
49 | QString currentFileName; | 50 | QString currentFileName; |
50 | OTabWidget *tabwidget; | 51 | OTabWidget *tabwidget; |
51 | KTextEditor::View *currentView; | 52 | KTextEditor::View *currentView; |
52 | 53 | ||
53 | QToolButton *editCopy, *editCut, *editPaste, *editUndo, *editRedo, *editFindReplace; | 54 | QToolButton *editCopy, *editCut, *editPaste, *editUndo, *editRedo, *editFindReplace; |
54 | QAction *viewIncFontSizes, *viewDecFontSizes, *utilSettings; | 55 | QAction *viewIncFontSizes, *viewDecFontSizes, *utilSettings; |
55 | 56 | ||
56 | QPopupMenu *hlmenu; | 57 | QPopupMenu *hlmenu; |
57 | uint nextUnnamed; | 58 | uint nextUnnamed; |
58 | uint viewCount; | 59 | uint viewCount; |
59 | }; | 60 | }; |
60 | 61 | ||
61 | 62 | ||
62 | #endif // __TINYKATE_H__ | 63 | #endif // __TINYKATE_H__ |