|
|
/*************************************************************************** cdbakeovenview.h - description ------------------- begin : Fri May 18 23:05:50 EDT 2001 copyright : (C) 2001 by Alex Podolsky email : alexpod@sourceforge.net ***************************************************************************/ /*************************************************************************** * * * 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 CDBAKEOVENVIEW_H #define CDBAKEOVENVIEW_H #ifdef HAVE_CONFIG_H #include <config.h> #endif // include files for Qt #include <qwidget.h> class CDBakeOvenDoc; /** The CDBakeOvenView class provides the view widget for the CDBakeOvenApp instance. * The View instance inherits QWidget as a base class and represents the view object of a KTMainWindow. As CDBakeOvenView is part of the * docuement-view model, it needs a reference to the document object connected with it by the CDBakeOvenApp class to manipulate and display * the document structure provided by the CDBakeOvenDoc class. * * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team. * @version KDevelop version 0.4 code generation */ class CDBakeOvenView : public QWidget { Q_OBJECT public: /** Constructor for the main view */ CDBakeOvenView(QWidget *parent = 0, const char *name=0); /** Destructor for the main view */ ~CDBakeOvenView(); /** returns a pointer to the document connected to the view instance. Mind that this method requires a CDBakeOvenApp instance as a parent * widget to get to the window document pointer by calling the CDBakeOvenApp::getDocument() method. * * @see CDBakeOvenApp#getDocument */ CDBakeOvenDoc *getDocument() const; /** contains the implementation for printing functionality */ void print(QPrinter *pPrinter); private: }; #endif // CDBAKEOVENVIEW_H
Generated by: shlomo@localhost.localdomain on Fri May 18 23:06:17 2001, using kdoc 2.0a53. |