summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-12-26 03:49:11 (UTC)
committer llornkcor <llornkcor>2002-12-26 03:49:11 (UTC)
commite4e891190200cf26ba4bafcadca17f2473493276 (patch) (unidiff)
tree16d36e9a6253758c7da926e457cfb613775dae28 /noncore
parentf736bf0ae774159a80a97b9492d7624e7caf07a3 (diff)
downloadopie-e4e891190200cf26ba4bafcadca17f2473493276.zip
opie-e4e891190200cf26ba4bafcadca17f2473493276.tar.gz
opie-e4e891190200cf26ba4bafcadca17f2473493276.tar.bz2
hook up save and saveAs
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/tinykate.cpp41
-rw-r--r--noncore/apps/tinykate/tinykate.h4
2 files changed, 43 insertions, 2 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp
index a823530..c8c3b31 100644
--- a/noncore/apps/tinykate/tinykate.cpp
+++ b/noncore/apps/tinykate/tinykate.cpp
@@ -25,24 +25,25 @@
25 25
26#include <opie/ofiledialog.h> 26#include <opie/ofiledialog.h>
27 27
28#include "tinykate.h" 28#include "tinykate.h"
29#include "pics/file-new.xpm" 29#include "pics/file-new.xpm"
30#include "pics/file-open.xpm" 30#include "pics/file-open.xpm"
31#include "pics/file-save.xpm" 31#include "pics/file-save.xpm"
32#include "pics/edit-undo.xpm" 32#include "pics/edit-undo.xpm"
33#include "pics/edit-redo.xpm" 33#include "pics/edit-redo.xpm"
34 34
35#include <katedocument.h> 35#include <katedocument.h>
36#include <katehighlight.h> 36#include <katehighlight.h>
37#include <kateview.h>
37 38
38TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) : 39TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) :
39 QMainWindow( parent, name, f ) 40 QMainWindow( parent, name, f )
40{ 41{
41 nextUnnamed=0; 42 nextUnnamed=0;
42 currentView=0; 43 currentView=0;
43 viewCount=0; 44 viewCount=0;
44 setCaption(tr("TinyKATE")); 45 setCaption(tr("TinyKATE"));
45 46
46 setToolBarsMovable(FALSE); 47 setToolBarsMovable(FALSE);
47 48
48 QPEToolBar *bar = new QPEToolBar( this ); 49 QPEToolBar *bar = new QPEToolBar( this );
@@ -62,28 +63,30 @@ TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) :
62 a->addTo( popup ); 63 a->addTo( popup );
63 connect(a, SIGNAL(activated()), this, SLOT(slotNew())); 64 connect(a, SIGNAL(activated()), this, SLOT(slotNew()));
64 65
65 // Action for opening an exisiting document 66 // Action for opening an exisiting document
66 a = new QAction( tr( "Open" ), QPixmap((const char**)file_open_xpm), QString::null, 0, this, 0 ); 67 a = new QAction( tr( "Open" ), QPixmap((const char**)file_open_xpm), QString::null, 0, this, 0 );
67 a->addTo(popup); 68 a->addTo(popup);
68 connect(a, SIGNAL(activated()), this, SLOT(slotOpen())); 69 connect(a, SIGNAL(activated()), this, SLOT(slotOpen()));
69 70
70 71
71 // Action for saving document 72 // Action for saving document
72 a = new QAction( tr( "Save" ), QPixmap((const char**)file_save_xpm), QString::null, 0, this, 0 ); 73 a = new QAction( tr( "Save" ), QPixmap((const char**)file_save_xpm), QString::null, 0, this, 0 );
73 a->addTo(popup); 74 a->addTo(popup);
75 connect(a, SIGNAL(activated()), this, SLOT(slotSave()));
74 76
75 // Action for saving document to a new name 77 // Action for saving document to a new name
76 a = new QAction( tr( "Save As" ), QPixmap((const char**)file_save_xpm), QString::null, 0, this, 0 ); 78 a = new QAction( tr( "Save As" ), QPixmap((const char**)file_save_xpm), QString::null, 0, this, 0 );
77 a->addTo(popup); 79 a->addTo(popup);
80 connect(a, SIGNAL(activated()), this, SLOT(slotSaveAs()));
78 81
79 // Action for closing the currently active document 82 // Action for closing the currently active document
80 a = new QAction( tr( "Close" ), QPixmap(), QString::null, 0, this, 0 ); 83 a = new QAction( tr( "Close" ), QPixmap(), QString::null, 0, this, 0 );
81 a->addTo(popup); 84 a->addTo(popup);
82 connect(a, SIGNAL(activated()), this, SLOT(slotClose())); 85 connect(a, SIGNAL(activated()), this, SLOT(slotClose()));
83 86
84 87
85 mb->insertItem(tr("File"),popup); 88 mb->insertItem(tr("File"),popup);
86 89
87//EDIT ACTIONS 90//EDIT ACTIONS
88 91
89 // Action for cutting text 92 // Action for cutting text
@@ -159,24 +162,25 @@ void TinyKate::open(const QString & filename)
159 KateDocument *kd= new KateDocument(false, false, this,0,this); 162 KateDocument *kd= new KateDocument(false, false, this,0,this);
160 KTextEditor::View *kv; 163 KTextEditor::View *kv;
161 QFileInfo fi(filename); 164 QFileInfo fi(filename);
162 tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate",fi.fileName()); 165 tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate",fi.fileName());
163 qDebug(filename); 166 qDebug(filename);
164 kd->open(filename); 167 kd->open(filename);
165 viewCount++; 168 viewCount++;
166} 169}
167 170
168void TinyKate::slotCurrentChanged( QWidget * view) 171void TinyKate::slotCurrentChanged( QWidget * view)
169{ 172{
170 if (currentView) { 173 if (currentView) {
174
171 disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy())); 175 disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy()));
172 disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut())); 176 disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut()));
173 disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste())); 177 disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste()));
174 disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo())); 178 disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo()));
175 disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); 179 disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo()));
176 disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); 180 disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes()));
177 disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); 181 disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes()));
178 disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); 182 disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int)));
179 disconnect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); 183 disconnect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog()));
180 } 184 }
181 185
182 currentView=(KTextEditor::View*)view; 186 currentView=(KTextEditor::View*)view;
@@ -188,27 +192,62 @@ void TinyKate::slotCurrentChanged( QWidget * view)
188 connect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); 192 connect(editRedo,SIGNAL(activated()),currentView,SLOT(redo()));
189 connect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); 193 connect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes()));
190 connect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); 194 connect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes()));
191 connect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); 195 connect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int)));
192 connect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog())); 196 connect(utilSettings,SIGNAL(activated()), currentView,SLOT(configDialog()));
193 197
194} 198}
195 199
196void TinyKate::slotNew( ) 200void TinyKate::slotNew( )
197{ 201{
198 KateDocument *kd= new KateDocument(false, false, this,0,this); 202 KateDocument *kd= new KateDocument(false, false, this,0,this);
199 KTextEditor::View *kv; 203 KTextEditor::View *kv;
200 tabwidget->addTab(kv=kd->createView(tabwidget,"BLAH"),"tinykate/tinykate",tr("Unnamed %1").arg(nextUnnamed++)); 204 tabwidget->addTab(kv=kd->createView(tabwidget,"BLAH"),
205 "tinykate/tinykate",
206 tr("Unnamed %1").arg(nextUnnamed++));
201 viewCount++; 207 viewCount++;
202} 208}
203 209
204void TinyKate::slotClose( ) 210void TinyKate::slotClose( )
205{ 211{
206 if (currentView==0) return; 212 if (currentView==0) return;
207 KTextEditor::View *dv=currentView; 213 KTextEditor::View *dv=currentView;
208 currentView=0; 214 currentView=0;
209 tabwidget->removePage(dv); 215 tabwidget->removePage(dv);
210 delete dv->document(); 216 delete dv->document();
211 viewCount--; 217 viewCount--;
212 if (!viewCount) slotNew(); 218 if (!viewCount) slotNew();
213} 219}
214 220
221void TinyKate::slotSave() {
222 // feel free to make this how you want
223 if (currentView==0) return;
224
225 // KateView *kv = (KateView*) currentView;
226 KateDocument *kd = (KateDocument*) currentView->document();
227 // qDebug("saving file "+kd->docName());
228 if( kd->docName().isEmpty())
229 slotSaveAs();
230 else
231 kd->saveFile();
232 // kv->save();
233 // kd->saveFile();
234}
235
236void TinyKate::slotSaveAs() {
237 if (currentView==0) return;
238 KateDocument *kd = (KateDocument*) currentView->document();
239
240 QString filename=OFileDialog::getSaveFileName(OFileSelector::EXTENDED_ALL);
241 if (!filename.isEmpty()) {
242 qDebug("saving file "+filename);
243 QFileInfo fi(filename);
244 QString filenamed = fi.fileName();
245 kd->setDocFile( filename);
246 kd->setDocName( filenamed);
247 kd->saveFile();
248// KTextEditor::View *dv = currentView;
249// tabwidget->changeTab( dv, filenamed);
250 // need to change tab label here
251 }
252
253}
diff --git a/noncore/apps/tinykate/tinykate.h b/noncore/apps/tinykate/tinykate.h
index ef0dcba..7b61bae 100644
--- a/noncore/apps/tinykate/tinykate.h
+++ b/noncore/apps/tinykate/tinykate.h
@@ -24,31 +24,33 @@
24#include <ktexteditor.h> 24#include <ktexteditor.h>
25 25
26class QAction; 26class QAction;
27class QPopupMenu; 27class QPopupMenu;
28 28
29class TinyKate : public QMainWindow 29class TinyKate : public QMainWindow
30{ 30{
31Q_OBJECT 31Q_OBJECT
32public: 32public:
33 TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0); 33 TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0);
34 34
35public slots: 35public slots:
36 QString currentFileName;
36 void slotNew(); 37 void slotNew();
37 38
38protected slots: 39protected slots:
39 void slotOpen(); 40 void slotOpen();
40 void slotClose(); 41 void slotClose();
41 void slotCurrentChanged(QWidget *); 42 void slotCurrentChanged(QWidget *);
42 43 void slotSave();
44 void slotSaveAs();
43protected: 45protected:
44 void open(const QString&); 46 void open(const QString&);
45private: 47private:
46 OTabWidget *tabwidget; 48 OTabWidget *tabwidget;
47 KTextEditor::View *currentView; 49 KTextEditor::View *currentView;
48 50
49 QAction *editCopy; 51 QAction *editCopy;
50 QAction *editCut; 52 QAction *editCut;
51 QAction *editPaste; 53 QAction *editPaste;
52 QAction *editUndo; 54 QAction *editUndo;
53 QAction *editRedo; 55 QAction *editRedo;
54 QAction *editFindReplace; 56 QAction *editFindReplace;