summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/tinykate.h
authorllornkcor <llornkcor>2002-12-26 03:49:11 (UTC)
committer llornkcor <llornkcor>2002-12-26 03:49:11 (UTC)
commite4e891190200cf26ba4bafcadca17f2473493276 (patch) (side-by-side diff)
tree16d36e9a6253758c7da926e457cfb613775dae28 /noncore/apps/tinykate/tinykate.h
parentf736bf0ae774159a80a97b9492d7624e7caf07a3 (diff)
downloadopie-e4e891190200cf26ba4bafcadca17f2473493276.zip
opie-e4e891190200cf26ba4bafcadca17f2473493276.tar.gz
opie-e4e891190200cf26ba4bafcadca17f2473493276.tar.bz2
hook up save and saveAs
Diffstat (limited to 'noncore/apps/tinykate/tinykate.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/tinykate.h4
1 files changed, 3 insertions, 1 deletions
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
@@ -12,54 +12,56 @@
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation. *
* ONLY VERSION 2 OF THE LICENSE IS APPLICABLE *
* *
***************************************************************************/
#ifndef __TINYKATE_H__
#define __TINYKATE_H__
#include <qmainwindow.h>
#include <opie/otabwidget.h>
#include <ktexteditor.h>
class QAction;
class QPopupMenu;
class TinyKate : public QMainWindow
{
Q_OBJECT
public:
TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0);
public slots:
+ QString currentFileName;
void slotNew();
protected slots:
void slotOpen();
void slotClose();
void slotCurrentChanged(QWidget *);
-
+ void slotSave();
+ void slotSaveAs();
protected:
void open(const QString&);
private:
OTabWidget *tabwidget;
KTextEditor::View *currentView;
QAction *editCopy;
QAction *editCut;
QAction *editPaste;
QAction *editUndo;
QAction *editRedo;
QAction *editFindReplace;
QAction *viewIncFontSizes;
QAction *viewDecFontSizes;
QAction *utilSettings;
QPopupMenu *hlmenu;
uint nextUnnamed;
uint viewCount;
};
#endif // __TINYKATE_H__