You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qt3/examples/textedit/textedit.h

83 lines
1.7 KiB

/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef TEXTEDIT_H
#define TEXTEDIT_H
#include <qmainwindow.h>
#include <qmap.h>
class QAction;
class QComboBox;
class QTabWidget;
class QTextEdit;
class TextEdit : public QMainWindow
{
Q_OBJECT
public:
TextEdit( QWidget *parent = 0, const char *name = 0 );
private:
void setupFileActions();
void setupEditActions();
void setupTextActions();
void load( const QString &f );
QTextEdit *currentEditor() const;
void doConnections( QTextEdit *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 QString &f );
void textSize( const QString &p );
void textColor();
void textAlign( QAction *a );
void fontChanged( const QFont &f );
void colorChanged( const QColor &c );
void alignmentChanged( int a );
void editorChanged( QWidget * );
private:
QAction *actionTextBold,
*actionTextUnderline,
*actionTextItalic,
*actionTextColor,
*actionAlignLeft,
*actionAlignCenter,
*actionAlignRight,
*actionAlignJustify;
QComboBox
*comboFont,
*comboSize;
QTabWidget *tabWidget;
QMap<QTextEdit*, QString> filenames;
};
#endif