-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 | |||
@@ -180,16 +180,21 @@ void TinyKate::open(const QString & 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())); |
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 | |||
@@ -31,16 +31,17 @@ 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: |