home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- ** $Id: qt/application.h 3.0.0 edited Jun 22 13:24 $
- **
- ** Copyright (C) 1992-2000 Trolltech AS. 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 APPLICATION_H
- #define APPLICATION_H
-
- #include <qmainwindow.h>
-
- class QTextEdit;
-
- class ApplicationWindow: public QMainWindow
- {
- Q_OBJECT
-
- public:
- ApplicationWindow();
- ~ApplicationWindow();
-
- protected:
- void closeEvent( QCloseEvent* );
-
- private slots:
- void newDoc();
- void choose();
- void load( const QString &fileName );
- void save();
- void saveAs();
- void print();
-
- void about();
- void aboutQt();
-
- private:
- QPrinter *printer;
- QTextEdit *e;
- QString filename;
- };
-
-
- #endif
-