![]() |
Home · All Namespaces · All Classes · Main Classes · Grouped Classes · Modules · Functions |
/**************************************************************************** ** ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the example classes of the Qt Toolkit. ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #ifndef MENUS_H #define MENUS_H #include <QMainWindow> class QTextEdit; class QMenus : public QMainWindow { Q_OBJECT public: QMenus(QWidget *parent = 0); public slots: void fileOpen(); void fileSave(); void editNormal(); void editBold(); void editUnderline(); void editAdvancedFont(); void editAdvancedStyle(); void helpAbout(); void helpAboutQt(); private: QTextEdit *editor; }; #endif // MENUS_H
Copyright © 2008 Nokia | Trademarks | Qt 4.4.3 |