You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
/***************************************************************************
|
|
xsldbgoutputview.h - Display raw output from xsldbg
|
|
-------------------
|
|
begin : Sat July 27 2002
|
|
copyright : (C) 2002 by keith Isdale
|
|
email : k_isdale@tpg.com.au
|
|
***************************************************************************/
|
|
|
|
/***********************************************************************************
|
|
* *
|
|
* 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 XSLDBGOUTPUTVIEW_H
|
|
#define XSLDBGOUTPUTVIEW_H
|
|
|
|
/**
|
|
*@author Keith Isdale
|
|
*/
|
|
#include <tqtextedit.h>
|
|
#include <tqmessagebox.h>
|
|
|
|
class TQDialog;
|
|
class XsldbgMsgDialogImpl;
|
|
|
|
class XsldbgOutputView : public TQTextEdit {
|
|
Q_OBJECT
|
|
|
|
|
|
public :
|
|
XsldbgOutputView(TQWidget *parent = 0);
|
|
|
|
void showDialog(TQMessageBox::Icon icon, TQString title, TQString msg);
|
|
|
|
public slots:
|
|
/** Process a copy of mesage sent to message window */
|
|
void slotProcShowMessage(TQString msg);
|
|
|
|
/** Clear message view window of its text */
|
|
void slotClearView();
|
|
|
|
private:
|
|
|
|
XsldbgMsgDialogImpl *dlg;
|
|
|
|
};
|
|
|
|
#endif /* XSLDBGOUTPUTVIEW_H */
|