VR-Forces 4.2 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
tmqt
tmOutputAreaWidget.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: tmOutputAreaWidget.h,v $ $Revision: 1.2 $ $State: Exp $
7
*******************************************************************************/
8
9
#ifndef tmOutputAreaWidget_H_
10
#define tmOutputAreaWidget_H_
11
14
16
17
#include "tmqt/ui_tmOutputAreaWidgetUi.h"
18
#include "
tmqt/baseWindow.h
"
19
21
class
DtOutputAreaWidget
:
public
QWidget
22
{
23
Q_OBJECT
24
25
public
:
26
27
DtOutputAreaWidget
(
QWidget
* parent = NULL,
const
Qt::WindowFlags& flags = 0);
28
29
virtual
~DtOutputAreaWidget
();
30
31
static
DtOutputAreaWidget
*
create
(
QWidget
* parent = NULL,
32
const
Qt::WindowFlags& flags = 0);
33
35
virtual
bool
init
(
DtBaseWindow
* owner);
36
37
virtual
bool
message
(
const
QString& msg);
38
41
void
setProcessEvents
(
bool
);
42
bool
processEvents
()
const
;
43
44
public
:
45
Ui::outputAreaUi
myUiImpl
;
46
bool
myProcessEvents
;
47
};
48
49
inline
void
DtOutputAreaWidget::setProcessEvents
(
bool
b)
50
{
51
myProcessEvents
= b;
52
}
53
54
inline
bool
DtOutputAreaWidget::processEvents
()
const
55
{
56
return
myProcessEvents
;
57
}
58
59
60
#endif
61
Document ID: Generated on Sun Nov 24 19:49:21 EST 2013 from SVN revision 133924
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)