add wip about window to start and main screen
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousDelivery / windows (windows-2022, ) (push) Has been cancelled
ContinuousDelivery / windows (windows-2022, asan) (push) Has been cancelled
ContinuousIntegration / on ubuntu-24.04-arm (push) Has been cancelled
ContinuousIntegration / asan on ubuntu-24.04-arm (push) Has been cancelled
ContinuousIntegration / on ubuntu-latest (push) Has been cancelled
ContinuousIntegration / asan on ubuntu-latest (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / dumpsyms (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled

This commit is contained in:
Green Sky
2025-08-06 20:50:03 +02:00
parent 8e805522d5
commit 2353d57dd3
6 changed files with 82 additions and 0 deletions

54
src/chat_gui/about.cpp Normal file
View File

@@ -0,0 +1,54 @@
#include "./about.hpp"
#include "./version.hpp"
#include <imgui.h>
#include <string>
void ImGuiTomatoAbout(void) {
if (ImGui::BeginTabBar("about")) {
if (ImGui::BeginTabItem("tomato")) {
std::string tomato_version_string {"tomato " TOMATO_VERSION_STR};
if (TOMATO_GIT_DEPTH != 0) {
tomato_version_string += "-" + std::to_string(TOMATO_GIT_DEPTH);
}
if (std::string_view{TOMATO_GIT_COMMIT} != "UNK") {
tomato_version_string += "+git.";
tomato_version_string += TOMATO_GIT_COMMIT;
}
ImGui::TextUnformatted(tomato_version_string.c_str());
ImGui::SameLine();
if (ImGui::SmallButton("click to copy")) {
ImGui::SetClipboardText(tomato_version_string.c_str());
}
ImGui::Separator();
ImGui::TextUnformatted("TODO: tomato license");
ImGui::EndTabItem();
}
if (ImGui::BeginTabItem("imgui")) {
ImGui::ShowAboutWindow();
ImGui::EndTabItem();
}
if (ImGui::BeginTabItem("others")) {
ImGui::TextUnformatted("TODO: list all the other libs and their licenses");
ImGui::EndTabItem();
}
if (ImGui::BeginTabItem("funding")) {
ImGui::TextWrapped("Your Help is needed, to keep the project alive, expand it's features and to inspire new features!");
ImGui::TextLinkOpenURL("https://github.com/sponsors/Green-Sky");
ImGui::TextUnformatted("Contact Me for more ways to help the project. :)");
ImGui::EndTabItem();
}
ImGui::EndTabBar();
}
}

5
src/chat_gui/about.hpp Normal file
View File

@@ -0,0 +1,5 @@
#pragma once
// not a window, just the content
void ImGuiTomatoAbout(void);