vtkWin32OutputWindow.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00043 #ifndef __vtkWin32OutputWindow_h
00044 #define __vtkWin32OutputWindow_h
00045
00046 #include "vtkOutputWindow.h"
00047
00048
00049 class VTK_COMMON_EXPORT vtkWin32OutputWindow : public vtkOutputWindow
00050 {
00051 public:
00052
00053 vtkTypeRevisionMacro(vtkWin32OutputWindow,vtkOutputWindow);
00054 void PrintSelf(ostream& os, vtkIndent indent);
00055
00057
00058 static vtkWin32OutputWindow* New();
00059
00060
00061 virtual void DisplayText(const char*);
00062
00063 static LRESULT APIENTRY WndProc(HWND hWnd, UINT message,
00064 WPARAM wParam, LPARAM lParam);
00065
00067 protected:
00068 vtkWin32OutputWindow() {};
00069 virtual ~vtkWin32OutputWindow() {};
00070
00071 void PromptText(const char* text);
00072 static void AddText(const char*);
00073 static int Initialize();
00074 static HWND OutputWindow;
00075 private:
00076 vtkWin32OutputWindow(const vtkWin32OutputWindow&);
00077 void operator=(const vtkWin32OutputWindow&);
00078 };
00079
00080
00081
00082 #endif