Source: /app/hbasic/hbasic/dialogs/dlg_error_msg.h
|
|
|
|
/* **************************************************************************
File: dlg_error_msg.h
Desc: Display error message in HTML widget
----------------------------------------------------------------------------
copyright : (C) 2001 HBasic project (Marcus Engels)
***************************************************************************/
/* **************************************************************************
* *
* 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. *
* *
***************************************************************************/
/* ----------------------------------------------------------------------- */
/* Classlist: List of classes that will be defined in this source file. */
/* ----------------------------------------------------------------------- */
/*
Class dlgErrorMsg : This class displays and error message as HTML widget.
*/
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef HTML_ERROR_H
#define HTML_ERROR_H
#include
#include
class QPushButton;
class QWidget;
class QTextBrowser;
#include
#include "../src/structs.h"
/* ###################################################################### */
/**
* Main widget to display the error message.
*/
class dlgErrorMsg : public QDialog
{
Q_OBJECT
public:
dlgErrorMsg( QWidget *parent, char *error_path, short display_type );
private:
short display_type;
QPushButton *btn_ok;
QTextBrowser *msg_widget;
QWidget *header_widget;
void resizeEvent( QResizeEvent *evt );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |