From 40722c098d11d01dec727d1c1cbf507e54de7255 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 21 Oct 2018 09:29:06 +0200 Subject: add qtimgui renderer library --- 3rdparty/qtimgui/demo-widget/demo-widget.cpp | 85 ++++++++++++++++++++++++++++ 3rdparty/qtimgui/demo-widget/demo-widget.pro | 8 +++ 2 files changed, 93 insertions(+) create mode 100644 3rdparty/qtimgui/demo-widget/demo-widget.cpp create mode 100644 3rdparty/qtimgui/demo-widget/demo-widget.pro (limited to '3rdparty/qtimgui/demo-widget') diff --git a/3rdparty/qtimgui/demo-widget/demo-widget.cpp b/3rdparty/qtimgui/demo-widget/demo-widget.cpp new file mode 100644 index 00000000..f0c44bef --- /dev/null +++ b/3rdparty/qtimgui/demo-widget/demo-widget.cpp @@ -0,0 +1,85 @@ +#include +#include +#include +#include +#include +#include +#include + +class DemoWindow : public QOpenGLWidget, private QOpenGLExtraFunctions +{ +protected: + void initializeGL() override + { + initializeOpenGLFunctions(); + QtImGui::initialize(this); + } + void paintGL() override + { + QtImGui::newFrame(); + + // 1. Show a simple window + // Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug" + { + static float f = 0.0f; + ImGui::Text("Hello, world!"); + ImGui::SliderFloat("float", &f, 0.0f, 1.0f); + ImGui::ColorEdit3("clear color", (float*)&clear_color); + if (ImGui::Button("Test Window")) show_test_window ^= 1; + if (ImGui::Button("Another Window")) show_another_window ^= 1; + ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); + } + + // 2. Show another simple window, this time using an explicit Begin/End pair + if (show_another_window) + { + ImGui::SetNextWindowSize(ImVec2(200,100), ImGuiSetCond_FirstUseEver); + ImGui::Begin("Another Window", &show_another_window); + ImGui::Text("Hello"); + ImGui::End(); + } + + // 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow() + if (show_test_window) + { + ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver); + ImGui::ShowTestWindow(); + } + + // Do render before ImGui UI is rendered + glViewport(0, 0, width(), height()); + glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w); + glClear(GL_COLOR_BUFFER_BIT); + + ImGui::Render(); + } + +private: + bool show_test_window = true; + bool show_another_window = false; + ImVec4 clear_color = ImColor(114, 144, 154); +}; + +int main(int argc, char *argv[]) +{ + // Use OpenGL 3 Core Profile + QSurfaceFormat glFormat; + glFormat.setVersion(3, 3); + glFormat.setProfile(QSurfaceFormat::CoreProfile); + QSurfaceFormat::setDefaultFormat(glFormat); + + QApplication a(argc, argv); + + // Show window + DemoWindow w; + w.setWindowTitle("QtImGui widget example"); + w.resize(1280, 720); + w.show(); + + // Update at 60 fps + QTimer timer; + QObject::connect(&timer, SIGNAL(timeout()), &w, SLOT(update())); + timer.start(16); + + return a.exec(); +} diff --git a/3rdparty/qtimgui/demo-widget/demo-widget.pro b/3rdparty/qtimgui/demo-widget/demo-widget.pro new file mode 100644 index 00000000..d3492da9 --- /dev/null +++ b/3rdparty/qtimgui/demo-widget/demo-widget.pro @@ -0,0 +1,8 @@ +QT += core gui widgets +TARGET = demo-widget +TEMPLATE = app + +include(../qtimgui.pri) + +SOURCES += \ + demo-widget.cpp -- cgit v1.2.3