Skip to content
Snippets Groups Projects
Commit a15e0073 authored by Cory Quammen's avatar Cory Quammen Committed by Kitware Robot
Browse files

Merge topic 'add-dpi-api-qvtkopenglwidget'


8ffac38e Add API to set/get the unscaled DPI

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarUtkarsh Ayachit <utkarsh.ayachit@kitware.com>
Merge-request: !5541
parents 09f94de6 8ffac38e
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,15 @@ public:
void setEnableHiDPI(bool enable) { this->VTKOpenGLWindow->setEnableHiDPI(enable); }
bool enableHiDPI() const { return this->VTKOpenGLWindow->enableHiDPI(); }
//@{
/**
* Set/Get unscaled DPI value. Defaults to 72, which is also the default value
* in vtkWindow.
*/
void setUnscaledDPI(int dpi) { this->VTKOpenGLWindow->setUnscaledDPI(dpi); }
int unscaledDPI() const { return this->VTKOpenGLWindow->unscaledDPI(); }
//@}
//@{
/**
* @copydoc QVTKOpenGLWindow::setDefaultCursor()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment