|
|
/*************************************************************************** kprefkdeview.h - description ------------------- begin : Tue May 23 20:58:03 EEST 2000 copyright : (C) 2000 by Azarniy I.V. email : azarniy@usa.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 KPREFKDEVIEW_H #define KPREFKDEVIEW_H #ifdef HAVE_CONFIG_H #include <config.h> #endif // include files for Qt #include <qwidget.h> class KprefkdeDoc; /** The KprefkdeView class provides the view widget for the KprefkdeApp instance. * The View instance inherits QWidget as a base class and represents the view object of a KTMainWindow. As KprefkdeView is part of the * docuement-view model, it needs a reference to the document object connected with it by the KprefkdeApp class to manipulate and display * the document structure provided by the KprefkdeDoc class. * * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team. * @version KDevelop version 0.4 code generation */ class KprefkdeView : public QWidget { Q_OBJECT public: /** Constructor for the main view */ KprefkdeView(QWidget *parent = 0, const char *name=0); /** Destructor for the main view */ ~KprefkdeView(); /** returns a pointer to the document connected to the view instance. Mind that this method requires a KprefkdeApp instance as a parent * widget to get to the window document pointer by calling the KprefkdeApp::getDocument() method. * * @see KprefkdeApp#getDocument */ KprefkdeDoc *getDocument() const; /** contains the implementation for printing functionality */ void print(QPrinter *pPrinter); private: }; #endif // KPREFKDEVIEW_H
Generated by: root@aiv1 on Tue May 23 20:58:09 2000, using kdoc 2.0a35. |