summaryrefslogtreecommitdiff
path: root/core/apps/textedit/textedit.h
Unidiff
Diffstat (limited to 'core/apps/textedit/textedit.h') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/textedit.h1
1 files changed, 1 insertions, 0 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
@@ -50,48 +50,49 @@ class TextEdit : public QMainWindow
50 Q_OBJECT 50 Q_OBJECT
51 51
52public: 52public:
53 TextEdit( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 53 TextEdit( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
54 ~TextEdit(); 54 ~TextEdit();
55 QPopupMenu *font; 55 QPopupMenu *font;
56 QAction *nStart; 56 QAction *nStart;
57 bool edited, edited1; 57 bool edited, edited1;
58 void openFile( const QString & ); 58 void openFile( const QString & );
59public slots: 59public slots:
60 void editorChanged(); 60 void editorChanged();
61 61
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();
86 void accept(); 87 void accept();
87 88
88 void newFile( const DocLnk & ); 89 void newFile( const DocLnk & );
89 void openFile( const DocLnk & ); 90 void openFile( const DocLnk & );
90 void showEditTools(); 91 void showEditTools();
91 92
92 void zoomIn(); 93 void zoomIn();
93 void zoomOut(); 94 void zoomOut();
94 void setBold(bool y); 95 void setBold(bool y);
95 void setItalic(bool y); 96 void setItalic(bool y);
96 void setWordWrap(bool y); 97 void setWordWrap(bool y);
97 98