blob: 7b2031f033f4cb0ba6c27c17dd5a6026da96c1cc (
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
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef TEXTEDIT_H
#define TEXTEDIT_H
#include <qmainwindow.h>
#include <qmap.h>
class TQAction;
class TQComboBox;
class TQTabWidget;
class TQTextEdit;
class TextEdit : public TQMainWindow
{
Q_OBJECT
public:
TextEdit( TQWidget *parent = 0, const char *name = 0 );
private:
void setupFileActions();
void setupEditActions();
void setupTextActions();
void load( const TQString &f );
TQTextEdit *currentEditor() const;
void doConnections( TQTextEdit *e );
private slots:
void fileNew();
void fileOpen();
void fileSave();
void fileSaveAs();
void filePrint();
void fileClose();
void fileExit();
void editUndo();
void editRedo();
void editCut();
void editCopy();
void editPaste();
void textBold();
void textUnderline();
void textItalic();
void textFamily( const TQString &f );
void textSize( const TQString &p );
void textColor();
void textAlign( TQAction *a );
void fontChanged( const TQFont &f );
void colorChanged( const TQColor &c );
void alignmentChanged( int a );
void editorChanged( TQWidget * );
private:
TQAction *actionTextBold,
*actionTextUnderline,
*actionTextItalic,
*actionTextColor,
*actionAlignLeft,
*actionAlignCenter,
*actionAlignRight,
*actionAlignJustify;
TQComboBox
*comboFont,
*comboSize;
TQTabWidget *tabWidget;
TQMap<TQTextEdit*, TQString> filenames;
};
#endif
|