1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkHardwareWindow.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkWin32HardwareWindow
* @brief represents a window in a windows GUI
*/
#ifndef vtkWin32HardwareWindow_h
#define vtkWin32HardwareWindow_h
#include "vtkHardwareWindow.h"
#include "vtkRenderingUIModule.h" // For export macro
#include "vtkWindows.h" // For windows API
VTK_ABI_NAMESPACE_BEGIN
class VTKRENDERINGUI_EXPORT vtkWin32HardwareWindow : public vtkHardwareWindow
{
public:
static vtkWin32HardwareWindow* New();
vtkTypeMacro(vtkWin32HardwareWindow, vtkHardwareWindow);
void PrintSelf(ostream& os, vtkIndent indent) override;
HINSTANCE GetApplicationInstance();
HWND GetWindowId();
void Create() override;
void Destroy() override;
///@{
/**
* These are window system independent methods that are used
* to help interface vtkWindow to native windowing systems.
*/
void SetDisplayId(void*) override;
void SetWindowId(void*) override;
void SetParentId(void*) override;
void* GetGenericDisplayId() override;
void* GetGenericWindowId() override;
void* GetGenericParentId() override;
///@}
///@{
/**
* Set the size of the window in pixels.
*/
void SetSize(int, int) override;
using vtkHardwareWindow::SetSize;
///@}
///@{
/**
* Set the position of the window.
*/
void SetPosition(int, int) override;
using vtkHardwareWindow::SetPosition;
///@}
protected:
vtkWin32HardwareWindow();
~vtkWin32HardwareWindow() override;
HWND ParentId;
HWND WindowId;
HINSTANCE ApplicationInstance;
private:
vtkWin32HardwareWindow(const vtkWin32HardwareWindow&) = delete;
void operator=(const vtkWin32HardwareWindow&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|