Skip to content
Snippets Groups Projects
Commit 12477fde authored by Sreekanth Arikatla's avatar Sreekanth Arikatla
Browse files

Merge branch 'minorRefactor' into 'master'

BUG: Fix render window title display

See merge request iMSTK/iMSTK!402
parents 535849ca adaff687
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,6 @@ VTKViewer::VTKViewer(SimulationManager* manager /*= nullptr*/, bool enableVR /*=
m_vtkRenderWindow = vtkSmartPointer<vtkRenderWindow>::New();
m_vtkRenderWindow->SetInteractor(vtkInteractor);
m_vtkRenderWindow->SetSize(1000, 800);
m_vtkRenderWindow->SetSize(1000, 800);
// Screen capture
m_screenCapturer = std::make_shared<VTKScreenCaptureUtility>(m_vtkRenderWindow);
......@@ -169,6 +168,7 @@ VTKViewer::startRenderingLoop()
{
m_vtkRenderWindow->GetInteractor()->Initialize();
m_vtkRenderWindow->GetInteractor()->CreateOneShotTimer(0);
m_vtkRenderWindow->SetWindowName(m_windowName.c_str());
m_vtkRenderWindow->GetInteractor()->Start();
m_vtkRenderWindow->GetInteractor()->DestroyTimer();
}
......@@ -211,6 +211,7 @@ VTKViewer::setBackgroundColors(const Vec3d color1, const Vec3d color2 /*= Vec3d:
void
VTKViewer::setWindowTitle(const std::string& title)
{
m_windowName = title;
if (m_vtkRenderWindow)
{
m_vtkRenderWindow->SetWindowName(title.c_str());
......
......@@ -105,6 +105,9 @@ public:
virtual void setBackgroundColors(const Vec3d color1, const Vec3d color2 = Vec3d::Zero(),
const bool gradientBackground = false) override;
///
/// \brief set the window title
///
virtual void setWindowTitle(const std::string& title);
///
......@@ -115,7 +118,8 @@ public:
protected:
vtkSmartPointer<vtkRenderWindow> m_vtkRenderWindow;
std::shared_ptr<VTKInteractorStyle> m_vtkInteractorStyle;
bool m_enableVR;
bool m_enableVR;
std::string m_windowName = "imstk";
#ifdef iMSTK_ENABLE_VR
vtkSmartPointer<OpenVRCommand> m_openVRCommand;
......
......@@ -87,6 +87,9 @@ public:
///
const std::shared_ptr<Renderer>& getActiveRenderer() const;
///
/// \brief Set a string to be the title for the render window
///
virtual void setWindowTitle(const std::string& title) = 0;
///
......
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