Source: /app/hbasic/hbasic/gui_db_access/report_display_widget.h
|
|
|
|
#include
class CReportDocument;
class CReportPreviewWidget;
/**
* @short Widget that will be used to display the result a report.
*
* Class CReportDisplayWidget : When you want to preview the result of
* a database report on the screen this widget will used to display it.
*/
class CReportDisplayWidget : public QScrollView
{
public: /* methods */
CReportDisplayWidget( CReportPreviewWidget *parent,
CReportDocument *new_report_desc );
void setDisplayMode( bool fullpage );
private:
bool fullpage_preview;
CReportDocument *rep_desc_ptr;
CReportPreviewWidget *rep_window_ptr;
private: /* methods */
void drawContents( QPainter *p, int x, int y, int w, int h );
};
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |