|
|
/*************************************************************************** kfilecoderview.h - description ------------------- begin : lun mar 13 18:02:59 CET 2000 copyright : (C) 2000 by François Dupoux email : fdupoux@voila.fr ***************************************************************************/ /*************************************************************************** * * * 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 KFILECODERVIEW_H #define KFILECODERVIEW_H #ifdef HAVE_CONFIG_H #include <config.h> #endif // include files for Qt #include <qwidget.h> class KFileCoderDoc; /** The KFileCoderView class provides the view widget for the KFileCoderApp instance. * The View instance inherits QWidget as a base class and represents the view object of a KTMainWindow. As KFileCoderView is part of the * docuement-view model, it needs a reference to the document object connected with it by the KFileCoderApp class to manipulate and display * the document structure provided by the KFileCoderDoc class. * * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team. * @version KDevelop version 0.4 code generation */ class KFileCoderView : public QWidget { Q_OBJECT public: /** Constructor for the main view */ KFileCoderView(QWidget *parent = 0, const char *name=0); /** Destructor for the main view */ ~KFileCoderView(); /** returns a pointer to the document connected to the view instance. Mind that this method requires a KFileCoderApp instance as a parent * widget to get to the window document pointer by calling the KFileCoderApp::getDocument() method. * * @see KFileCoderApp#getDocument */ KFileCoderDoc *getDocument() const; /** contains the implementation for printing functionality */ void print(QPrinter *pPrinter); private: }; #endif // KFILECODERVIEW_H
Generated by: root@celeron433 on Mon Mar 13 18:03:01 2000, using kdoc 2.0a35. |