dox/Common/vtkWin32OutputWindow.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00034
#ifndef __vtkWin32OutputWindow_h
00035
#define __vtkWin32OutputWindow_h
00036
00037
#include "vtkOutputWindow.h"
00038
00039
00040 class VTK_COMMON_EXPORT vtkWin32OutputWindow :
public vtkOutputWindow
00041 {
00042
public:
00043
00044 vtkTypeRevisionMacro(vtkWin32OutputWindow,
vtkOutputWindow);
00046
00047
static vtkWin32OutputWindow*
New();
00048
00049
00050
virtual void DisplayText(
const char*);
00051
00052
static LRESULT APIENTRY WndProc(HWND hWnd, UINT message,
00053 WPARAM wParam, LPARAM lParam);
00054
00056
protected:
00057 vtkWin32OutputWindow() {};
00058 virtual ~vtkWin32OutputWindow() {};
00059
00060
void PromptText(
const char* text);
00061
static void AddText(
const char*);
00062
static int Initialize();
00063 static HWND OutputWindow;
00064
private:
00065 vtkWin32OutputWindow(
const vtkWin32OutputWindow&);
00066
void operator=(
const vtkWin32OutputWindow&);
00067 };
00068
00069
00070
00071
#endif