-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathnoteedit.h
347 lines (315 loc) · 9.61 KB
/
noteedit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/***************************************************************************
* Copyright (C) 2003 by Sébastien Laoût *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef NOTEEDIT_H
#define NOTEEDIT_H
#include <KDE/KDialog>
#include <KDE/KLineEdit>
#include "notecontent.h"
class QGraphicsProxyWidget;
class QWidget;
class QPushButton;
class QKeyEvent;
class QFontComboBox;
class QTextCharFormat;
class KIconButton;
class KUrlRequester;
class KTextEdit;
class KToggleAction;
class KToolBar;
class KAction;
class KActionCollection;
class KComboBox;
class KColorCombo;
class FontSizeCombo;
class Note;
class RunCommandRequester;
class FocusWidgetFilter;
class BasketListViewItem;
/** The base class for every note editor.
* Scenario:
* The Basket class calls NoteEditor::editNoteContent() with the NoteContent to edit.
* This method create the good child NoteEditor depending
* on the note content type and return it to the Basket.
* This custom NoteEditor have two choices regarding what to do in its constructor:
* - Display a dialog and then call cancel() if the user canceled the dialog;
* - Create an inline editor and call setInlineEditor() with that editor as parameter.
* When the user exit the edition, validate() is called by the Basket.
* You should then call setEmpty() is the user cleared the content.
* The custom editor SHOULD call the NoteEditor constructor.
* If the user cleared the content OR if the user canceled the dialog whereas he/she
* JUST ADDED the note, then the note will be deleted by the Basket.
*/
class NoteEditor : public QObject
{
Q_OBJECT
public:
NoteEditor(NoteContent *noteContent);
virtual ~NoteEditor();
bool isEmpty() {
return m_isEmpty;
}
bool canceled() {
return m_canceled;
}
bool isInline() {
return m_widget != 0;
}
QGraphicsProxyWidget* graphicsWidget() {
return m_widget;
}
KTextEdit* textEdit() {
return m_textEdit;
}
KLineEdit* lineEdit() {
return m_lineEdit;
}
void setCursorTo(const QPointF &pos);
void connectActions(BasketScene *scene);
void startSelection(const QPointF &pos);
void updateSelection(const QPointF &pos);
void endSelection(const QPointF &pos);
void paste(const QPointF &pos);
private:
bool m_isEmpty;
bool m_canceled;
QGraphicsProxyWidget *m_widget;
KTextEdit *m_textEdit;
KLineEdit *m_lineEdit;
NoteContent *m_noteContent;
public:
NoteContent* noteContent() {
return m_noteContent;
}
Note* note();
protected:
void setEmpty() {
m_isEmpty = true;
}
void cancel() {
m_canceled = true;
}
void setInlineEditor(QWidget *inlineEditor);
public:
virtual void validate() {}
virtual void autoSave(bool /*toFileToo*/) {} // Same as validate(), but does not precede editor close and is triggered either while the editor widget changed size or after 3 seconds of inactivity.
signals:
void askValidation();
void mouseEnteredEditorWidget();
public:
static NoteEditor* editNoteContent(NoteContent *noteContent, QWidget *parent);
};
class TextEditor : public NoteEditor
{
Q_OBJECT
public:
TextEditor(TextContent *textContent, QWidget *parent);
~TextEditor();
void validate();
void autoSave(bool toFileToo);
protected:
TextContent *m_textContent;
};
class HtmlEditor : public NoteEditor
{
Q_OBJECT
public:
HtmlEditor(HtmlContent *htmlContent, QWidget *parent);
~HtmlEditor();
void validate();
void autoSave(bool toFileToo);
protected:
HtmlContent *m_htmlContent;
public slots:
void cursorPositionChanged();
void editTextChanged();
void charFormatChanged(const QTextCharFormat &format);
protected slots:
void setBold(bool isChecked);
void setLeft();
void setCentered();
void setRight();
void setBlock();
};
class ImageEditor : public NoteEditor
{
Q_OBJECT
public:
ImageEditor(ImageContent *imageContent, QWidget *parent);
};
class AnimationEditor : public NoteEditor
{
Q_OBJECT
public:
AnimationEditor(AnimationContent *animationContent, QWidget *parent);
};
class FileEditor : public NoteEditor
{
Q_OBJECT
public:
FileEditor(FileContent *fileContent, QWidget *parent);
~FileEditor();
void validate();
void autoSave(bool toFileToo);
protected:
FileContent *m_fileContent;
};
class LinkEditor : public NoteEditor
{
Q_OBJECT
public:
LinkEditor(LinkContent *linkContent, QWidget *parent);
};
class CrossReferenceEditor : public NoteEditor
{
Q_OBJECT
public:
CrossReferenceEditor(CrossReferenceContent *crossReferenceContent, QWidget *parent);
};
class LauncherEditor : public NoteEditor
{
Q_OBJECT
public:
LauncherEditor(LauncherContent *launcherContent, QWidget *parent);
};
class ColorEditor : public NoteEditor
{
Q_OBJECT
public:
ColorEditor(ColorContent *colorContent, QWidget *parent);
};
class UnknownEditor : public NoteEditor
{
Q_OBJECT
public:
UnknownEditor(UnknownContent *unknownContent, QWidget *parent);
};
/** KLineEdit behavior:
* Create a new KLineEdit with a text, then the user select a part of it and press ONE letter key.
* The signal editTextChanged() is not emitted!
* This class correct that!
*/
class DebuggedLineEdit : public KLineEdit
{
Q_OBJECT
public:
explicit DebuggedLineEdit(const QString &text, QWidget *parent = 0);
~DebuggedLineEdit();
protected:
void keyPressEvent(QKeyEvent *event);
};
/** The dialog to edit Link Note content.
* @author Sébastien Laoût
*/
class LinkEditDialog : public KDialog
{
Q_OBJECT
public:
explicit LinkEditDialog(LinkContent *contentNote, QWidget *parent = 0);
~LinkEditDialog();
void ensurePolished();
protected slots:
void slotOk();
void urlChanged(const QString&);
void doNotAutoTitle(const QString&);
void doNotAutoIcon(QString);
void guessTitle();
void guessIcon();
private:
LinkContent *m_noteContent;
bool m_isAutoModified;
KUrlRequester *m_url;
KLineEdit *m_title;
KIconButton *m_icon;
QPushButton *m_autoTitle;
QPushButton *m_autoIcon;
};
/** The dialog to edit cross reference content.
* @author Brian C. Milco
*/
class CrossReferenceEditDialog : public KDialog
{
Q_OBJECT
public:
explicit CrossReferenceEditDialog(CrossReferenceContent *contentNote, QWidget *parent = 0);
~CrossReferenceEditDialog();
protected slots:
void slotOk();
void urlChanged(const int index);
protected:
void generateBasketList(KComboBox *targetList, BasketListViewItem *item = 0, int indent = 0);
private:
CrossReferenceContent *m_noteContent;
KComboBox *m_targetBasket;
};
/** The dialog to edit Launcher Note content.
* @author Sébastien Laoût
*/
class LauncherEditDialog : public KDialog
{
Q_OBJECT
public:
explicit LauncherEditDialog(LauncherContent *contentNote, QWidget *parent = 0);
~LauncherEditDialog();
void ensurePolished();
protected slots:
void slotOk();
void guessIcon();
private:
LauncherContent *m_noteContent;
RunCommandRequester *m_command;
KLineEdit *m_name;
KIconButton *m_icon;
};
/** This class manage toolbars for the inline editors.
* The toolbars should be created once at the application startup,
* then KXMLGUI can manage them and save theire state and position...
* @author Sébastien Laoût
*/
class InlineEditors : public QObject
{
Q_OBJECT
public:
InlineEditors();
~InlineEditors();
void initToolBars(KActionCollection *ac);
static InlineEditors* instance();
public:
// Rich Text ToolBar:
KToolBar* richTextToolBar();
void enableRichTextToolBar();
void disableRichTextToolBar();
QPalette palette() const;
QFontComboBox *richTextFont;
FontSizeCombo *richTextFontSize;
KColorCombo *richTextColor;
KToggleAction *richTextBold;
KToggleAction *richTextItalic;
KToggleAction *richTextUnderline;
// KToggleAction *richTextSuper;
// KToggleAction *richTextSub;
KToggleAction *richTextLeft;
KToggleAction *richTextCenter;
KToggleAction *richTextRight;
KToggleAction *richTextJustified;
KAction *richTextUndo;
KAction *richTextRedo;
FocusWidgetFilter *focusWidgetFilter;
};
#endif // NOTEEDIT_H