summaryrefslogtreecommitdiff
path: root/core/apps/textedit/textedit.h
Unidiff
Diffstat (limited to 'core/apps/textedit/textedit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.h b/core/apps/textedit/textedit.h
index aca2933..a70b581 100644
--- a/core/apps/textedit/textedit.h
+++ b/core/apps/textedit/textedit.h
@@ -62,24 +62,25 @@ public slots:
62protected: 62protected:
63 void closeEvent( QCloseEvent *e ); 63 void closeEvent( QCloseEvent *e );
64 64
65private slots: 65private slots:
66 void setDocument(const QString&); 66 void setDocument(const QString&);
67 void changeFont(); 67 void changeFont();
68 void fileNew(); 68 void fileNew();
69 void fileRevert(); 69 void fileRevert();
70 void fileOpen(); 70 void fileOpen();
71 void changeStartConfig(bool); 71 void changeStartConfig(bool);
72 bool save(); 72 bool save();
73 bool saveAs(); 73 bool saveAs();
74 void cleanUp();
74 75
75 76
76 void editCut(); 77 void editCut();
77 void editCopy(); 78 void editCopy();
78 void editPaste(); 79 void editPaste();
79 void editFind(); 80 void editFind();
80 void editDelete(); 81 void editDelete();
81 82
82 void findNext(); 83 void findNext();
83 void findClose(); 84 void findClose();
84 85
85 void search(); 86 void search();
@@ -102,18 +103,18 @@ private:
102 void setFontSize(int sz, bool round_down_not_up); 103 void setFontSize(int sz, bool round_down_not_up);
103 104
104private: 105private:
105 fileSaver *fileSaveDlg; 106 fileSaver *fileSaveDlg;
106 fileBrowser *browseForFiles; 107 fileBrowser *browseForFiles;
107 108
108 QpeEditor* editor; 109 QpeEditor* editor;
109 QToolBar *menu, *editBar, *searchBar; 110 QToolBar *menu, *editBar, *searchBar;
110 QLineEdit *searchEdit; 111 QLineEdit *searchEdit;
111 DocLnk *doc; 112 DocLnk *doc;
112 bool searchVisible; 113 bool searchVisible;
113 bool bFromDocView; 114 bool bFromDocView;
114 int viewSelection; 115 int viewSelection;
115 QAction *zin, *zout; 116 QAction *zin, *zout;
116 QString currentFileName; 117 QString currentFileName;
117}; 118};
118 119
119#endif 120#endif