From bc22832ad61f3b89b1e41729bbf9e103dbc7c10b Mon Sep 17 00:00:00 2001 From: brunoherbelin Date: Mon, 22 Mar 2021 13:35:17 +0100 Subject: [PATCH] information on tinyfiledialog in about. --- UserInterfaceManager.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/UserInterfaceManager.cpp b/UserInterfaceManager.cpp index 444b11e..4da5791 100644 --- a/UserInterfaceManager.cpp +++ b/UserInterfaceManager.cpp @@ -3125,7 +3125,7 @@ void UserInterface::RenderAbout(bool* p_open) ImGui::Separator(); ImGui::Text("vimix performs graphical mixing and blending of\nseveral movie clips and computer generated graphics,\nwith image processing effects in real-time."); - ImGui::Text("\nvimix is licensed under the GNU GPL version 3.\nCopyright 2019-2020 Bruno Herbelin."); + ImGui::Text("\nvimix is licensed under the GNU GPL version 3.\nCopyright 2019-2021 Bruno Herbelin."); ImGui::Spacing(); ImGuiToolkit::ButtonOpenUrl("https://brunoherbelin.github.io/vimix/", ImVec2(ImGui::GetContentRegionAvail().x, 0)); @@ -3134,10 +3134,13 @@ void UserInterface::RenderAbout(bool* p_open) ImGui::Spacing(); ImGui::Text("\nvimix is built using the following libraries:"); + tinyfd_inputBox("tinyfd_query", NULL, NULL); + ImGui::Text("- Tinyfiledialogs v%s mode '%s'", tinyfd_version, tinyfd_response); + ImGui::Columns(3, "abouts"); ImGui::Separator(); - ImGui::Text("Dear ImGui"); + ImGui::Text("- Dear ImGui"); ImGui::PushID("dearimguiabout"); if ( ImGui::Button("More info", ImVec2(ImGui::GetContentRegionAvail().x, 0))) show_imgui_about = true; @@ -3145,7 +3148,7 @@ void UserInterface::RenderAbout(bool* p_open) ImGui::NextColumn(); - ImGui::Text("GStreamer"); + ImGui::Text("- GStreamer"); ImGui::PushID("gstreamerabout"); if ( ImGui::Button("More info", ImVec2(ImGui::GetContentRegionAvail().x, 0))) show_gst_about = true; @@ -3153,7 +3156,7 @@ void UserInterface::RenderAbout(bool* p_open) ImGui::NextColumn(); - ImGui::Text("OpenGL"); + ImGui::Text("- OpenGL"); ImGui::PushID("openglabout"); if ( ImGui::Button("More info", ImVec2(ImGui::GetContentRegionAvail().x, 0))) show_opengl_about = true;