# Calculate **Repository Path**: masonwu21/Calculate ## Basic Information - **Project Name**: Calculate - **Description**: No description available - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-19 - **Last Updated**: 2026-05-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Calculate A Windows desktop calculator project based on Core UI. ## Project Overview This project includes multiple Windows desktop calculator applications developed using the Core UI framework. ## Project Structure ``` Calculate/ ├── GLMCalc/ # GLM Series Calculator │ ├── main.cpp │ ├── GLMCalc.uix │ └── CMakeLists.txt ├── KimiCalc/ # Kimi Series Calculator │ ├── main.cpp │ ├── KimiCalc.uix │ └── CMakeLists.txt ├── QwenCalc/ # Qwen Series Calculator │ ├── main.cpp │ ├── QwenCalc.uix │ └── CMakeLists.txt ├── core-ui-1.5.0.42/ # Core UI Framework │ ├── include/ # Header files │ ├── src/ # Source code │ ├── docs/ # Documentation │ ├── demo/ # Examples │ └── website/ # Documentation website └── LICENSE ``` ## Technology Stack - **UI Framework**: Core UI (v1.5.0.42) - **Programming Language**: C/C++ - **Target Platform**: Windows - **Build Tool**: CMake + MSVC/Clang-cl - **UI Format**: `.uix` Single-file Components ## Features - Lightweight Windows desktop application - Single-file UI components (`.uix`) - Pure C API, supporting multi-language invocation - Built-in theme support - Modern UI design ## Quick Start ### Prerequisites - Windows 10/11 - Visual Studio 2022 or clang-cl - CMake 3.20+ ### Build Steps ```bash # Navigate to project directory cd GLMCalc # or KimiCalc / QwenCalc # Create build directory mkdir build && cd build # Configure project cmake -B build -G "Ninja Multi-Config" # Build cmake --build build --config Release ``` ## Documentation Refer to the `core-ui-1.5.0.42/` directory for detailed documentation: - [Getting Started](core-ui-1.5.0.42/docs/getting-started.md) - [Controls Reference](core-ui-1.5.0.42/docs/controls.md) - [Layout System](core-ui-1.5.0.42/docs/layout.md) - [C API Documentation](core-ui-1.5.0.42/docs/c-api.md) - [Design System](core-ui-1.5.0.42/docs/design-system.md) ## License This project is open-sourced under the MIT License.