Source: /app/hbasic/hbasic/src/direct_window.h
|
|
|
|
/* **************************************************************************
File: direct_window.h
Desc: Subwindow to display program output messages
----------------------------------------------------------------------------
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 CDirectWindow Display debug messages
*/
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef DIRECTWIN_H
#define DIRECTWIN_H
#include "defines.h"
#include "structs.h"
#include "window_list.h"
class QTextEdit;
class QPushButton;
/**
* Widget to display debug messages and input user commands
*/
class CDirectWindow : public CWindowListChild
{
Q_OBJECT
public:
CDirectWindow( QWidget *parent );
void appendText( char *message );
private:
void closeEvent( QCloseEvent *evt );
QPushButton *btn_ok;
QTextEdit *te_editor;
void resizeEvent( QResizeEvent *evt );
private slots:
void slotBtnOk( void );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |