blob: fd6597fd996ce54368a941adc4bdb64880429afa (
plain)
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
|
/***************************************************************************
multilineeditdlg.h - description
-------------------
begin : Sam Jan 11 2003
copyright : (C) 2003 by Dominik Seichter
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef MULTILINEEDITDLG_H
#define MULTILINEEDITDLG_H
#include <tqwidget.h>
#include "documentitem.h"
class TDEActionCollection;
class TDEToggleAction;
class TDEFontAction;
class TDEFontSizeAction;
class TDEToolBar;
class KSpell;
class KSpellConfig;
class DSTextEdit;
class TokenProvider;
class MultiLineEditor : public TQWidget {
TQ_OBJECT
public:
MultiLineEditor( TokenProvider* token, TQWidget *parent=0, const char *name=0);
~MultiLineEditor();
TQString text();
void setText( const TQString & t );
private slots:
void setupActions();
void updateActions();
void spellCheckDone(const TQString & buffer);
void save();
void updateFont();
void updateCharFmt();
void updateAligment();
void formatColor();
void checkSpelling();
void setAlignLeft( bool yes );
void setAlignRight( bool yes );
void setAlignCenter( bool yes );
void setAlignJustify( bool yes );
void insertNewField();
protected:
TokenProvider* m_token;
DSTextEdit* editor;
TDEActionCollection* ac;
TDEToggleAction *action_bold;
TDEToggleAction *action_italic;
TDEToggleAction *action_underline;
TDEFontAction *action_font;
TDEFontSizeAction *action_font_size;
TDEToggleAction *action_align_left;
TDEToggleAction *action_align_right;
TDEToggleAction *action_align_center;
TDEToggleAction *action_align_justify;
TDEToolBar* toolBar;
TDEToolBar* tool2Bar;
TDEToolBar* tool3Bar;
KSpell* spell;
};
#endif
|