Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df99c78998 | ||
|
|
dffca3afef | ||
|
|
4f8fa3272b | ||
|
|
96c8403f3b | ||
|
|
3e621219f1 | ||
|
|
e0969041a7 | ||
|
|
c4a62e8fb6 | ||
|
|
9a22597d4e | ||
|
|
e90e9b5abf | ||
|
|
92d8b62820 | ||
|
|
7ee930693e | ||
|
|
8e98c208c9 | ||
|
|
ce1e40a12d | ||
|
|
80bc50e54c | ||
|
|
1c66adb646 | ||
|
|
4c649f727f | ||
|
|
18f234105d | ||
|
|
186480dcf5 | ||
|
|
dd974c684a | ||
|
|
8c56d489af | ||
|
|
d7910f1631 | ||
|
|
68214db744 | ||
|
|
6c8146e79c | ||
|
|
aa812b0da7 | ||
|
|
3840ea9f62 | ||
|
|
7ce7260305 | ||
|
|
48adcf33ee | ||
|
|
21e7a39c53 | ||
|
|
f126f4b55c | ||
|
|
4daf5cfc65 | ||
|
|
0990049241 | ||
|
|
6d5133e1bd | ||
|
|
9d88b74c04 | ||
|
|
49ee12f5a1 | ||
|
|
ac3cebc9ae | ||
|
|
8f83b0c8d9 | ||
|
|
ac1deac148 | ||
|
|
b28adf8cbe | ||
|
|
317df68d1f | ||
|
|
fce69b8be9 | ||
|
|
f3ea7f12a3 | ||
|
|
30f0134748 | ||
|
|
a89748be67 | ||
|
|
4b4b7d68f2 | ||
|
|
793fdd9366 | ||
|
|
27cc3a3bb2 | ||
|
|
c1c23d115a | ||
|
|
f54c2e9bcd | ||
|
|
ae9928782d | ||
|
|
2485ffb14f | ||
|
|
eadcdd7f10 |
@@ -1 +1,5 @@
|
||||
/build/
|
||||
/dist/
|
||||
/.flatpak-builder/
|
||||
/build-doc-tool/
|
||||
/docs/USER_GUIDE.pdf
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
cmake_minimum_required(VERSION 3.21)
|
||||
|
||||
project(OrbitHub VERSION 0.1.0 LANGUAGES CXX)
|
||||
project(OrbitHub VERSION 2026.9.15 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
@@ -10,6 +10,8 @@ set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
find_package(Qt6 6.2 REQUIRED COMPONENTS Widgets Sql)
|
||||
|
||||
qt_standard_project_setup()
|
||||
@@ -40,7 +42,8 @@ set(CHANNEL_DISP ON CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_DISP_CLIENT ON CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_AINPUT OFF CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_AUDIN OFF CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_CLIPRDR OFF CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_CLIPRDR ON CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_CLIPRDR_CLIENT ON CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_DRIVE OFF CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_ECHO OFF CACHE BOOL "" FORCE)
|
||||
set(CHANNEL_ENCOMSP OFF CACHE BOOL "" FORCE)
|
||||
@@ -75,12 +78,21 @@ set(WITH_WINPR_TOOLS OFF CACHE BOOL "" FORCE)
|
||||
|
||||
add_subdirectory(third_party/FreeRDP EXCLUDE_FROM_ALL)
|
||||
|
||||
add_executable(orbithub
|
||||
set(ORBITHUB_SOURCES
|
||||
src/about_dialog.cpp
|
||||
src/about_dialog.h
|
||||
src/user_guide_dialog.cpp
|
||||
src/user_guide_dialog.h
|
||||
docs/user_guide.qrc
|
||||
src/app_icon.cpp
|
||||
src/app_icon.h
|
||||
src/main.cpp
|
||||
src/profile_dialog.cpp
|
||||
src/profile_dialog.h
|
||||
src/profile_repository.cpp
|
||||
src/profile_repository.h
|
||||
src/profiles_tree_widget.cpp
|
||||
src/profiles_tree_widget.h
|
||||
src/profiles_window.cpp
|
||||
src/profiles_window.h
|
||||
src/session_backend.h
|
||||
@@ -102,8 +114,27 @@ add_executable(orbithub
|
||||
src/unsupported_session_backend.h
|
||||
)
|
||||
|
||||
if(WIN32)
|
||||
list(APPEND ORBITHUB_SOURCES packaging/windows/orbithub.rc)
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
list(APPEND ORBITHUB_SOURCES packaging/macos/orbithub.icns)
|
||||
set_source_files_properties(packaging/macos/orbithub.icns PROPERTIES
|
||||
MACOSX_PACKAGE_LOCATION "Resources"
|
||||
)
|
||||
set(MACOSX_BUNDLE_ICON_FILE orbithub.icns)
|
||||
set(MACOSX_BUNDLE_BUNDLE_NAME "OrbitHub")
|
||||
set(MACOSX_BUNDLE_GUI_IDENTIFIER "org.darksingularity.OrbitHub")
|
||||
set(MACOSX_BUNDLE_BUNDLE_VERSION "${PROJECT_VERSION}")
|
||||
set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION}")
|
||||
endif()
|
||||
|
||||
add_executable(orbithub WIN32 MACOSX_BUNDLE ${ORBITHUB_SOURCES})
|
||||
|
||||
target_link_libraries(orbithub PRIVATE Qt6::Widgets Qt6::Sql)
|
||||
target_link_libraries(orbithub PRIVATE KodoTerm::KodoTerm)
|
||||
target_compile_definitions(orbithub PRIVATE ORBITHUB_VERSION_STRING="${PROJECT_VERSION}")
|
||||
if(TARGET freerdp AND TARGET winpr)
|
||||
target_compile_definitions(orbithub PRIVATE ORBITHUB_HAS_FREERDP)
|
||||
target_include_directories(orbithub PRIVATE
|
||||
@@ -120,4 +151,124 @@ else()
|
||||
message(FATAL_ERROR "Vendored FreeRDP targets were not produced as expected.")
|
||||
endif()
|
||||
|
||||
install(TARGETS orbithub RUNTIME DESTINATION bin)
|
||||
# Qt loads platform integration and SQL driver plugins dynamically at
|
||||
# runtime (QFactoryLoader), so they never appear in orbithub.exe's import
|
||||
# table. vcpkg's automatic DLL deployment only follows the import table, so
|
||||
# these plugins have to be copied out explicitly or the app fails to start
|
||||
# with "Could not find the Qt platform plugin" / "can not load requested
|
||||
# driver 'QSQLITE'".
|
||||
if(WIN32)
|
||||
if(TARGET Qt6::QWindowsIntegrationPlugin)
|
||||
add_custom_command(TARGET orbithub POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory
|
||||
"$<TARGET_FILE_DIR:orbithub>/platforms"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"$<TARGET_FILE:Qt6::QWindowsIntegrationPlugin>"
|
||||
"$<TARGET_FILE_DIR:orbithub>/platforms/"
|
||||
COMMENT "Deploying Qt Windows platform plugin"
|
||||
)
|
||||
install(FILES "$<TARGET_FILE:Qt6::QWindowsIntegrationPlugin>"
|
||||
DESTINATION "${CMAKE_INSTALL_BINDIR}/platforms"
|
||||
)
|
||||
endif()
|
||||
|
||||
if(TARGET Qt6::QSQLiteDriverPlugin)
|
||||
add_custom_command(TARGET orbithub POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory
|
||||
"$<TARGET_FILE_DIR:orbithub>/sqldrivers"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"$<TARGET_FILE:Qt6::QSQLiteDriverPlugin>"
|
||||
"$<TARGET_FILE_DIR:orbithub>/sqldrivers/"
|
||||
COMMENT "Deploying Qt SQLite driver plugin"
|
||||
)
|
||||
install(FILES "$<TARGET_FILE:Qt6::QSQLiteDriverPlugin>"
|
||||
DESTINATION "${CMAKE_INSTALL_BINDIR}/sqldrivers"
|
||||
)
|
||||
|
||||
# vcpkg's qtbase[sql-sqlite] links the plugin against vcpkg's own
|
||||
# shared sqlite3 port rather than bundling SQLite into the plugin,
|
||||
# so the plugin fails to load ("can not load requested driver
|
||||
# 'QSQLITE'") unless sqlite3.dll also ships next to the executable.
|
||||
find_file(ORBITHUB_SQLITE3_DLL
|
||||
NAMES sqlite3.dll
|
||||
PATHS ${CMAKE_PREFIX_PATH}
|
||||
PATH_SUFFIXES bin
|
||||
)
|
||||
if(ORBITHUB_SQLITE3_DLL)
|
||||
add_custom_command(TARGET orbithub POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"${ORBITHUB_SQLITE3_DLL}"
|
||||
"$<TARGET_FILE_DIR:orbithub>/"
|
||||
COMMENT "Deploying sqlite3.dll (Qt SQLite plugin dependency)"
|
||||
)
|
||||
install(FILES "${ORBITHUB_SQLITE3_DLL}" DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
# Mirrors macdeployqt's own layout for Qt frameworks: dylibs live in
|
||||
# Contents/Frameworks inside the bundle, found via @executable_path
|
||||
# (the macOS/dyld equivalent of Linux's $ORIGIN token, which dyld
|
||||
# does not understand).
|
||||
set_target_properties(orbithub PROPERTIES
|
||||
INSTALL_RPATH "@executable_path/../Frameworks"
|
||||
INSTALL_RPATH_USE_LINK_PATH ON
|
||||
)
|
||||
else()
|
||||
set_target_properties(orbithub PROPERTIES
|
||||
BUILD_RPATH_USE_ORIGIN ON
|
||||
INSTALL_RPATH "$ORIGIN/../${CMAKE_INSTALL_LIBDIR}/orbithub"
|
||||
INSTALL_RPATH_USE_LINK_PATH ON
|
||||
)
|
||||
endif()
|
||||
|
||||
install(TARGETS orbithub
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
BUNDLE DESTINATION .
|
||||
)
|
||||
|
||||
if(APPLE)
|
||||
set(ORBITHUB_PRIVATE_LIB_DESTINATION "OrbitHub.app/Contents/Frameworks")
|
||||
else()
|
||||
set(ORBITHUB_PRIVATE_LIB_DESTINATION "${CMAKE_INSTALL_LIBDIR}/orbithub")
|
||||
endif()
|
||||
set(ORBITHUB_RUNTIME_TARGETS KodoTerm freerdp winpr)
|
||||
if(TARGET freerdp-client)
|
||||
list(APPEND ORBITHUB_RUNTIME_TARGETS freerdp-client)
|
||||
endif()
|
||||
foreach(runtime_target IN LISTS ORBITHUB_RUNTIME_TARGETS)
|
||||
if(TARGET ${runtime_target})
|
||||
install(TARGETS ${runtime_target}
|
||||
RUNTIME DESTINATION ${ORBITHUB_PRIVATE_LIB_DESTINATION}
|
||||
LIBRARY DESTINATION ${ORBITHUB_PRIVATE_LIB_DESTINATION}
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
)
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
install(FILES
|
||||
packaging/linux/org.darksingularity.OrbitHub.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
|
||||
)
|
||||
foreach(icon_size IN ITEMS 16 24 32 48 64 128 256)
|
||||
install(FILES
|
||||
packaging/linux/icons/${icon_size}x${icon_size}/apps/org.darksingularity.OrbitHub.png
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/${icon_size}x${icon_size}/apps
|
||||
)
|
||||
endforeach()
|
||||
install(FILES
|
||||
packaging/linux/org.darksingularity.OrbitHub.metainfo.xml
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo
|
||||
)
|
||||
install(FILES LICENSE
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/licenses/org.darksingularity.OrbitHub
|
||||
)
|
||||
install(FILES third_party/FreeRDP/LICENSE
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/licenses/org.darksingularity.OrbitHub
|
||||
RENAME LICENSE-FreeRDP
|
||||
)
|
||||
install(FILES third_party/KodoTerm/LICENSE
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/licenses/org.darksingularity.OrbitHub
|
||||
RENAME LICENSE-KodoTerm
|
||||
)
|
||||
|
||||
@@ -0,0 +1,184 @@
|
||||
# OrbitHub
|
||||
|
||||
OrbitHub is a cross-platform native desktop app for managing and launching remote sessions from one place.
|
||||
|
||||
It is implemented in C++17 with Qt6 Widgets and built with CMake.
|
||||
|
||||
Supported target platforms:
|
||||
- Windows
|
||||
- Linux
|
||||
- macOS
|
||||
|
||||
## Current Status
|
||||
|
||||
OrbitHub is in active development.
|
||||
|
||||
- Milestones completed: M0-M5, and M7-M9
|
||||
- Current milestone: Milestone 10 (v1.0 Stabilization)
|
||||
- Deferred milestone: Milestone 6 (VNC Fully Working)
|
||||
- Latest checkpoint tag: `v2026.9.15`
|
||||
- VNC implementation milestone (M6) is currently deferred
|
||||
|
||||
Progress and milestone details:
|
||||
- [docs/PROGRESS.md](docs/PROGRESS.md)
|
||||
|
||||
Latest release (installers for Windows, Linux, and macOS):
|
||||
- [v2026.9.15](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.15)
|
||||
|
||||
User Guide:
|
||||
- [docs/USER_GUIDE.md](docs/USER_GUIDE.md) (also available as a PDF attached to each release, and in-app via `Help -> User Guide`)
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
|
||||
Profiles organized into folders, with protocol, host, and tags shown at a glance. (Sample data shown; not real hosts.)
|
||||
|
||||

|
||||
|
||||
An interactive SSH terminal session in a tab, with the event log below.
|
||||
|
||||

|
||||
|
||||
An embedded RDP session in a tab.
|
||||
|
||||
## Implemented Features
|
||||
|
||||
### Profile Management
|
||||
|
||||
- SQLite-backed profile storage
|
||||
- Create, edit, delete profiles
|
||||
- Protocol-aware profile validation (SSH/RDP/VNC)
|
||||
- Profile search and sorting
|
||||
- Tags support
|
||||
- Folder/subfolder support
|
||||
- `List` and `Folders` profile views
|
||||
- Right-click profile tree actions:
|
||||
- New Folder
|
||||
- New Connection
|
||||
- Drag-and-drop profile moves between folders with persistence
|
||||
|
||||
### Session Experience
|
||||
|
||||
- Multi-tab session window
|
||||
- Auto-connect on tab open
|
||||
- Disconnect on tab close
|
||||
- Session state indicators on tabs
|
||||
- Timestamped event log with filtering and export
|
||||
|
||||
### SSH
|
||||
|
||||
- Embedded interactive terminal (in-app typing)
|
||||
- Theme support (`Dark`, `Light`, `Solarized Dark`)
|
||||
- Password and private-key auth flows
|
||||
- Known-hosts policy support
|
||||
|
||||
### RDP
|
||||
|
||||
- Embedded in-window RDP rendering surface (no external launcher)
|
||||
- Keyboard/mouse input forwarding
|
||||
- Resize handling and resolution renegotiation
|
||||
- Domain-aware authentication support
|
||||
- RDP security/performance profile options
|
||||
|
||||
### App UX
|
||||
|
||||
- App icon and themed About dialog
|
||||
- `File` menu:
|
||||
- New Profile
|
||||
- New Folder
|
||||
- Quit
|
||||
- `Help` menu:
|
||||
- About OrbitHub
|
||||
|
||||
## Build and Run
|
||||
|
||||
Detailed platform instructions:
|
||||
- [docs/BUILDING.md](docs/BUILDING.md)
|
||||
|
||||
Quick start (Linux/macOS with Ninja):
|
||||
|
||||
```bash
|
||||
cmake -S . -B build -G Ninja
|
||||
cmake --build build
|
||||
./build/orbithub
|
||||
```
|
||||
|
||||
## Packaging
|
||||
|
||||
Detailed packaging instructions for all platforms:
|
||||
- [docs/BUILDING.md](docs/BUILDING.md)
|
||||
|
||||
Linux (`.deb`):
|
||||
|
||||
```bash
|
||||
./packaging/linux/build-deb.sh
|
||||
```
|
||||
|
||||
Linux (Flatpak):
|
||||
|
||||
```bash
|
||||
./packaging/flatpak/build-flatpak.sh
|
||||
```
|
||||
|
||||
Windows (Inno Setup installer):
|
||||
|
||||
```powershell
|
||||
.\packaging\windows\build-installer.ps1
|
||||
```
|
||||
|
||||
macOS (`.dmg`):
|
||||
|
||||
```bash
|
||||
./packaging/macos/build-dmg.sh
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
Core dependencies:
|
||||
- Qt 6 (Widgets, SQL)
|
||||
- CMake 3.21+
|
||||
- C++17 toolchain
|
||||
|
||||
Protocol/runtime dependencies:
|
||||
- SSH client (`ssh`) available on `PATH` for SSH sessions
|
||||
|
||||
Bundled/vendored third-party components:
|
||||
- KodoTerm
|
||||
- libvterm
|
||||
- FreeRDP/WinPR
|
||||
|
||||
## Licensing
|
||||
|
||||
Project license:
|
||||
- MIT (see [LICENSE](LICENSE))
|
||||
|
||||
License links:
|
||||
- MIT License: <https://opensource.org/licenses/MIT>
|
||||
- GNU LGPLv3: <https://www.gnu.org/licenses/lgpl-3.0.html>
|
||||
- Apache License 2.0: <https://www.apache.org/licenses/LICENSE-2.0>
|
||||
|
||||
Important third-party license notes:
|
||||
- Qt6 is dynamically linked in this project build setup.
|
||||
- Qt6 is used under LGPLv3 terms in this project build setup.
|
||||
- KodoTerm and libvterm are MIT-licensed.
|
||||
- FreeRDP/WinPR is Apache-2.0 licensed.
|
||||
|
||||
Repository license files:
|
||||
- Project: [LICENSE](LICENSE)
|
||||
- KodoTerm: [third_party/KodoTerm/LICENSE](third_party/KodoTerm/LICENSE)
|
||||
- FreeRDP: [third_party/FreeRDP/LICENSE](third_party/FreeRDP/LICENSE)
|
||||
|
||||
See in-app `Help -> About OrbitHub` for license links and third-party inventory.
|
||||
|
||||
## Repository Structure
|
||||
|
||||
- `src/` - application source code
|
||||
- `docs/` - build guide, spec, and progress tracking
|
||||
- `third_party/` - vendored third-party dependencies
|
||||
- `build/` - local build output (generated)
|
||||
|
||||
## Notes
|
||||
|
||||
- Passwords are requested at connect time and are not stored in the profile database.
|
||||
- This repository currently prioritizes integrated SSH and RDP workflows while VNC implementation is pending.
|
||||
@@ -2,6 +2,14 @@
|
||||
|
||||
Run all commands from the repository root unless noted.
|
||||
|
||||
## Requirements
|
||||
|
||||
Minimum toolchain requirements on all platforms:
|
||||
- CMake 3.21+
|
||||
- C++17 compiler toolchain
|
||||
- Qt 6.2+ with `Widgets` and `Sql` modules (dynamic linking)
|
||||
- OpenSSH client available on `PATH` (required for SSH sessions)
|
||||
|
||||
## Linux (Ubuntu / Mint)
|
||||
|
||||
```bash
|
||||
@@ -9,9 +17,9 @@ sudo apt update
|
||||
sudo apt install -y \
|
||||
build-essential cmake ninja-build git pkg-config \
|
||||
qt6-base-dev qt6-base-dev-tools qt6-tools-dev qt6-tools-dev-tools \
|
||||
openssh-client
|
||||
openssh-client libssl-dev zlib1g-dev
|
||||
|
||||
cmake -S . -B build -G Ninja
|
||||
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build build
|
||||
./build/orbithub
|
||||
```
|
||||
@@ -21,39 +29,130 @@ cmake --build build
|
||||
```bash
|
||||
xcode-select --install
|
||||
brew update
|
||||
brew install cmake ninja pkg-config qt@6 openssh
|
||||
brew install cmake ninja pkg-config qt@6 openssh openssl@3
|
||||
|
||||
cmake -S . -B build -G Ninja -DCMAKE_PREFIX_PATH="$(brew --prefix qt@6)"
|
||||
cmake -S . -B build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_PREFIX_PATH="$(brew --prefix qt@6);$(brew --prefix openssl@3)"
|
||||
cmake --build build
|
||||
./build/orbithub
|
||||
open build/orbithub.app
|
||||
```
|
||||
|
||||
## Windows 11 (PowerShell + MSVC + vcpkg)
|
||||
|
||||
Install required software:
|
||||
|
||||
```powershell
|
||||
winget install -e --id Git.Git
|
||||
winget install -e --id Kitware.CMake
|
||||
winget install -e --id Ninja-build.Ninja
|
||||
Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
|
||||
winget install -e --id Microsoft.VisualStudio.2022.BuildTools `
|
||||
--override "--quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools"
|
||||
--override "--quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.Windows11SDK.22621"
|
||||
```
|
||||
|
||||
Open a new terminal after installs, then:
|
||||
Install dependencies via vcpkg:
|
||||
|
||||
```powershell
|
||||
git clone https://github.com/microsoft/vcpkg C:\dev\vcpkg
|
||||
C:\dev\vcpkg\bootstrap-vcpkg.bat
|
||||
C:\dev\vcpkg\vcpkg.exe install qtbase:x64-windows
|
||||
|
||||
cmake -S . -B build -G Ninja `
|
||||
-DCMAKE_TOOLCHAIN_FILE=C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake
|
||||
cmake --build build
|
||||
.\build\orbithub.exe
|
||||
C:\dev\vcpkg\vcpkg.exe install qtbase:x64-windows openssl:x64-windows zlib:x64-windows
|
||||
```
|
||||
|
||||
Open `x64 Native Tools Command Prompt for VS 2022` (or Developer PowerShell), then build:
|
||||
|
||||
```powershell
|
||||
cmake -S . -B build -G Ninja `
|
||||
-DCMAKE_BUILD_TYPE=Release `
|
||||
-DCMAKE_TOOLCHAIN_FILE=C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake `
|
||||
-DVCPKG_TARGET_TRIPLET=x64-windows
|
||||
cmake --build build
|
||||
```
|
||||
|
||||
Run (ensures DLL paths from vcpkg are present):
|
||||
|
||||
```powershell
|
||||
C:\dev\vcpkg\vcpkg.exe env --triplet x64-windows -- .\build\orbithub.exe
|
||||
```
|
||||
|
||||
If you already have `Qt 6` from the Qt installer and do not want vcpkg Qt, you can point CMake at that Qt install with `-DCMAKE_PREFIX_PATH=...`, but you still need compatible `OpenSSL` and `zlib` development libraries for the embedded FreeRDP build.
|
||||
|
||||
## Notes
|
||||
|
||||
- OrbitHub currently requires Qt6 Widgets and CMake 3.21+.
|
||||
- Milestone 3 SSH sessions require an `ssh` client available on `PATH`.
|
||||
- OrbitHub builds vendored `KodoTerm`, `libvterm`, and `FreeRDP` from `third_party/`.
|
||||
- If Qt is installed in a custom location, pass `-DCMAKE_PREFIX_PATH=/path/to/Qt/6.x.x/<toolchain>` to CMake.
|
||||
- Build output executable:
|
||||
- Linux: `build/orbithub`
|
||||
- macOS: `build/orbithub.app` (a proper app bundle, launch with `open build/orbithub.app`)
|
||||
- Windows: `build\\orbithub.exe`
|
||||
|
||||
## Linux Packaging
|
||||
|
||||
Build a Debian package (`.deb`) from the current Linux build:
|
||||
|
||||
```bash
|
||||
./packaging/linux/build-deb.sh
|
||||
```
|
||||
|
||||
Output path:
|
||||
- `dist/orbithub_<version>_<arch>.deb`
|
||||
|
||||
Build a Flatpak bundle:
|
||||
|
||||
```bash
|
||||
sudo apt-get install -y flatpak flatpak-builder
|
||||
./packaging/flatpak/build-flatpak.sh
|
||||
```
|
||||
|
||||
Output path:
|
||||
- `dist/flatpak/org.darksingularity.OrbitHub.flatpak`
|
||||
|
||||
## Windows Packaging
|
||||
|
||||
Requires [Inno Setup 6](https://jrsoftware.org/isinfo.php) (`winget install -e --id JRSoftware.InnoSetup`).
|
||||
|
||||
From a configured and built `build\` directory (see Windows build steps above):
|
||||
|
||||
```powershell
|
||||
.\packaging\windows\build-installer.ps1
|
||||
```
|
||||
|
||||
Output path:
|
||||
- `dist\windows\OrbitHub-Setup-<version>.exe`
|
||||
|
||||
## macOS Packaging
|
||||
|
||||
Requires `qt@6` from Homebrew (for `macdeployqt`). For a custom volume icon on
|
||||
the `.dmg`, also install `SetFile` (via Xcode's "Additional Tools", from
|
||||
[developer.apple.com/download/all](https://developer.apple.com/download/all))
|
||||
or `brew install fileicon` — packaging still works without either, just with
|
||||
the generic disk image icon.
|
||||
|
||||
```bash
|
||||
./packaging/macos/build-dmg.sh
|
||||
```
|
||||
|
||||
This runs `cmake --install`, then `macdeployqt` to bundle Qt frameworks and
|
||||
plugins into the `.app`, then re-signs the bundle (ad hoc, since there is no
|
||||
Developer ID certificate) so it passes macOS's launch-time code-integrity
|
||||
check. The result is unsigned/unnotarized, so first launch requires
|
||||
right-click → **Open** to bypass Gatekeeper's unidentified-developer warning.
|
||||
|
||||
Output path:
|
||||
- `dist/macos/OrbitHub-<version>.dmg`
|
||||
|
||||
## User Guide PDF
|
||||
|
||||
The in-app User Guide (`Help -> User Guide`) is built from
|
||||
`docs/USER_GUIDE.md` and embedded into the app at compile time — no extra
|
||||
step needed for that. A standalone PDF version is generated separately by a
|
||||
small tool (kept out of the main app's dependencies, since it needs
|
||||
`Qt6::PrintSupport`):
|
||||
|
||||
```bash
|
||||
./packaging/docs/build-user-guide-pdf.sh
|
||||
```
|
||||
|
||||
Output path:
|
||||
- `docs/USER_GUIDE.pdf` (not committed to git — a release asset, like the
|
||||
platform installers)
|
||||
|
||||
@@ -0,0 +1,100 @@
|
||||
# Flathub Submission Readiness
|
||||
|
||||
Tracks OrbitHub's readiness for submission to Flathub. This is a separate
|
||||
checklist from `docs/PROGRESS.md`'s development milestones, since Flathub
|
||||
submission is an external process with its own requirements.
|
||||
|
||||
## Status
|
||||
|
||||
| Item | Status |
|
||||
|---|---|
|
||||
| Production manifest with pinned, reproducible git source | Done — `packaging/flatpak/flathub/org.darksingularity.OrbitHub.yml`; commit pin updated at each tagged release |
|
||||
| `flathub.json` for build settings (`only-arches`, etc.) | Done — `packaging/flatpak/flathub/flathub.json` |
|
||||
| Offline build (no network fetches during build) | Verified — no `FetchContent`/`ExternalProject`/`curl`/`wget` in CMake; all vendored deps committed in `third_party/`; confirmed with a real `flatpak-builder` build |
|
||||
| SSH client available inside the sandbox | Verified — provided by the `org.kde.Platform` runtime base, no packaging needed |
|
||||
| `--filesystem=home` removed | Done — narrowed to `--filesystem=~/.ssh` (read-write, needed for `known_hosts` and SSH config) |
|
||||
| SSH known-hosts trust persists with narrowed permissions | Verified in sandbox against real infrastructure |
|
||||
| RDP works with zero filesystem permission | Verified — FreeRDP's cert trust store lives outside the sandboxed home path concerns entirely (see below) |
|
||||
| Private-key/export file pickers use the desktop portal | **Verified interactively** — `QFileDialog`'s Browse button correctly opens the native GTK portal chooser ("Select Private Key"), which can browse the full filesystem via user consent regardless of the sandbox's static `~/.ssh`-only grant |
|
||||
| Current, supported KDE runtime | Verified — upgraded to `6.11` (linter's recommended latest); confirmed the app still builds and launches against it |
|
||||
| Desktop entry validates | Verified |
|
||||
| Application icon validates | Verified — PNGs at all standard hicolor sizes, matching the real app icon |
|
||||
| MetaInfo/AppStream validates | Verified via both `appstreamcli validate` and Flathub's own `flatpak-builder-lint appstream` (0 errors either way) |
|
||||
| Screenshots present | Done — profiles view, active SSH session, active RDP session, all captured against real (test) infrastructure |
|
||||
| Release information present | Done — `<releases>` block with `v2026.9.8` (add an entry per future tagged release) |
|
||||
| Developer/project URLs present | Done — homepage, bugtracker, vcs-browser, developer block |
|
||||
| Architecture support decided | `x86_64` only (no ARM hardware available to test FreeRDP/WinPR on aarch64), set via `flathub.json`'s `only-arches` |
|
||||
| Flathub manifest linter passes | One expected finding remains: `finish-args-ssh-filesystem-access` (see below) — everything else passes, including `only-arches` placement and runtime-version currency |
|
||||
| AppStream linter passes | Passing (both `appstreamcli validate` and `flatpak-builder-lint appstream`) |
|
||||
| Clean install works without host dependencies | Verified via local `.flatpak` bundle install and launch, on both KDE 6.10 and 6.11 runtimes |
|
||||
| Bundled-dependency license files installed per Flathub's `$FLATPAK_ID` convention | Partially done — path fixed from `share/licenses/orbithub` to the required `share/licenses/org.darksingularity.OrbitHub`; FreeRDP's and KodoTerm's `LICENSE` files now installed there too. **`libvterm`'s vendored copy has no `LICENSE`/`COPYING` file at all** — needs to be pulled from upstream and added as `third_party/libvterm/LICENSE` before submission (README claims MIT; not verified against an actual license file in-tree) |
|
||||
|
||||
## ⚠️ Not yet addressed: Generative AI disclosure policy is a real acceptance risk, not a checklist item
|
||||
|
||||
See the dedicated section below — unlike everything else on this page, this
|
||||
isn't something more packaging work resolves.
|
||||
|
||||
### `finish-args-ssh-filesystem-access` — expected, needs a submission-time justification
|
||||
|
||||
Flathub's linter flags *any* `~/.ssh` filesystem grant by policy — it's not a
|
||||
bug in this manifest, it's a deliberate prompt for the submitter to justify
|
||||
the access during PR review. Checked the linter's own exceptions list:
|
||||
several existing SSH-client apps already have this exact permission approved
|
||||
with justifications like *"Read-only access to ~/.ssh is required to load
|
||||
SSH keys for connecting to devices over SSH"* and *"Needed to manage SSH keys
|
||||
and configurations for connections"* — OrbitHub's case is the same pattern
|
||||
(read-write, specifically for `known_hosts` persistence and default identity
|
||||
file discovery). Include a similar justification in the submission PR.
|
||||
|
||||
## ⚠️ Not yet addressed: Generative AI disclosure policy
|
||||
|
||||
Flathub's [Generative AI policy](https://docs.flathub.org/docs/for-app-authors/requirements#generative-ai-policy)
|
||||
requires submitters to disclose "any AI-generated code, documentation,
|
||||
packaging, or other material" included in the app or its Flathub packaging,
|
||||
identifying "the affected parts and approximate extent." This is not a
|
||||
formality — it's evaluated at reviewer discretion, and reviewers may reject
|
||||
"based on the extent or role of generated material."
|
||||
|
||||
OrbitHub's development has used Claude Code extensively — the app's C++
|
||||
source, this Flatpak packaging (manifest, metainfo, build scripts), and this
|
||||
tracking doc itself. Every commit in this repository carries a
|
||||
`Co-Authored-By: Claude Sonnet 5` trailer, which is itself effectively an
|
||||
existing disclosure trail. An honest submission disclosure needs to reflect
|
||||
that extent truthfully — not a token "some AI assistance was used" note.
|
||||
|
||||
The same policy also prohibits AI tools from opening or automating the
|
||||
submission PR itself, or generating its commit messages, description, or
|
||||
review replies. **This means the actual submission PR — including its AI
|
||||
disclosure — has to be written and opened by a human, not drafted by
|
||||
Claude.** Not done, and not something this repo's tooling should attempt.
|
||||
|
||||
This is a real acceptance risk that no amount of technical packaging work
|
||||
resolves — it's a policy/reviewer-discretion matter, separate from every
|
||||
other item on this page.
|
||||
|
||||
## Related finding (not a packaging blocker)
|
||||
|
||||
During permission-narrowing research, RDP certificate verification was found
|
||||
to be completely disabled (`IgnoreCertificate=TRUE`, all server certificates
|
||||
silently accepted including *changed* ones). This has been fixed separately
|
||||
in `src/rdp_session_backend.cpp` — FreeRDP's own trust-on-first-use
|
||||
certificate store is now used, matching SSH's known-hosts model. Not a
|
||||
Flathub-specific issue, but worth noting since it was found in the course of
|
||||
this work.
|
||||
|
||||
## Explicitly out of scope for this repo
|
||||
|
||||
- Opening the actual submission PR against `github.com/flathub/flathub` —
|
||||
requires the maintainer's GitHub identity, done outside this repo, and per
|
||||
the Generative AI policy above must be written by a human, not drafted here.
|
||||
- ARM64 build/testing — no hardware available.
|
||||
- Flathub's post-acceptance developer-verification step — done via
|
||||
Flathub's own website after acceptance, using DNS control of
|
||||
`darksingularity.org`.
|
||||
|
||||
## Files
|
||||
|
||||
- Dev manifest (local iteration, `type: dir`): `packaging/flatpak/org.darksingularity.OrbitHub.yml`
|
||||
- Flathub submission manifest (pinned `type: git`): `packaging/flatpak/flathub/org.darksingularity.OrbitHub.yml`
|
||||
- AppStream metainfo: `packaging/linux/org.darksingularity.OrbitHub.metainfo.xml`
|
||||
- Desktop entry: `packaging/linux/org.darksingularity.OrbitHub.desktop`
|
||||
@@ -100,11 +100,11 @@ Delivered:
|
||||
- Pulled FreeRDP source for integration planning and API review
|
||||
|
||||
Git:
|
||||
- Tag: pending (awaiting explicit approval before tagging/pushing)
|
||||
- Tag: `v0-m5-done`
|
||||
|
||||
## Milestone 6 - VNC Fully Working
|
||||
|
||||
Status: Planned
|
||||
Status: Deferred (temporarily postponed)
|
||||
|
||||
Planned Scope:
|
||||
- Replace current unsupported VNC path with complete VNC implementation
|
||||
@@ -115,30 +115,94 @@ Planned Scope:
|
||||
|
||||
## Milestone 7 - Cross-Platform Protocol Hardening
|
||||
|
||||
Status: Planned
|
||||
Status: Completed
|
||||
|
||||
Planned Scope:
|
||||
- Validate SSH/RDP/VNC workflows on Windows, Linux, and macOS
|
||||
- Fix platform-specific runtime/process/auth issues
|
||||
- Add repeatable protocol validation checklist/scripts
|
||||
Delivered:
|
||||
- Validated SSH and RDP workflows on Linux, macOS, and Windows 11 (VNC is out
|
||||
of scope while Milestone 6 remains deferred)
|
||||
- Windows: validated the full `docs/BUILDING.md` toolchain end-to-end
|
||||
(Git/CMake/Ninja/VS Build Tools with the C++ workload/vcpkg for
|
||||
Qt6-OpenSSL-zlib); documented a VS Build Tools installer gotcha where the
|
||||
actual compiler is a "recommended", not "required", component of the
|
||||
VCTools workload
|
||||
- Fixed RDP keyboard input misreading punctuation keys on Linux (X11 keycode
|
||||
numbering was being treated as a PC/AT scancode; now uses FreeRDP's
|
||||
authoritative X11-keycode-to-scancode table)
|
||||
- Added RDP clipboard sync (bidirectional, plain text) and RDP cursor/pointer
|
||||
shape sync (resize handles, text I-beam, etc. instead of a static arrow)
|
||||
- Fixed Tab/Shift+Tab being intercepted by local UI focus navigation instead
|
||||
of reaching SSH/RDP sessions
|
||||
- Fixed RDP key auto-repeat being dropped, so holding a key only ever sent a
|
||||
single keystroke to the remote machine
|
||||
- Windows-specific RDP fixes: a crash on every connect attempt (FreeRDP's
|
||||
signal-handling critical section was never initialized) and a host
|
||||
resolution failure on every connect, including literal IP addresses
|
||||
(Winsock was never initialized via `WSAStartup`)
|
||||
- Windows: automatic build-time deployment of Qt's platform/SQL-driver
|
||||
plugins and their runtime DLL dependencies, and marked the executable as a
|
||||
GUI (`WIN32`) app to remove a stray console window behind the UI
|
||||
- Windows and macOS: proper native app icon embedding (Windows `.rc`/`.ico`
|
||||
resource; macOS `.app` bundle with `.icns`), replacing the generic default
|
||||
icon previously shown for the built executable/bundle
|
||||
- macOS: fixed Edit/New Profile dialog form fields collapsing to `sizeHint`
|
||||
width due to the platform-default `QFormLayout` field growth policy
|
||||
|
||||
Git:
|
||||
- Tag: Pending user approval (`v0-m7-done`)
|
||||
|
||||
## Milestone 8 - Profile and Session UX Completion
|
||||
|
||||
Status: Planned
|
||||
Status: Completed
|
||||
|
||||
Planned Scope:
|
||||
- Complete protocol-aware profile validation and UX polish
|
||||
- Add/persist session UI preferences and default behaviors
|
||||
- Improve events/diagnostics visibility for long-running session usage
|
||||
Delivered:
|
||||
- Added profile `tags` field to storage + schema migration and profile editor UX
|
||||
- Added profile `folder_path` field + nested folder/subfolder profile view mode
|
||||
- Added profile tree context actions (`New Folder`, `New Connection`) and drag-to-folder profile moves with persistence
|
||||
- Added `Help -> About OrbitHub` dialog with third-party library inventory and MIT/Apache-2.0 license links
|
||||
- Extended profile search to include tags/folder path and added profile sort controls (`Name`, `Protocol`, `Host`)
|
||||
- Persisted profile list UX preferences (`search text`, `view mode`, protocol/tag filters, `sort order`) across app restarts
|
||||
- Added protocol-aware profile validation/normalization for SSH/RDP/VNC (repository + dialog)
|
||||
- Improved profile form protocol UX hints and SSH private-key path validation
|
||||
- Added session events filtering and tab-context actions (`Show/Hide Events`, `Copy Events`, `Clear Events`)
|
||||
- Added session diagnostics QoL: severity quick-filter (`All/Warnings/Errors`) and `Export Events` action
|
||||
- Persisted session UI defaults (`terminal theme`, `events panel visibility`) for new tabs/windows
|
||||
- Added profile quick filters (`Protocol`, `Tag`) with persistence to speed profile browsing
|
||||
|
||||
Validation:
|
||||
- Local build verification passed (`cmake --build build`)
|
||||
- No automated tests are currently configured in CTest
|
||||
|
||||
Git:
|
||||
- Tag: Pending user approval (`v0-m8-done`)
|
||||
|
||||
## Milestone 9 - Packaging and Distribution
|
||||
|
||||
Status: Planned
|
||||
Status: Completed
|
||||
|
||||
Planned Scope:
|
||||
- Build distributable artifacts for Windows/Linux/macOS
|
||||
- Document runtime dependencies and install prerequisites
|
||||
- Add reproducible release packaging steps/scripts
|
||||
Delivered:
|
||||
- Linux `.deb` (`packaging/linux/build-deb.sh`) and Flatpak (`packaging/flatpak/build-flatpak.sh`) packages, both verified installed and launched with working SSH/RDP
|
||||
- Renamed the app's reverse-DNS identity from `io.orbithub.OrbitHub` to `org.darksingularity.OrbitHub` (desktop file, AppStream metainfo, Flatpak manifest, macOS bundle identifier) to reflect a domain actually owned by the project
|
||||
- Fixed Linux taskbar/panel pin matching (`StartupWMClass`) so a pinned launcher merges with its running window instead of creating a duplicate entry
|
||||
- Replaced the stale, mismatched hand-authored launcher SVG with PNG icons rendered directly from the app's own `createOrbitHubAppIcon()` at each hicolor theme size
|
||||
- Windows installer via Inno Setup (`packaging/windows/orbithub.iss`, `packaging/windows/build-installer.ps1`), verified installed silently and launched cleanly with no crash events
|
||||
- macOS `.dmg` via `cmake --install` + `macdeployqt` + `hdiutil` (`packaging/macos/build-dmg.sh`), verified installed and launched after fixing:
|
||||
- a launch crash caused by `macdeployqt` invalidating the code signature (fixed with ad hoc re-signing)
|
||||
- a missing-library crash caused by the Linux-only `$ORIGIN` rpath token and vendored dylibs installing outside the `.app` bundle (fixed with `APPLE`-specific `@executable_path`/`Contents/Frameworks` layout)
|
||||
- the dmg showing the generic disk icon instead of the app icon
|
||||
- README and `docs/BUILDING.md` Packaging sections documented for all three platforms
|
||||
|
||||
Validation:
|
||||
- All three installers built, installed, and launched successfully with working SSH/RDP sessions
|
||||
- Code signing is ad hoc only (no purchased Apple Developer ID or Windows code-signing certificate), so macOS Gatekeeper and Windows SmartScreen still show first-run warnings by design
|
||||
|
||||
Git:
|
||||
- Tag: `v0-m9-done`
|
||||
- Release: [v2026.9.8](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8) (`v2026.9.8` tag, installers for Windows/Linux/macOS)
|
||||
- Release: [v2026.9.8.2](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8.2) — same-day patch fixing RDP TLS certificate verification (was fully disabled) and preparing Flatpak packaging for Flathub submission
|
||||
- Release: [v2026.9.8.3](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8.3) — same-day patch adding an in-app User Guide and standalone User Guide PDF
|
||||
- Release: [v2026.9.14](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.14) — fixes distorted RDP text on HiDPI monitors and reduces RDP resize-related display glitches
|
||||
- Release: [v2026.9.14.2](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.14.2) — same-day patch fixing RDP display corruption (missing/misplaced taskbar) after resizing the session window (the client never resized its own display buffer for channel-driven RDP resizes)
|
||||
- Release: [v2026.9.15](https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.15) — adds Import/Export for profile lists (File menu)
|
||||
|
||||
## Milestone 10 - v1.0 Stabilization
|
||||
|
||||
|
||||
@@ -0,0 +1,230 @@
|
||||
## Introduction
|
||||
|
||||
OrbitHub is a native desktop application for organizing connection profiles
|
||||
and launching SSH and RDP sessions from one place, in a single tabbed
|
||||
window. It runs on Windows, Linux, and macOS.
|
||||
|
||||
This guide covers everyday use: creating and organizing profiles,
|
||||
connecting over SSH and RDP, managing active sessions, and what to do when
|
||||
something goes wrong. It does not cover installation or building from
|
||||
source — see the project's `README.md` and `docs/BUILDING.md` for that.
|
||||
|
||||
VNC support is planned but not yet implemented; profiles can be tagged for
|
||||
it, but connecting will show an "unsupported protocol" message for now.
|
||||
|
||||
## Getting Started
|
||||
|
||||
When OrbitHub opens, you land on the **Profiles** tab — a searchable,
|
||||
sortable list of every connection you've saved. Two toolbar controls in
|
||||
the top-right change how that list is presented:
|
||||
|
||||
- **View**: `List` shows every profile in one flat table; `Folders` groups
|
||||
them into the folder tree you've organized them into.
|
||||
- **Sort**: orders the list by Name, Protocol, or Host.
|
||||
|
||||
Along the top of the window, a **Search** box filters by name, host,
|
||||
folder path, or tag as you type, and **Protocol**/**Tag** dropdowns narrow
|
||||
the list further. These filters, plus your last view mode and sort order,
|
||||
are remembered the next time you open OrbitHub.
|
||||
|
||||
Along the bottom of the Profiles tab: **New**, **Edit**, and **Delete**
|
||||
buttons for managing the selected profile. The same actions are available
|
||||
by right-clicking a profile or folder, and from the **File** menu (`New
|
||||
Profile`, `New Folder`).
|
||||
|
||||
To connect, double-click a profile, or select it and press the connect
|
||||
control — this opens a new tab for that session and connects
|
||||
automatically.
|
||||
|
||||
## Managing Profiles
|
||||
|
||||
A profile stores everything needed to reach one remote host. Open **New**
|
||||
(or **Edit** on an existing profile) to fill in:
|
||||
|
||||
- **Name** — a label for the profile; shown on its tab and in the list.
|
||||
- **Host** — hostname or IP address.
|
||||
- **Port** — defaults to `22` for SSH, `3389` for RDP.
|
||||
- **Username** — the account to log in as.
|
||||
- **Domain** — Windows domain for RDP logins (leave blank for local/
|
||||
workgroup accounts or SSH profiles).
|
||||
- **Tags** — free-form, comma-separated labels for filtering and grouping
|
||||
(e.g. `prod, linux, db`).
|
||||
- **Folder** — where the profile lives in the Folders view.
|
||||
- **Protocol** — `SSH`, `RDP`, or `VNC` (VNC is accepted but not yet
|
||||
connectable — see Introduction).
|
||||
|
||||
Fields below Protocol change based on what you pick:
|
||||
|
||||
**SSH**: **Auth Mode** (`Password` or `Private Key`), and if Private Key,
|
||||
a **Private Key** file path with a **Browse** button, plus **Known Hosts**
|
||||
policy — see [Connecting via SSH](#connecting-via-ssh) for what each
|
||||
policy means.
|
||||
|
||||
**RDP**: **RDP Security** and **RDP Performance** — see
|
||||
[Connecting via RDP](#connecting-via-rdp).
|
||||
|
||||
Passwords are never saved in the profile — OrbitHub asks for them each
|
||||
time you connect (unless you've set up private-key SSH auth, which needs
|
||||
no password to be entered per-connection if the key itself has none).
|
||||
|
||||
## Organizing Profiles
|
||||
|
||||
As your profile list grows, two independent tools keep it manageable:
|
||||
|
||||
**Folders.** Switch the Profiles tab to `Folders` view to see profiles
|
||||
grouped into a tree. Create a folder from the **File** menu or by
|
||||
right-clicking in the tree (`New Folder`), and drag any profile onto a
|
||||
folder to move it there. Folders can nest inside other folders.
|
||||
|
||||
**Tags.** Tags are independent of folders — a profile can be in one folder
|
||||
but carry several tags (e.g. `prod`, `linux`, `db` all at once). Use the
|
||||
**Tag** filter dropdown in the toolbar to instantly narrow the list to
|
||||
everything sharing a tag, regardless of which folder it's filed under.
|
||||
|
||||
Combine both with the **Search** box (matches name, host, folder path, or
|
||||
tags) and the **Sort** control (Name / Protocol / Host) to find what you
|
||||
need quickly even with a large profile list.
|
||||
|
||||
## Connecting via SSH
|
||||
|
||||
Double-clicking an SSH profile opens a new tab with an embedded, fully
|
||||
interactive terminal — type directly into it as you would any terminal
|
||||
emulator. A **theme** selector lets you switch between `Dark`, `Light`,
|
||||
and `Solarized Dark`; your choice is remembered for future sessions.
|
||||
|
||||
**Authentication.** Set in the profile itself:
|
||||
- **Password** — OrbitHub prompts for a password each time you connect.
|
||||
It is never stored.
|
||||
- **Private Key** — point at a key file (via the profile's Browse button);
|
||||
no password prompt unless the key itself is passphrase-protected.
|
||||
|
||||
**Known Hosts policy.** This controls how OrbitHub reacts to a server's
|
||||
SSH host key — the mechanism that protects against a different machine
|
||||
silently impersonating a host you've connected to before:
|
||||
|
||||
| Policy | Behavior |
|
||||
|---|---|
|
||||
| `Ask` | Prompts you to confirm trust the first time a host is seen, and on any later change. Recommended default. |
|
||||
| `Accept-new` | Silently trusts a host the first time it's seen, but still stops and warns if a previously-trusted host's key later changes. |
|
||||
| `Strict` | Never trusts an unknown host automatically — the connection fails until you've manually confirmed the host key some other way. |
|
||||
| `Ignore` | Skips host-key checking entirely. Only use this for throwaway/test environments — it removes protection against on-path attacks. |
|
||||
|
||||
Trusted host keys are recorded in your system's normal SSH `known_hosts`
|
||||
file (the same one the `ssh` command line tool uses), so trust decisions
|
||||
made through OrbitHub or a terminal `ssh` session carry over to each
|
||||
other.
|
||||
|
||||
## Connecting via RDP
|
||||
|
||||
RDP sessions render in an embedded display surface inside the tab — no
|
||||
external RDP client window opens. Keyboard and mouse input go straight to
|
||||
the remote desktop while the tab has focus, and resizing the OrbitHub
|
||||
window renegotiates the remote resolution to match. Clipboard content
|
||||
syncs between your machine and the remote session automatically.
|
||||
|
||||
**Authentication** uses the profile's Username/Domain fields; OrbitHub
|
||||
prompts for the password at connect time.
|
||||
|
||||
**RDP Security** controls which transport-security layer is used to
|
||||
negotiate the connection:
|
||||
|
||||
| Mode | Behavior |
|
||||
|---|---|
|
||||
| `Negotiate` | Lets the client and server agree on the strongest mutually-supported option automatically. Recommended default. |
|
||||
| `NLA` | Requires Network Level Authentication (credentials verified before a full session starts) — the modern standard for current Windows versions. |
|
||||
| `TLS` | Requires TLS-only security, without NLA. |
|
||||
| `RDP` | The legacy RDP-native security layer, for older servers that don't support TLS/NLA. |
|
||||
|
||||
**RDP Performance** trades visual fidelity for responsiveness:
|
||||
`Balanced` (default), `Best Quality`, `Best Performance`, or
|
||||
`Auto Detect` (adapts based on the detected connection).
|
||||
|
||||
**Server certificate verification.** The first time you connect to an RDP
|
||||
host, OrbitHub trusts and remembers its TLS certificate — the same
|
||||
trust-on-first-use model SSH uses for host keys. If that certificate ever
|
||||
changes on a later connection, OrbitHub refuses the connection rather than
|
||||
connecting anyway, since a changed certificate can mean either a
|
||||
legitimate server certificate renewal or an active
|
||||
machine-in-the-middle presenting a different one. The event log (see
|
||||
below) shows the specific fingerprints involved. If the change is
|
||||
expected — you rotated the server's certificate yourself — reconnecting
|
||||
after clearing the old entry from FreeRDP's certificate store will trust
|
||||
the new one.
|
||||
|
||||
## Managing Sessions
|
||||
|
||||
Every open connection lives in its own tab in the same window, alongside
|
||||
the Profiles tab. A tab's title and a colored state indicator show
|
||||
whether it's connecting, connected, disconnected, or failed. Closing a
|
||||
tab disconnects that session; opening a profile again starts a fresh one.
|
||||
|
||||
Each session tab includes a collapsible **event log** beneath the
|
||||
connection surface — a timestamped record of connection state changes,
|
||||
warnings, and errors for that session. Controls above the log let you:
|
||||
|
||||
- **Show/Hide Events** — collapse the panel when you don't need it.
|
||||
- **Filter** — a text box to search event text, and an `All` /
|
||||
`Warnings` / `Errors` severity dropdown to narrow what's shown.
|
||||
- **Export Events** — save the current session's full event log to a
|
||||
file, useful when reporting a connection problem.
|
||||
- **Clear Events** — empty the log for that tab.
|
||||
|
||||
## Settings & Preferences
|
||||
|
||||
OrbitHub remembers your preferences across restarts without any separate
|
||||
settings screen — they're saved automatically as you use the app:
|
||||
|
||||
- Profile list: search text, view mode (List/Folders), Protocol/Tag
|
||||
filters, and sort order.
|
||||
- Session tabs: terminal theme choice, and whether the events panel is
|
||||
shown or hidden for new tabs.
|
||||
|
||||
Profile data itself (names, hosts, tags, folder structure, and so on) is
|
||||
stored in a local SQLite database — see the README for its exact path on
|
||||
your platform. Passwords are never part of that stored data.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
**"Host could not be resolved"** — the hostname in the profile can't be
|
||||
looked up by DNS. Check for typos, or try the host's IP address directly
|
||||
to confirm whether it's a DNS problem or something else.
|
||||
|
||||
**SSH connection fails immediately, no prompt** — double-check the
|
||||
profile's Port (default `22`) and that a firewall or network path isn't
|
||||
blocking that port from your machine.
|
||||
|
||||
**RDP: "Authentication failed. Check username and password."** — confirm
|
||||
Username and Domain are correct for the target server; some servers
|
||||
require the domain to be set explicitly even for local accounts.
|
||||
|
||||
**RDP: "RDP security negotiation failed. Try a different RDP security
|
||||
mode."** — the server doesn't support the security mode selected in the
|
||||
profile. Try `Negotiate` first, or a more specific mode if you know what
|
||||
the server requires.
|
||||
|
||||
**RDP: connection refused with a certificate-changed message** — see
|
||||
[Connecting via RDP](#connecting-via-rdp) above; this is expected,
|
||||
protective behavior, not a bug, whenever a previously-trusted server's
|
||||
certificate is replaced.
|
||||
|
||||
**SSH: connection hangs at "Ask" waiting for host-key trust** — check
|
||||
that policy's behavior under
|
||||
[Connecting via SSH](#connecting-via-ssh); switching to `Accept-new` avoids
|
||||
the prompt for genuinely new hosts while still protecting against a later
|
||||
key change.
|
||||
|
||||
If none of this covers what you're seeing, a session's exported event log
|
||||
(see Managing Sessions) is the most useful thing to include when asking
|
||||
for help or filing an issue.
|
||||
|
||||
## About & Support
|
||||
|
||||
OrbitHub is open source under the MIT license. Source code, issue
|
||||
tracking, and releases are hosted at
|
||||
[git.darksingularity.org/DarkSingularity/orbithub](https://git.darksingularity.org/DarkSingularity/orbithub).
|
||||
|
||||
For a list of bundled third-party libraries and their licenses, see
|
||||
**Help → About OrbitHub** inside the app.
|
||||
|
||||
To report a bug or request a feature, open an issue at
|
||||
[git.darksingularity.org/DarkSingularity/orbithub/issues](https://git.darksingularity.org/DarkSingularity/orbithub/issues).
|
||||
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 100 KiB |
@@ -0,0 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/docs">
|
||||
<file>USER_GUIDE.md</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
||||
BUILD_DIR="${1:-$ROOT_DIR/build-doc-tool}"
|
||||
OUTPUT_PATH="${2:-$ROOT_DIR/docs/USER_GUIDE.pdf}"
|
||||
|
||||
cmake -S "$ROOT_DIR/tools/user-guide-pdf" -B "$BUILD_DIR" -G Ninja
|
||||
cmake --build "$BUILD_DIR"
|
||||
|
||||
QT_QPA_PLATFORM=offscreen "$BUILD_DIR/user-guide-pdf" \
|
||||
"$ROOT_DIR/docs/USER_GUIDE.md" \
|
||||
"$OUTPUT_PATH"
|
||||
|
||||
echo "Created $OUTPUT_PATH"
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
||||
MANIFEST="$ROOT_DIR/packaging/flatpak/org.darksingularity.OrbitHub.yml"
|
||||
DIST_DIR="${1:-$ROOT_DIR/dist/flatpak}"
|
||||
BUILD_DIR="$DIST_DIR/build"
|
||||
REPO_DIR="$DIST_DIR/repo"
|
||||
BUNDLE="$DIST_DIR/org.darksingularity.OrbitHub.flatpak"
|
||||
|
||||
if ! command -v flatpak-builder >/dev/null 2>&1; then
|
||||
echo "flatpak-builder is required. Install it first:" >&2
|
||||
echo " sudo apt-get install -y flatpak-builder" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p "$DIST_DIR"
|
||||
|
||||
flatpak-builder \
|
||||
--force-clean \
|
||||
--repo="$REPO_DIR" \
|
||||
"$BUILD_DIR" \
|
||||
"$MANIFEST"
|
||||
|
||||
flatpak build-bundle "$REPO_DIR" "$BUNDLE" org.darksingularity.OrbitHub
|
||||
echo "Created $BUNDLE"
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"only-arches": ["x86_64"]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
app-id: org.darksingularity.OrbitHub
|
||||
runtime: org.kde.Platform
|
||||
runtime-version: "6.11"
|
||||
sdk: org.kde.Sdk
|
||||
command: orbithub
|
||||
finish-args:
|
||||
- --share=network
|
||||
- --share=ipc
|
||||
- --socket=fallback-x11
|
||||
- --socket=wayland
|
||||
- --device=dri
|
||||
- --filesystem=~/.ssh
|
||||
modules:
|
||||
- name: orbithub
|
||||
buildsystem: cmake-ninja
|
||||
builddir: true
|
||||
config-opts:
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
sources:
|
||||
- type: git
|
||||
url: https://git.darksingularity.org/DarkSingularity/orbithub.git
|
||||
tag: v2026.9.15
|
||||
commit: dffca3afef80b5a3ca4832e0b7f748775cb90328
|
||||
@@ -0,0 +1,21 @@
|
||||
app-id: org.darksingularity.OrbitHub
|
||||
runtime: org.kde.Platform
|
||||
runtime-version: "6.11"
|
||||
sdk: org.kde.Sdk
|
||||
command: orbithub
|
||||
finish-args:
|
||||
- --share=network
|
||||
- --share=ipc
|
||||
- --socket=fallback-x11
|
||||
- --socket=wayland
|
||||
- --device=dri
|
||||
- --filesystem=~/.ssh
|
||||
modules:
|
||||
- name: orbithub
|
||||
buildsystem: cmake-ninja
|
||||
builddir: true
|
||||
config-opts:
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
sources:
|
||||
- type: dir
|
||||
path: ../..
|
||||
@@ -0,0 +1,70 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
||||
BUILD_DIR="${1:-$ROOT_DIR/build}"
|
||||
DIST_DIR="${2:-$ROOT_DIR/dist}"
|
||||
STAGE_DIR="$DIST_DIR/deb-staging"
|
||||
PKG_ROOT="$STAGE_DIR/orbithub"
|
||||
|
||||
if [[ ! -f "$BUILD_DIR/CMakeCache.txt" ]]; then
|
||||
echo "Build directory not configured: $BUILD_DIR" >&2
|
||||
echo "Run: cmake -S \"$ROOT_DIR\" -B \"$BUILD_DIR\" -G Ninja" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p "$DIST_DIR"
|
||||
rm -rf "$STAGE_DIR"
|
||||
mkdir -p "$PKG_ROOT/DEBIAN"
|
||||
|
||||
VERSION="$(sed -n 's/^CMAKE_PROJECT_VERSION:STATIC=//p' "$BUILD_DIR/CMakeCache.txt" | head -n1)"
|
||||
ARCH="$(dpkg --print-architecture)"
|
||||
|
||||
if [[ -z "$VERSION" ]]; then
|
||||
echo "Unable to determine project version from $BUILD_DIR/CMakeCache.txt" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cmake --build "$BUILD_DIR" -j
|
||||
cmake --install "$BUILD_DIR" --prefix "$PKG_ROOT/usr"
|
||||
|
||||
cat > "$PKG_ROOT/DEBIAN/control" <<EOF
|
||||
Package: orbithub
|
||||
Version: ${VERSION}
|
||||
Section: net
|
||||
Priority: optional
|
||||
Architecture: ${ARCH}
|
||||
Maintainer: OrbitHub Maintainers <maintainers@orbithub.local>
|
||||
Depends: libc6, libstdc++6, libqt6core6, libqt6gui6, libqt6widgets6, libqt6sql6, libssl3, zlib1g, openssh-client
|
||||
Description: OrbitHub remote session manager
|
||||
OrbitHub is a native desktop application for managing connection profiles
|
||||
and opening SSH and RDP sessions in a tabbed interface.
|
||||
EOF
|
||||
|
||||
cat > "$PKG_ROOT/DEBIAN/postinst" <<'EOF'
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if command -v update-desktop-database >/dev/null 2>&1; then
|
||||
update-desktop-database -q /usr/share/applications || true
|
||||
fi
|
||||
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
|
||||
gtk-update-icon-cache -q /usr/share/icons/hicolor || true
|
||||
fi
|
||||
EOF
|
||||
chmod 0755 "$PKG_ROOT/DEBIAN/postinst"
|
||||
|
||||
cat > "$PKG_ROOT/DEBIAN/postrm" <<'EOF'
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if command -v update-desktop-database >/dev/null 2>&1; then
|
||||
update-desktop-database -q /usr/share/applications || true
|
||||
fi
|
||||
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
|
||||
gtk-update-icon-cache -q /usr/share/icons/hicolor || true
|
||||
fi
|
||||
EOF
|
||||
chmod 0755 "$PKG_ROOT/DEBIAN/postrm"
|
||||
|
||||
OUTPUT_DEB="$DIST_DIR/orbithub_${VERSION}_${ARCH}.deb"
|
||||
fakeroot dpkg-deb --build "$PKG_ROOT" "$OUTPUT_DEB" >/dev/null
|
||||
echo "Created $OUTPUT_DEB"
|
||||
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 645 B |
|
After Width: | Height: | Size: 960 B |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=OrbitHub
|
||||
GenericName=Remote Session Manager
|
||||
Comment=Manage SSH and RDP sessions in one native app
|
||||
Exec=orbithub
|
||||
Icon=org.darksingularity.OrbitHub
|
||||
Terminal=false
|
||||
StartupWMClass=OrbitHub
|
||||
Categories=Network;RemoteAccess;Utility;
|
||||
StartupNotify=true
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>org.darksingularity.OrbitHub</id>
|
||||
<name>OrbitHub</name>
|
||||
<summary>Unified remote session manager for SSH and RDP</summary>
|
||||
<metadata_license>MIT</metadata_license>
|
||||
<project_license>MIT</project_license>
|
||||
<description>
|
||||
<p>OrbitHub is a native desktop app for organizing connection profiles and launching SSH and RDP sessions in one tabbed interface.</p>
|
||||
</description>
|
||||
<launchable type="desktop-id">org.darksingularity.OrbitHub.desktop</launchable>
|
||||
<url type="homepage">https://git.darksingularity.org/DarkSingularity/orbithub</url>
|
||||
<url type="bugtracker">https://git.darksingularity.org/DarkSingularity/orbithub/issues</url>
|
||||
<url type="vcs-browser">https://git.darksingularity.org/DarkSingularity/orbithub</url>
|
||||
<developer id="org.darksingularity">
|
||||
<name>DarkSingularity</name>
|
||||
</developer>
|
||||
<provides>
|
||||
<binary>orbithub</binary>
|
||||
</provides>
|
||||
<content_rating type="oars-1.1" />
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<caption>Profiles organized into folders</caption>
|
||||
<image>https://git.darksingularity.org/DarkSingularity/orbithub/raw/branch/main/docs/images/screenshot-profiles.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<caption>Active SSH terminal session</caption>
|
||||
<image>https://git.darksingularity.org/DarkSingularity/orbithub/raw/branch/main/docs/images/screenshot-ssh-session.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<caption>Active RDP session</caption>
|
||||
<image>https://git.darksingularity.org/DarkSingularity/orbithub/raw/branch/main/docs/images/screenshot-rdp-session.png</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="2026.9.15" date="2026-09-15">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.15</url>
|
||||
<description>
|
||||
<p>Adds Import/Export for profile lists (File menu).</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2026.9.14.2" date="2026-09-14">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.14.2</url>
|
||||
<description>
|
||||
<p>Fixes RDP display corruption (missing/misplaced taskbar, stale composited content) after resizing the session window.</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2026.9.14" date="2026-09-14">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.14</url>
|
||||
<description>
|
||||
<p>Fixes distorted RDP text on HiDPI monitors, and reduces RDP resize-related display glitches.</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2026.9.8.3" date="2026-09-08">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8.3</url>
|
||||
<description>
|
||||
<p>Adds an in-app User Guide (Help -> User Guide) and a standalone User Guide PDF.</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2026.9.8.2" date="2026-09-08">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8.2</url>
|
||||
<description>
|
||||
<p>Fixes RDP connections silently accepting any server TLS certificate, including changed ones. Certificates are now verified with trust-on-first-use, matching SSH's known-hosts behavior.</p>
|
||||
</description>
|
||||
</release>
|
||||
<release version="2026.9.8" date="2026-09-08">
|
||||
<url>https://git.darksingularity.org/DarkSingularity/orbithub/releases/tag/v2026.9.8</url>
|
||||
</release>
|
||||
</releases>
|
||||
</component>
|
||||
@@ -0,0 +1,100 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
||||
BUILD_DIR="${1:-$ROOT_DIR/build}"
|
||||
DIST_DIR="${2:-$ROOT_DIR/dist/macos}"
|
||||
STAGE_DIR="$DIST_DIR/dmg-staging"
|
||||
INSTALL_PREFIX="$DIST_DIR/install"
|
||||
APP_BUNDLE="OrbitHub.app"
|
||||
|
||||
if [[ ! -f "$BUILD_DIR/CMakeCache.txt" ]]; then
|
||||
echo "Build directory not configured: $BUILD_DIR" >&2
|
||||
echo "Run: cmake -S \"$ROOT_DIR\" -B \"$BUILD_DIR\" -G Ninja" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VERSION="$(sed -n 's/^CMAKE_PROJECT_VERSION:STATIC=//p' "$BUILD_DIR/CMakeCache.txt" | head -n1)"
|
||||
if [[ -z "$VERSION" ]]; then
|
||||
echo "Unable to determine project version from $BUILD_DIR/CMakeCache.txt" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
MACDEPLOYQT="$(brew --prefix qt@6)/bin/macdeployqt"
|
||||
if [[ ! -x "$MACDEPLOYQT" ]]; then
|
||||
echo "macdeployqt not found at $MACDEPLOYQT" >&2
|
||||
echo "Install it: brew install qt@6" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p "$DIST_DIR"
|
||||
rm -rf "$STAGE_DIR" "$INSTALL_PREFIX"
|
||||
mkdir -p "$STAGE_DIR"
|
||||
|
||||
cmake --build "$BUILD_DIR" -j
|
||||
cmake --install "$BUILD_DIR" --prefix "$INSTALL_PREFIX"
|
||||
|
||||
if [[ ! -d "$INSTALL_PREFIX/$APP_BUNDLE" ]]; then
|
||||
echo "Expected app bundle not found: $INSTALL_PREFIX/$APP_BUNDLE" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
"$MACDEPLOYQT" "$INSTALL_PREFIX/$APP_BUNDLE"
|
||||
|
||||
# macdeployqt rewrites library load paths after bundling Qt, which
|
||||
# invalidates any prior signature. Re-sign (ad hoc, since we have no
|
||||
# Developer ID certificate) so the app passes macOS's code-integrity
|
||||
# check at launch. Without this, launching fails with a generic
|
||||
# "cannot be opened because of a problem" crash-reporter dialog rather
|
||||
# than the milder unidentified-developer Gatekeeper prompt.
|
||||
codesign --force --deep --sign - "$INSTALL_PREFIX/$APP_BUNDLE"
|
||||
|
||||
cp -R "$INSTALL_PREFIX/$APP_BUNDLE" "$STAGE_DIR/$APP_BUNDLE"
|
||||
ln -s /Applications "$STAGE_DIR/Applications"
|
||||
cp "$ROOT_DIR/packaging/macos/orbithub.icns" "$STAGE_DIR/.VolumeIcon.icns"
|
||||
|
||||
OUTPUT_DMG="$DIST_DIR/OrbitHub-${VERSION}.dmg"
|
||||
RW_DMG="$DIST_DIR/OrbitHub-rw.dmg"
|
||||
rm -f "$OUTPUT_DMG" "$RW_DMG"
|
||||
|
||||
hdiutil create -volname "OrbitHub" -srcfolder "$STAGE_DIR" -ov -format UDRW "$RW_DMG"
|
||||
|
||||
# Setting the volume's icon requires flipping a Finder attribute bit,
|
||||
# which needs SetFile (from Xcode's "Additional Tools", not the base
|
||||
# Command Line Tools) or the fileicon brew formula. Neither is
|
||||
# guaranteed to be installed, so this step degrades gracefully: the
|
||||
# dmg is still produced either way, just without a custom icon if no
|
||||
# tool is available.
|
||||
ICON_TOOL=""
|
||||
if command -v SetFile >/dev/null 2>&1; then
|
||||
ICON_TOOL="SetFile"
|
||||
elif [[ -x /Library/Developer/CommandLineTools/usr/bin/SetFile ]]; then
|
||||
ICON_TOOL="/Library/Developer/CommandLineTools/usr/bin/SetFile"
|
||||
elif command -v fileicon >/dev/null 2>&1; then
|
||||
ICON_TOOL="fileicon"
|
||||
fi
|
||||
|
||||
if [[ -n "$ICON_TOOL" ]]; then
|
||||
MOUNT_DIR="$(mktemp -d)"
|
||||
hdiutil attach "$RW_DMG" -mountpoint "$MOUNT_DIR" -nobrowse -quiet
|
||||
|
||||
if [[ "$ICON_TOOL" == "fileicon" ]]; then
|
||||
fileicon set "$MOUNT_DIR" "$ROOT_DIR/packaging/macos/orbithub.icns" >/dev/null
|
||||
else
|
||||
"$ICON_TOOL" -a V "$MOUNT_DIR/.VolumeIcon.icns"
|
||||
"$ICON_TOOL" -a C "$MOUNT_DIR"
|
||||
fi
|
||||
|
||||
hdiutil detach "$MOUNT_DIR" -quiet
|
||||
rmdir "$MOUNT_DIR" 2>/dev/null || true
|
||||
else
|
||||
echo "Note: SetFile/fileicon not found, dmg will use the generic disk icon." >&2
|
||||
echo " Install one to get a custom volume icon:" >&2
|
||||
echo " brew install fileicon" >&2
|
||||
echo " or download 'Additional Tools for Xcode' from developer.apple.com/download/all" >&2
|
||||
fi
|
||||
|
||||
hdiutil convert "$RW_DMG" -format UDZO -ov -o "$OUTPUT_DMG"
|
||||
rm -f "$RW_DMG"
|
||||
|
||||
echo "Created $OUTPUT_DMG"
|
||||
@@ -0,0 +1,36 @@
|
||||
param(
|
||||
[string]$BuildDir = "$PSScriptRoot\..\..\build",
|
||||
[string]$DistDir = "$PSScriptRoot\..\..\dist\windows"
|
||||
)
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$cacheFile = Join-Path $BuildDir "CMakeCache.txt"
|
||||
if (-not (Test-Path $cacheFile)) {
|
||||
throw "Build directory not configured: $BuildDir (run cmake -S . -B build first)"
|
||||
}
|
||||
|
||||
$versionLine = Select-String -Path $cacheFile -Pattern '^CMAKE_PROJECT_VERSION:STATIC=(.*)$'
|
||||
if (-not $versionLine) {
|
||||
throw "Unable to determine project version from $cacheFile"
|
||||
}
|
||||
$version = $versionLine.Matches[0].Groups[1].Value
|
||||
|
||||
$isccCandidates = @(
|
||||
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe",
|
||||
"C:\Program Files\Inno Setup 6\ISCC.exe",
|
||||
"$env:LOCALAPPDATA\Programs\Inno Setup 6\ISCC.exe"
|
||||
)
|
||||
$iscc = $isccCandidates | Where-Object { Test-Path $_ } | Select-Object -First 1
|
||||
if (-not $iscc) {
|
||||
throw "Inno Setup compiler (ISCC.exe) not found. Install it: winget install -e --id JRSoftware.InnoSetup"
|
||||
}
|
||||
|
||||
New-Item -ItemType Directory -Force -Path $DistDir | Out-Null
|
||||
|
||||
& $iscc "/DMyAppVersion=$version" "$PSScriptRoot\orbithub.iss"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
throw "ISCC.exe failed with exit code $LASTEXITCODE"
|
||||
}
|
||||
|
||||
Write-Output "Created $DistDir\OrbitHub-Setup-$version.exe"
|
||||
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1,46 @@
|
||||
#ifndef MyAppVersion
|
||||
#define MyAppVersion "0.0.0"
|
||||
#endif
|
||||
|
||||
#define MyAppName "OrbitHub"
|
||||
#define MyAppPublisher "OrbitHub Maintainers"
|
||||
#define MyAppExeName "orbithub.exe"
|
||||
#define MyBuildDir "..\..\build"
|
||||
|
||||
[Setup]
|
||||
AppId={{6B2E0B8F-2C6D-4E7C-9C36-6C6C9C6F6C1A}
|
||||
AppName={#MyAppName}
|
||||
AppVersion={#MyAppVersion}
|
||||
AppPublisher={#MyAppPublisher}
|
||||
DefaultDirName={autopf}\{#MyAppName}
|
||||
DefaultGroupName={#MyAppName}
|
||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||
OutputDir=..\..\dist\windows
|
||||
OutputBaseFilename=OrbitHub-Setup-{#MyAppVersion}
|
||||
Compression=lzma2
|
||||
SolidCompression=yes
|
||||
ArchitecturesAllowed=x64compatible
|
||||
ArchitecturesInstallIn64BitMode=x64compatible
|
||||
SetupIconFile=orbithub.ico
|
||||
WizardStyle=modern
|
||||
DisableProgramGroupPage=yes
|
||||
|
||||
[Languages]
|
||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
[Tasks]
|
||||
Name: "desktopicon"; Description: "Create a &desktop shortcut"; GroupDescription: "Additional icons:"; Flags: unchecked
|
||||
|
||||
[Files]
|
||||
Source: "{#MyBuildDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "{#MyBuildDir}\*.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "{#MyBuildDir}\platforms\*"; DestDir: "{app}\platforms"; Flags: ignoreversion recursesubdirs
|
||||
Source: "{#MyBuildDir}\sqldrivers\*"; DestDir: "{app}\sqldrivers"; Flags: ignoreversion recursesubdirs
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||||
Name: "{group}\Uninstall {#MyAppName}"; Filename: "{uninstallexe}"
|
||||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||
|
||||
[Run]
|
||||
Filename: "{app}\{#MyAppExeName}"; Description: "Launch {#MyAppName}"; Flags: nowait postinstall skipifsilent
|
||||
@@ -0,0 +1 @@
|
||||
1 ICON "orbithub.ico"
|
||||
@@ -0,0 +1,117 @@
|
||||
#include "about_dialog.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QCoreApplication>
|
||||
#include <QDialogButtonBox>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QTextBrowser>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
namespace {
|
||||
// palette(mid) is meant for 3D bevel/shadow decoration, not text — it has
|
||||
// poor contrast against the window background in dark themes (barely
|
||||
// legible). Blend the widget's actual text and window colors instead, so
|
||||
// the result is reliably readable — de-emphasized relative to full-strength
|
||||
// text, but never low-contrast — in either a light or dark theme.
|
||||
QColor mutedTextColor(const QWidget* widget)
|
||||
{
|
||||
const QPalette pal = widget->palette();
|
||||
const QColor text = pal.color(QPalette::WindowText);
|
||||
const QColor background = pal.color(QPalette::Window);
|
||||
constexpr qreal kTextWeight = 0.65;
|
||||
|
||||
auto blend = [kTextWeight](int textChannel, int backgroundChannel) {
|
||||
return qBound(0,
|
||||
qRound(textChannel * kTextWeight + backgroundChannel * (1.0 - kTextWeight)),
|
||||
255);
|
||||
};
|
||||
|
||||
return QColor(blend(text.red(), background.red()),
|
||||
blend(text.green(), background.green()),
|
||||
blend(text.blue(), background.blue()));
|
||||
}
|
||||
}
|
||||
|
||||
AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent)
|
||||
{
|
||||
setWindowTitle(QStringLiteral("About OrbitHub"));
|
||||
setWindowIcon(QApplication::windowIcon());
|
||||
resize(760, 560);
|
||||
|
||||
auto* layout = new QVBoxLayout(this);
|
||||
layout->setContentsMargins(16, 16, 16, 16);
|
||||
layout->setSpacing(12);
|
||||
|
||||
auto* headerRow = new QHBoxLayout();
|
||||
headerRow->setSpacing(12);
|
||||
|
||||
auto* iconLabel = new QLabel(this);
|
||||
iconLabel->setFixedSize(80, 80);
|
||||
iconLabel->setPixmap(QApplication::windowIcon().pixmap(80, 80));
|
||||
iconLabel->setAlignment(Qt::AlignCenter);
|
||||
|
||||
auto* titleColumn = new QVBoxLayout();
|
||||
titleColumn->setSpacing(4);
|
||||
|
||||
auto* title = new QLabel(QStringLiteral("<h1 style='margin:0'>OrbitHub</h1>"), this);
|
||||
auto* subtitle = new QLabel(
|
||||
QStringLiteral("Unified remote session manager for SSH, RDP, and VNC workflows."),
|
||||
this);
|
||||
subtitle->setWordWrap(true);
|
||||
subtitle->setStyleSheet(QStringLiteral("color: %1;").arg(mutedTextColor(this).name()));
|
||||
|
||||
const QString version = QCoreApplication::applicationVersion().trimmed().isEmpty()
|
||||
? QStringLiteral("Development build")
|
||||
: QCoreApplication::applicationVersion().trimmed();
|
||||
auto* buildLine = new QLabel(
|
||||
QStringLiteral("Version: %1 | Qt runtime linked dynamically").arg(version),
|
||||
this);
|
||||
buildLine->setStyleSheet(QStringLiteral("color: %1;").arg(mutedTextColor(this).name()));
|
||||
|
||||
titleColumn->addWidget(title);
|
||||
titleColumn->addWidget(subtitle);
|
||||
titleColumn->addWidget(buildLine);
|
||||
titleColumn->addStretch();
|
||||
|
||||
headerRow->addWidget(iconLabel, 0, Qt::AlignTop);
|
||||
headerRow->addLayout(titleColumn, 1);
|
||||
|
||||
auto* browser = new QTextBrowser(this);
|
||||
browser->setOpenExternalLinks(true);
|
||||
browser->setStyleSheet(QStringLiteral(
|
||||
"QTextBrowser { border: 1px solid palette(midlight); border-radius: 8px; padding: 8px; }"));
|
||||
browser->setHtml(QStringLiteral(R"(
|
||||
<h3 style="margin-top:0">Third-Party Libraries</h3>
|
||||
<p>OrbitHub uses the following external libraries:</p>
|
||||
<table cellspacing="0" cellpadding="6" border="1" style="border-collapse:collapse; width:100%;">
|
||||
<tr><th align="left">Library</th><th align="left">License</th><th align="left">Upstream</th></tr>
|
||||
<tr><td>Qt 6 (Widgets / SQL)</td><td>LGPLv3 / GPLv3 / Commercial</td><td><a href="https://www.qt.io/licensing">qt.io/licensing</a></td></tr>
|
||||
<tr><td>KodoTerm</td><td>MIT</td><td><a href="https://github.com/diegoiast/KodoTerm">github.com/diegoiast/KodoTerm</a></td></tr>
|
||||
<tr><td>libvterm</td><td>MIT</td><td><a href="https://github.com/neovim/libvterm">github.com/neovim/libvterm</a></td></tr>
|
||||
<tr><td>FreeRDP / WinPR</td><td>Apache License 2.0</td><td><a href="https://github.com/FreeRDP/FreeRDP">github.com/FreeRDP/FreeRDP</a></td></tr>
|
||||
</table>
|
||||
|
||||
<h3>License Links</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.gnu.org/licenses/lgpl-3.0.html">GNU LGPLv3 (gnu.org)</a></li>
|
||||
<li><a href="https://opensource.org/licenses/MIT">MIT License (opensource.org)</a></li>
|
||||
<li><a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0 (apache.org)</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>License Files In This Repository</h3>
|
||||
<ul>
|
||||
<li><code>third_party/KodoTerm/LICENSE</code></li>
|
||||
<li><code>third_party/FreeRDP/LICENSE</code></li>
|
||||
<li><code>LICENSE</code> (project license)</li>
|
||||
</ul>
|
||||
)"));
|
||||
|
||||
auto* buttons = new QDialogButtonBox(QDialogButtonBox::Close, this);
|
||||
connect(buttons, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
||||
connect(buttons, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
||||
|
||||
layout->addLayout(headerRow);
|
||||
layout->addWidget(browser, 1);
|
||||
layout->addWidget(buttons);
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
#ifndef ORBITHUB_ABOUT_DIALOG_H
|
||||
#define ORBITHUB_ABOUT_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class AboutDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AboutDialog(QWidget* parent = nullptr);
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,101 @@
|
||||
#include "app_icon.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QColor>
|
||||
#include <QLinearGradient>
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
#include <QPen>
|
||||
#include <QPixmap>
|
||||
|
||||
namespace {
|
||||
QPixmap renderIconPixmap(int size)
|
||||
{
|
||||
QPixmap pixmap(size, size);
|
||||
pixmap.fill(Qt::transparent);
|
||||
|
||||
QPainter painter(&pixmap);
|
||||
painter.setRenderHint(QPainter::Antialiasing, true);
|
||||
|
||||
const qreal s = static_cast<qreal>(size);
|
||||
const QRectF badgeRect(0.06 * s, 0.06 * s, 0.88 * s, 0.88 * s);
|
||||
const qreal badgeRadius = 0.19 * s;
|
||||
|
||||
QLinearGradient badgeGradient(badgeRect.topLeft(), badgeRect.bottomRight());
|
||||
badgeGradient.setColorAt(0.0, QColor(QStringLiteral("#0B1220")));
|
||||
badgeGradient.setColorAt(1.0, QColor(QStringLiteral("#111827")));
|
||||
|
||||
QPainterPath badgePath;
|
||||
badgePath.addRoundedRect(badgeRect, badgeRadius, badgeRadius);
|
||||
painter.fillPath(badgePath, badgeGradient);
|
||||
|
||||
const QPointF center(0.5 * s, 0.5 * s);
|
||||
const QRectF orbitRect(0.14 * s, 0.26 * s, 0.72 * s, 0.44 * s);
|
||||
|
||||
// Draw orbit behind monitor first.
|
||||
QPen orbitBackPen(QColor(QStringLiteral("#38BDF8")));
|
||||
orbitBackPen.setWidthF(0.06 * s);
|
||||
orbitBackPen.setCapStyle(Qt::RoundCap);
|
||||
painter.setPen(orbitBackPen);
|
||||
painter.setBrush(Qt::NoBrush);
|
||||
|
||||
QTransform orbitTransform;
|
||||
orbitTransform.translate(center.x(), center.y());
|
||||
orbitTransform.rotate(-20.0);
|
||||
orbitTransform.translate(-center.x(), -center.y());
|
||||
painter.setTransform(orbitTransform);
|
||||
painter.drawEllipse(orbitRect);
|
||||
painter.resetTransform();
|
||||
|
||||
const QRectF monitorRect(0.2 * s, 0.2 * s, 0.6 * s, 0.44 * s);
|
||||
const QRectF screenRect(0.24 * s, 0.24 * s, 0.52 * s, 0.34 * s);
|
||||
const QRectF standStemRect(0.46 * s, 0.64 * s, 0.08 * s, 0.1 * s);
|
||||
const QRectF standBaseRect(0.34 * s, 0.74 * s, 0.32 * s, 0.08 * s);
|
||||
|
||||
QPainterPath monitorPath;
|
||||
monitorPath.addRoundedRect(monitorRect, 0.07 * s, 0.07 * s);
|
||||
painter.fillPath(monitorPath, QColor(QStringLiteral("#1F2937")));
|
||||
painter.setPen(QPen(QColor(QStringLiteral("#4B5563")), 0.016 * s));
|
||||
painter.drawPath(monitorPath);
|
||||
|
||||
QLinearGradient screenGradient(screenRect.topLeft(), screenRect.bottomRight());
|
||||
screenGradient.setColorAt(0.0, QColor(QStringLiteral("#22D3EE")));
|
||||
screenGradient.setColorAt(0.55, QColor(QStringLiteral("#38BDF8")));
|
||||
screenGradient.setColorAt(1.0, QColor(QStringLiteral("#0EA5E9")));
|
||||
painter.fillRect(screenRect, screenGradient);
|
||||
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(QColor(QStringLiteral("#9CA3AF")));
|
||||
painter.drawRoundedRect(standStemRect, 0.02 * s, 0.02 * s);
|
||||
painter.setBrush(QColor(QStringLiteral("#6B7280")));
|
||||
painter.drawRoundedRect(standBaseRect, 0.03 * s, 0.03 * s);
|
||||
|
||||
// Orbit front segment over monitor for depth.
|
||||
QPen orbitFrontPen(QColor(QStringLiteral("#A3E635")));
|
||||
orbitFrontPen.setWidthF(0.06 * s);
|
||||
orbitFrontPen.setCapStyle(Qt::RoundCap);
|
||||
painter.setPen(orbitFrontPen);
|
||||
painter.setBrush(Qt::NoBrush);
|
||||
painter.setTransform(orbitTransform);
|
||||
painter.drawArc(orbitRect, 212 * 16, 126 * 16);
|
||||
painter.drawArc(orbitRect, 6 * 16, 24 * 16);
|
||||
painter.resetTransform();
|
||||
|
||||
// Small indicator star.
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(QColor(QStringLiteral("#E5E7EB")));
|
||||
painter.drawEllipse(QPointF(0.77 * s, 0.2 * s), 0.02 * s, 0.02 * s);
|
||||
|
||||
return pixmap;
|
||||
}
|
||||
}
|
||||
|
||||
QIcon createOrbitHubAppIcon()
|
||||
{
|
||||
QIcon icon;
|
||||
const int sizes[] = {16, 24, 32, 48, 64, 128, 256};
|
||||
for (const int size : sizes) {
|
||||
icon.addPixmap(renderIconPixmap(size));
|
||||
}
|
||||
return icon;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
#ifndef ORBITHUB_APP_ICON_H
|
||||
#define ORBITHUB_APP_ICON_H
|
||||
|
||||
#include <QIcon>
|
||||
|
||||
QIcon createOrbitHubAppIcon();
|
||||
|
||||
#endif
|
||||
@@ -1,4 +1,5 @@
|
||||
#include "profiles_window.h"
|
||||
#include "app_icon.h"
|
||||
#include "session_window.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
@@ -7,8 +8,14 @@ int main(int argc, char* argv[])
|
||||
Q_INIT_RESOURCE(KodoTermThemes);
|
||||
|
||||
QApplication app(argc, argv);
|
||||
app.setOrganizationName(QStringLiteral("FireBugIT"));
|
||||
app.setApplicationName(QStringLiteral("OrbitHub"));
|
||||
#ifdef ORBITHUB_VERSION_STRING
|
||||
app.setApplicationVersion(QStringLiteral(ORBITHUB_VERSION_STRING));
|
||||
#endif
|
||||
app.setWindowIcon(createOrbitHubAppIcon());
|
||||
|
||||
ProfilesWindow window;
|
||||
SessionWindow window;
|
||||
window.show();
|
||||
|
||||
return app.exec();
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include <QComboBox>
|
||||
#include <QDialogButtonBox>
|
||||
#include <QFileDialog>
|
||||
#include <QFileInfo>
|
||||
#include <QFormLayout>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
@@ -24,6 +25,28 @@ int standardPortForProtocol(const QString& protocol)
|
||||
}
|
||||
return 22; // SSH default
|
||||
}
|
||||
|
||||
QString normalizedProtocol(const QString& protocol)
|
||||
{
|
||||
if (protocol.compare(QStringLiteral("RDP"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("RDP");
|
||||
}
|
||||
if (protocol.compare(QStringLiteral("VNC"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("VNC");
|
||||
}
|
||||
return QStringLiteral("SSH");
|
||||
}
|
||||
|
||||
QString normalizedAuthMode(const QString& protocol, const QString& authMode)
|
||||
{
|
||||
if (protocol != QStringLiteral("SSH")) {
|
||||
return QStringLiteral("Password");
|
||||
}
|
||||
if (authMode.compare(QStringLiteral("Private Key"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("Private Key");
|
||||
}
|
||||
return QStringLiteral("Password");
|
||||
}
|
||||
}
|
||||
|
||||
ProfileDialog::ProfileDialog(QWidget* parent)
|
||||
@@ -33,18 +56,24 @@ ProfileDialog::ProfileDialog(QWidget* parent)
|
||||
m_portInput(new QSpinBox(this)),
|
||||
m_usernameInput(new QLineEdit(this)),
|
||||
m_domainInput(new QLineEdit(this)),
|
||||
m_tagsInput(new QLineEdit(this)),
|
||||
m_protocolInput(new QComboBox(this)),
|
||||
m_authModeInput(new QComboBox(this)),
|
||||
m_privateKeyPathInput(new QLineEdit(this)),
|
||||
m_browsePrivateKeyButton(new QPushButton(QStringLiteral("Browse"), this)),
|
||||
m_knownHostsPolicyInput(new QComboBox(this)),
|
||||
m_rdpSecurityModeInput(new QComboBox(this)),
|
||||
m_rdpPerformanceProfileInput(new QComboBox(this))
|
||||
m_rdpPerformanceProfileInput(new QComboBox(this)),
|
||||
m_protocolHint(new QLabel(this)),
|
||||
m_folderHint(new QLabel(this))
|
||||
{
|
||||
resize(520, 340);
|
||||
resize(560, 360);
|
||||
|
||||
auto* layout = new QVBoxLayout(this);
|
||||
auto* form = new QFormLayout();
|
||||
form->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
||||
form->setFormAlignment(Qt::AlignLeft | Qt::AlignTop);
|
||||
form->setLabelAlignment(Qt::AlignRight);
|
||||
|
||||
m_nameInput->setPlaceholderText(QStringLiteral("Production Bastion"));
|
||||
m_hostInput->setPlaceholderText(QStringLiteral("example.internal"));
|
||||
@@ -52,6 +81,7 @@ ProfileDialog::ProfileDialog(QWidget* parent)
|
||||
m_portInput->setValue(22);
|
||||
m_usernameInput->setPlaceholderText(QStringLiteral("deploy"));
|
||||
m_domainInput->setPlaceholderText(QStringLiteral("CONTOSO"));
|
||||
m_tagsInput->setPlaceholderText(QStringLiteral("prod, linux, db"));
|
||||
|
||||
m_protocolInput->addItems({QStringLiteral("SSH"), QStringLiteral("RDP"), QStringLiteral("VNC")});
|
||||
m_authModeInput->addItems({QStringLiteral("Password"), QStringLiteral("Private Key")});
|
||||
@@ -107,6 +137,7 @@ ProfileDialog::ProfileDialog(QWidget* parent)
|
||||
form->addRow(QStringLiteral("Port"), m_portInput);
|
||||
form->addRow(QStringLiteral("Username"), m_usernameInput);
|
||||
form->addRow(QStringLiteral("Domain"), m_domainInput);
|
||||
form->addRow(QStringLiteral("Tags"), m_tagsInput);
|
||||
form->addRow(QStringLiteral("Protocol"), m_protocolInput);
|
||||
form->addRow(QStringLiteral("Auth Mode"), m_authModeInput);
|
||||
form->addRow(QStringLiteral("Private Key"), privateKeyRow);
|
||||
@@ -118,12 +149,16 @@ ProfileDialog::ProfileDialog(QWidget* parent)
|
||||
QStringLiteral("Passwords are requested at connect time and are not stored."),
|
||||
this);
|
||||
note->setWordWrap(true);
|
||||
m_protocolHint->setWordWrap(true);
|
||||
m_folderHint->setWordWrap(true);
|
||||
|
||||
auto* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this);
|
||||
connect(buttons, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
||||
connect(buttons, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
||||
|
||||
layout->addLayout(form);
|
||||
layout->addWidget(m_protocolHint);
|
||||
layout->addWidget(m_folderHint);
|
||||
layout->addWidget(note);
|
||||
layout->addWidget(buttons);
|
||||
|
||||
@@ -135,6 +170,12 @@ void ProfileDialog::setDialogTitle(const QString& title)
|
||||
setWindowTitle(title);
|
||||
}
|
||||
|
||||
void ProfileDialog::setDefaultFolderPath(const QString& folderPath)
|
||||
{
|
||||
m_defaultFolderPath = folderPath.trimmed();
|
||||
refreshAuthFields();
|
||||
}
|
||||
|
||||
void ProfileDialog::setProfile(const Profile& profile)
|
||||
{
|
||||
m_nameInput->setText(profile.name);
|
||||
@@ -142,6 +183,8 @@ void ProfileDialog::setProfile(const Profile& profile)
|
||||
m_portInput->setValue(profile.port > 0 ? profile.port : 22);
|
||||
m_usernameInput->setText(profile.username);
|
||||
m_domainInput->setText(profile.domain);
|
||||
m_defaultFolderPath = profile.folderPath.trimmed();
|
||||
m_tagsInput->setText(profile.tags);
|
||||
m_privateKeyPathInput->setText(profile.privateKeyPath);
|
||||
|
||||
const int protocolIndex = m_protocolInput->findText(profile.protocol);
|
||||
@@ -169,18 +212,31 @@ void ProfileDialog::setProfile(const Profile& profile)
|
||||
Profile ProfileDialog::profile() const
|
||||
{
|
||||
Profile profile;
|
||||
const QString protocol = normalizedProtocol(m_protocolInput->currentText());
|
||||
const QString authMode = normalizedAuthMode(protocol, m_authModeInput->currentText());
|
||||
|
||||
profile.id = -1;
|
||||
profile.name = m_nameInput->text().trimmed();
|
||||
profile.host = m_hostInput->text().trimmed();
|
||||
profile.port = m_portInput->value();
|
||||
profile.username = m_usernameInput->text().trimmed();
|
||||
profile.domain = m_domainInput->text().trimmed();
|
||||
profile.protocol = m_protocolInput->currentText();
|
||||
profile.authMode = m_authModeInput->currentText();
|
||||
profile.privateKeyPath = m_privateKeyPathInput->text().trimmed();
|
||||
profile.knownHostsPolicy = m_knownHostsPolicyInput->currentText();
|
||||
profile.rdpSecurityMode = m_rdpSecurityModeInput->currentText();
|
||||
profile.rdpPerformanceProfile = m_rdpPerformanceProfileInput->currentText();
|
||||
profile.domain = protocol == QStringLiteral("RDP") ? m_domainInput->text().trimmed() : QString();
|
||||
profile.folderPath = m_defaultFolderPath.trimmed();
|
||||
profile.tags = m_tagsInput->text().trimmed();
|
||||
profile.protocol = protocol;
|
||||
profile.authMode = authMode;
|
||||
profile.privateKeyPath = (protocol == QStringLiteral("SSH")
|
||||
&& authMode == QStringLiteral("Private Key"))
|
||||
? m_privateKeyPathInput->text().trimmed()
|
||||
: QString();
|
||||
profile.knownHostsPolicy = protocol == QStringLiteral("SSH") ? m_knownHostsPolicyInput->currentText()
|
||||
: QStringLiteral("Ask");
|
||||
profile.rdpSecurityMode = protocol == QStringLiteral("RDP")
|
||||
? m_rdpSecurityModeInput->currentText()
|
||||
: QStringLiteral("Negotiate");
|
||||
profile.rdpPerformanceProfile = protocol == QStringLiteral("RDP")
|
||||
? m_rdpPerformanceProfileInput->currentText()
|
||||
: QStringLiteral("Balanced");
|
||||
return profile;
|
||||
}
|
||||
|
||||
@@ -209,14 +265,40 @@ void ProfileDialog::accept()
|
||||
return;
|
||||
}
|
||||
|
||||
if (protocol == QStringLiteral("SSH")
|
||||
&& m_authModeInput->currentText() == QStringLiteral("Private Key")) {
|
||||
const QString privateKeyPath = m_privateKeyPathInput->text().trimmed();
|
||||
if (privateKeyPath.isEmpty()) {
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Validation Error"),
|
||||
QStringLiteral("Private key path is required for SSH private key authentication."));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!QFileInfo::exists(privateKeyPath)) {
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Validation Error"),
|
||||
QStringLiteral("Private key file does not exist: %1").arg(privateKeyPath));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
QDialog::accept();
|
||||
}
|
||||
|
||||
void ProfileDialog::refreshAuthFields()
|
||||
{
|
||||
const bool isSsh = m_protocolInput->currentText() == QStringLiteral("SSH");
|
||||
const bool isRdp = m_protocolInput->currentText() == QStringLiteral("RDP");
|
||||
const bool isPrivateKey = m_authModeInput->currentText() == QStringLiteral("Private Key");
|
||||
const QString protocol = normalizedProtocol(m_protocolInput->currentText());
|
||||
const bool isSsh = protocol == QStringLiteral("SSH");
|
||||
const bool isRdp = protocol == QStringLiteral("RDP");
|
||||
const bool isVnc = protocol == QStringLiteral("VNC");
|
||||
|
||||
const QString normalizedMode = normalizedAuthMode(protocol, m_authModeInput->currentText());
|
||||
if (normalizedMode != m_authModeInput->currentText()) {
|
||||
const QSignalBlocker blocker(m_authModeInput);
|
||||
m_authModeInput->setCurrentText(normalizedMode);
|
||||
}
|
||||
const bool isPrivateKey = normalizedMode == QStringLiteral("Private Key");
|
||||
|
||||
m_authModeInput->setEnabled(isSsh);
|
||||
m_privateKeyPathInput->setEnabled(isSsh && isPrivateKey);
|
||||
@@ -225,4 +307,22 @@ void ProfileDialog::refreshAuthFields()
|
||||
m_domainInput->setEnabled(isRdp);
|
||||
m_rdpSecurityModeInput->setEnabled(isRdp);
|
||||
m_rdpPerformanceProfileInput->setEnabled(isRdp);
|
||||
|
||||
if (isSsh) {
|
||||
m_usernameInput->setPlaceholderText(QStringLiteral("deploy"));
|
||||
m_protocolHint->setText(
|
||||
QStringLiteral("SSH: username is required. Choose Password or Private Key auth."));
|
||||
} else if (isRdp) {
|
||||
m_usernameInput->setPlaceholderText(QStringLiteral("Administrator"));
|
||||
m_protocolHint->setText(
|
||||
QStringLiteral("RDP: username and password are required. Domain is optional."));
|
||||
} else if (isVnc) {
|
||||
m_usernameInput->setPlaceholderText(QStringLiteral("optional"));
|
||||
m_protocolHint->setText(
|
||||
QStringLiteral("VNC: host and port are required. Username/domain are optional and ignored by most servers."));
|
||||
}
|
||||
|
||||
m_folderHint->setText(m_defaultFolderPath.isEmpty()
|
||||
? QStringLiteral("Target folder: root")
|
||||
: QStringLiteral("Target folder: %1").arg(m_defaultFolderPath));
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include <QDialog>
|
||||
|
||||
class QComboBox;
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
class QSpinBox;
|
||||
@@ -18,6 +19,7 @@ public:
|
||||
explicit ProfileDialog(QWidget* parent = nullptr);
|
||||
|
||||
void setDialogTitle(const QString& title);
|
||||
void setDefaultFolderPath(const QString& folderPath);
|
||||
void setProfile(const Profile& profile);
|
||||
Profile profile() const;
|
||||
|
||||
@@ -30,6 +32,7 @@ private:
|
||||
QSpinBox* m_portInput;
|
||||
QLineEdit* m_usernameInput;
|
||||
QLineEdit* m_domainInput;
|
||||
QLineEdit* m_tagsInput;
|
||||
QComboBox* m_protocolInput;
|
||||
QComboBox* m_authModeInput;
|
||||
QLineEdit* m_privateKeyPathInput;
|
||||
@@ -37,6 +40,9 @@ private:
|
||||
QComboBox* m_knownHostsPolicyInput;
|
||||
QComboBox* m_rdpSecurityModeInput;
|
||||
QComboBox* m_rdpPerformanceProfileInput;
|
||||
QLabel* m_protocolHint;
|
||||
QLabel* m_folderHint;
|
||||
QString m_defaultFolderPath;
|
||||
|
||||
void refreshAuthFields();
|
||||
};
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <QSqlQuery>
|
||||
#include <QStandardPaths>
|
||||
#include <QVariant>
|
||||
#include <QStringList>
|
||||
|
||||
namespace {
|
||||
QString buildDatabasePath()
|
||||
@@ -52,21 +53,130 @@ QString normalizedRdpPerformanceProfile(const QString& value)
|
||||
return QStringLiteral("Balanced");
|
||||
}
|
||||
|
||||
QString normalizedProtocol(const QString& value)
|
||||
{
|
||||
const QString protocol = value.trimmed();
|
||||
if (protocol.compare(QStringLiteral("RDP"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("RDP");
|
||||
}
|
||||
if (protocol.compare(QStringLiteral("VNC"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("VNC");
|
||||
}
|
||||
return QStringLiteral("SSH");
|
||||
}
|
||||
|
||||
QString normalizedAuthMode(const QString& protocol, const QString& value)
|
||||
{
|
||||
if (protocol != QStringLiteral("SSH")) {
|
||||
return QStringLiteral("Password");
|
||||
}
|
||||
|
||||
const QString authMode = value.trimmed();
|
||||
if (authMode.compare(QStringLiteral("Private Key"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("Private Key");
|
||||
}
|
||||
return QStringLiteral("Password");
|
||||
}
|
||||
|
||||
QString normalizedKnownHostsPolicy(const QString& value)
|
||||
{
|
||||
const QString policy = value.trimmed();
|
||||
if (policy.compare(QStringLiteral("Strict"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("Strict");
|
||||
}
|
||||
if (policy.compare(QStringLiteral("Accept New"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("Accept New");
|
||||
}
|
||||
if (policy.compare(QStringLiteral("Ignore"), Qt::CaseInsensitive) == 0) {
|
||||
return QStringLiteral("Ignore");
|
||||
}
|
||||
return QStringLiteral("Ask");
|
||||
}
|
||||
|
||||
QString normalizedFolderPath(const QString& value)
|
||||
{
|
||||
QString path = value.trimmed();
|
||||
path.replace(QChar::fromLatin1('\\'), QChar::fromLatin1('/'));
|
||||
|
||||
const QStringList rawParts = path.split(QChar::fromLatin1('/'), Qt::SkipEmptyParts);
|
||||
QStringList normalized;
|
||||
for (const QString& rawPart : rawParts) {
|
||||
const QString part = rawPart.trimmed();
|
||||
if (!part.isEmpty()) {
|
||||
normalized.push_back(part);
|
||||
}
|
||||
}
|
||||
|
||||
return normalized.join(QStringLiteral("/"));
|
||||
}
|
||||
|
||||
QString normalizedTags(const QString& value)
|
||||
{
|
||||
const QStringList rawTokens = value.split(QChar::fromLatin1(','), Qt::SkipEmptyParts);
|
||||
QStringList normalized;
|
||||
QSet<QString> dedupe;
|
||||
for (const QString& token : rawTokens) {
|
||||
const QString trimmed = token.trimmed();
|
||||
if (trimmed.isEmpty()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const QString key = trimmed.toLower();
|
||||
if (dedupe.contains(key)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
dedupe.insert(key);
|
||||
normalized.push_back(trimmed);
|
||||
}
|
||||
|
||||
return normalized.join(QStringLiteral(", "));
|
||||
}
|
||||
|
||||
QString orderByClause(ProfileSortOrder sortOrder)
|
||||
{
|
||||
switch (sortOrder) {
|
||||
case ProfileSortOrder::ProtocolAsc:
|
||||
return QStringLiteral("ORDER BY lower(protocol) ASC, lower(name) ASC, id ASC");
|
||||
case ProfileSortOrder::HostAsc:
|
||||
return QStringLiteral("ORDER BY lower(host) ASC, lower(name) ASC, id ASC");
|
||||
case ProfileSortOrder::NameAsc:
|
||||
default:
|
||||
return QStringLiteral("ORDER BY lower(name) ASC, id ASC");
|
||||
}
|
||||
}
|
||||
|
||||
QString nonNullTrimmed(const QString& value)
|
||||
{
|
||||
const QString trimmed = value.trimmed();
|
||||
return trimmed.isNull() ? QStringLiteral("") : trimmed;
|
||||
}
|
||||
|
||||
void bindProfileFields(QSqlQuery& query, const Profile& profile)
|
||||
{
|
||||
query.addBindValue(profile.name.trimmed());
|
||||
query.addBindValue(profile.host.trimmed());
|
||||
const QString protocol = normalizedProtocol(profile.protocol);
|
||||
const QString authMode = normalizedAuthMode(protocol, profile.authMode);
|
||||
const bool isSsh = protocol == QStringLiteral("SSH");
|
||||
const bool isRdp = protocol == QStringLiteral("RDP");
|
||||
|
||||
query.addBindValue(nonNullTrimmed(profile.name));
|
||||
query.addBindValue(nonNullTrimmed(profile.host));
|
||||
query.addBindValue(profile.port);
|
||||
query.addBindValue(profile.username.trimmed());
|
||||
query.addBindValue(profile.domain.trimmed());
|
||||
query.addBindValue(profile.protocol.trimmed());
|
||||
query.addBindValue(profile.authMode.trimmed());
|
||||
query.addBindValue(profile.privateKeyPath.trimmed());
|
||||
query.addBindValue(profile.knownHostsPolicy.trimmed().isEmpty()
|
||||
? QStringLiteral("Ask")
|
||||
: profile.knownHostsPolicy.trimmed());
|
||||
query.addBindValue(normalizedRdpSecurityMode(profile.rdpSecurityMode));
|
||||
query.addBindValue(normalizedRdpPerformanceProfile(profile.rdpPerformanceProfile));
|
||||
query.addBindValue(nonNullTrimmed(profile.username));
|
||||
query.addBindValue(isRdp ? nonNullTrimmed(profile.domain) : QStringLiteral(""));
|
||||
query.addBindValue(nonNullTrimmed(normalizedFolderPath(profile.folderPath)));
|
||||
query.addBindValue(protocol);
|
||||
query.addBindValue(authMode);
|
||||
query.addBindValue((isSsh && authMode == QStringLiteral("Private Key"))
|
||||
? nonNullTrimmed(profile.privateKeyPath)
|
||||
: QStringLiteral(""));
|
||||
query.addBindValue(isSsh ? normalizedKnownHostsPolicy(profile.knownHostsPolicy)
|
||||
: QStringLiteral("Ask"));
|
||||
query.addBindValue(isRdp ? normalizedRdpSecurityMode(profile.rdpSecurityMode)
|
||||
: QStringLiteral("Negotiate"));
|
||||
query.addBindValue(isRdp ? normalizedRdpPerformanceProfile(profile.rdpPerformanceProfile)
|
||||
: QStringLiteral("Balanced"));
|
||||
query.addBindValue(normalizedTags(profile.tags));
|
||||
}
|
||||
|
||||
Profile profileFromQuery(const QSqlQuery& query)
|
||||
@@ -78,22 +188,67 @@ Profile profileFromQuery(const QSqlQuery& query)
|
||||
profile.port = query.value(3).toInt();
|
||||
profile.username = query.value(4).toString();
|
||||
profile.domain = query.value(5).toString();
|
||||
profile.protocol = query.value(6).toString();
|
||||
profile.authMode = query.value(7).toString();
|
||||
profile.privateKeyPath = query.value(8).toString();
|
||||
profile.knownHostsPolicy = query.value(9).toString();
|
||||
if (profile.knownHostsPolicy.isEmpty()) {
|
||||
profile.knownHostsPolicy = QStringLiteral("Ask");
|
||||
}
|
||||
profile.rdpSecurityMode = normalizedRdpSecurityMode(query.value(10).toString());
|
||||
profile.rdpPerformanceProfile = normalizedRdpPerformanceProfile(query.value(11).toString());
|
||||
profile.folderPath = normalizedFolderPath(query.value(6).toString());
|
||||
profile.protocol = normalizedProtocol(query.value(7).toString());
|
||||
profile.authMode = normalizedAuthMode(profile.protocol, query.value(8).toString());
|
||||
profile.privateKeyPath = profile.authMode == QStringLiteral("Private Key")
|
||||
? query.value(9).toString().trimmed()
|
||||
: QString();
|
||||
profile.knownHostsPolicy = profile.protocol == QStringLiteral("SSH")
|
||||
? normalizedKnownHostsPolicy(query.value(10).toString())
|
||||
: QStringLiteral("Ask");
|
||||
profile.rdpSecurityMode = profile.protocol == QStringLiteral("RDP")
|
||||
? normalizedRdpSecurityMode(query.value(11).toString())
|
||||
: QStringLiteral("Negotiate");
|
||||
profile.rdpPerformanceProfile = profile.protocol == QStringLiteral("RDP")
|
||||
? normalizedRdpPerformanceProfile(query.value(12).toString())
|
||||
: QStringLiteral("Balanced");
|
||||
profile.tags = normalizedTags(query.value(13).toString());
|
||||
return profile;
|
||||
}
|
||||
|
||||
bool isProfileValid(const Profile& profile)
|
||||
bool isProfileValid(const Profile& profile, QString* error)
|
||||
{
|
||||
return !profile.name.trimmed().isEmpty() && !profile.host.trimmed().isEmpty()
|
||||
&& profile.port >= 1 && profile.port <= 65535;
|
||||
if (profile.name.trimmed().isEmpty()) {
|
||||
if (error != nullptr) {
|
||||
*error = QStringLiteral("Profile name is required.");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
if (profile.host.trimmed().isEmpty()) {
|
||||
if (error != nullptr) {
|
||||
*error = QStringLiteral("Host is required.");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
if (profile.port < 1 || profile.port > 65535) {
|
||||
if (error != nullptr) {
|
||||
*error = QStringLiteral("Port must be between 1 and 65535.");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const QString protocol = normalizedProtocol(profile.protocol);
|
||||
if ((protocol == QStringLiteral("SSH") || protocol == QStringLiteral("RDP"))
|
||||
&& profile.username.trimmed().isEmpty()) {
|
||||
if (error != nullptr) {
|
||||
*error = QStringLiteral("Username is required for %1 profiles.").arg(protocol);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const QString authMode = normalizedAuthMode(protocol, profile.authMode);
|
||||
if (protocol == QStringLiteral("SSH") && authMode == QStringLiteral("Private Key")
|
||||
&& profile.privateKeyPath.trimmed().isEmpty()) {
|
||||
if (error != nullptr) {
|
||||
*error = QStringLiteral("Private key path is required for SSH private key authentication.");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -125,7 +280,60 @@ QString ProfileRepository::lastError() const
|
||||
return m_lastError;
|
||||
}
|
||||
|
||||
std::vector<Profile> ProfileRepository::listProfiles(const QString& searchQuery) const
|
||||
std::vector<QString> ProfileRepository::listFolders() const
|
||||
{
|
||||
std::vector<QString> result;
|
||||
|
||||
if (!QSqlDatabase::contains(m_connectionName)) {
|
||||
return result;
|
||||
}
|
||||
|
||||
setLastError(QString());
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
query.prepare(QStringLiteral("SELECT path FROM profile_folders ORDER BY lower(path) ASC"));
|
||||
if (!query.exec()) {
|
||||
setLastError(query.lastError().text());
|
||||
return result;
|
||||
}
|
||||
|
||||
while (query.next()) {
|
||||
const QString normalized = normalizedFolderPath(query.value(0).toString());
|
||||
if (!normalized.isEmpty()) {
|
||||
result.push_back(normalized);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool ProfileRepository::createFolder(const QString& folderPath) const
|
||||
{
|
||||
if (!QSqlDatabase::contains(m_connectionName)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const QString normalized = normalizedFolderPath(folderPath);
|
||||
if (normalized.isEmpty()) {
|
||||
setLastError(QStringLiteral("Folder path is required."));
|
||||
return false;
|
||||
}
|
||||
|
||||
setLastError(QString());
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
query.prepare(QStringLiteral("INSERT OR IGNORE INTO profile_folders(path) VALUES (?)"));
|
||||
query.addBindValue(normalized);
|
||||
if (!query.exec()) {
|
||||
setLastError(query.lastError().text());
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
std::vector<Profile> ProfileRepository::listProfiles(const QString& searchQuery,
|
||||
ProfileSortOrder sortOrder) const
|
||||
{
|
||||
std::vector<Profile> result;
|
||||
|
||||
@@ -136,20 +344,23 @@ std::vector<Profile> ProfileRepository::listProfiles(const QString& searchQuery)
|
||||
setLastError(QString());
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
const QString orderBy = orderByClause(sortOrder);
|
||||
if (searchQuery.trimmed().isEmpty()) {
|
||||
query.prepare(QStringLiteral(
|
||||
"SELECT id, name, host, port, username, domain, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile "
|
||||
"FROM profiles "
|
||||
"ORDER BY lower(name) ASC, id ASC"));
|
||||
"SELECT id, name, host, port, username, domain, folder_path, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile, tags "
|
||||
"FROM profiles ")
|
||||
+ orderBy);
|
||||
} else {
|
||||
query.prepare(QStringLiteral(
|
||||
"SELECT id, name, host, port, username, domain, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile "
|
||||
"FROM profiles "
|
||||
"WHERE lower(name) LIKE lower(?) OR lower(host) LIKE lower(?) "
|
||||
"ORDER BY lower(name) ASC, id ASC"));
|
||||
"SELECT id, name, host, port, username, domain, folder_path, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile, tags "
|
||||
"FROM profiles "
|
||||
"WHERE lower(name) LIKE lower(?) OR lower(host) LIKE lower(?) OR lower(tags) LIKE lower(?) OR lower(folder_path) LIKE lower(?) ")
|
||||
+ orderBy);
|
||||
const QString search = QStringLiteral("%") + searchQuery.trimmed() + QStringLiteral("%");
|
||||
query.addBindValue(search);
|
||||
query.addBindValue(search);
|
||||
query.addBindValue(search);
|
||||
query.addBindValue(search);
|
||||
}
|
||||
|
||||
if (!query.exec()) {
|
||||
@@ -174,7 +385,7 @@ std::optional<Profile> ProfileRepository::getProfile(qint64 id) const
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
query.prepare(QStringLiteral(
|
||||
"SELECT id, name, host, port, username, domain, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile "
|
||||
"SELECT id, name, host, port, username, domain, folder_path, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile, tags "
|
||||
"FROM profiles WHERE id = ?"));
|
||||
query.addBindValue(id);
|
||||
|
||||
@@ -198,15 +409,16 @@ std::optional<Profile> ProfileRepository::createProfile(const Profile& profile)
|
||||
|
||||
setLastError(QString());
|
||||
|
||||
if (!isProfileValid(profile)) {
|
||||
setLastError(QStringLiteral("Name, host, and a valid port are required."));
|
||||
QString validationError;
|
||||
if (!isProfileValid(profile, &validationError)) {
|
||||
setLastError(validationError);
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
query.prepare(QStringLiteral(
|
||||
"INSERT INTO profiles(name, host, port, username, domain, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile) "
|
||||
"VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"));
|
||||
"INSERT INTO profiles(name, host, port, username, domain, folder_path, protocol, auth_mode, private_key_path, known_hosts_policy, rdp_security_mode, rdp_performance_profile, tags) "
|
||||
"VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"));
|
||||
bindProfileFields(query, profile);
|
||||
|
||||
if (!query.exec()) {
|
||||
@@ -227,15 +439,17 @@ bool ProfileRepository::updateProfile(const Profile& profile) const
|
||||
|
||||
setLastError(QString());
|
||||
|
||||
if (profile.id < 0 || !isProfileValid(profile)) {
|
||||
setLastError(QStringLiteral("Invalid profile data."));
|
||||
QString validationError;
|
||||
if (profile.id < 0 || !isProfileValid(profile, &validationError)) {
|
||||
setLastError(validationError.isEmpty() ? QStringLiteral("Invalid profile data.")
|
||||
: validationError);
|
||||
return false;
|
||||
}
|
||||
|
||||
QSqlQuery query(QSqlDatabase::database(m_connectionName));
|
||||
query.prepare(QStringLiteral(
|
||||
"UPDATE profiles "
|
||||
"SET name = ?, host = ?, port = ?, username = ?, domain = ?, protocol = ?, auth_mode = ?, private_key_path = ?, known_hosts_policy = ?, rdp_security_mode = ?, rdp_performance_profile = ? "
|
||||
"SET name = ?, host = ?, port = ?, username = ?, domain = ?, folder_path = ?, protocol = ?, auth_mode = ?, private_key_path = ?, known_hosts_policy = ?, rdp_security_mode = ?, rdp_performance_profile = ?, tags = ? "
|
||||
"WHERE id = ?"));
|
||||
bindProfileFields(query, profile);
|
||||
query.addBindValue(profile.id);
|
||||
@@ -287,12 +501,14 @@ bool ProfileRepository::initializeDatabase()
|
||||
"port INTEGER NOT NULL DEFAULT 22,"
|
||||
"username TEXT NOT NULL DEFAULT '',"
|
||||
"domain TEXT NOT NULL DEFAULT '',"
|
||||
"folder_path TEXT NOT NULL DEFAULT '',"
|
||||
"protocol TEXT NOT NULL DEFAULT 'SSH',"
|
||||
"auth_mode TEXT NOT NULL DEFAULT 'Password',"
|
||||
"private_key_path TEXT NOT NULL DEFAULT '',"
|
||||
"known_hosts_policy TEXT NOT NULL DEFAULT 'Ask',"
|
||||
"rdp_security_mode TEXT NOT NULL DEFAULT 'Negotiate',"
|
||||
"rdp_performance_profile TEXT NOT NULL DEFAULT 'Balanced'"
|
||||
"rdp_performance_profile TEXT NOT NULL DEFAULT 'Balanced',"
|
||||
"tags TEXT NOT NULL DEFAULT ''"
|
||||
")"));
|
||||
|
||||
if (!created) {
|
||||
@@ -300,6 +516,15 @@ bool ProfileRepository::initializeDatabase()
|
||||
return false;
|
||||
}
|
||||
|
||||
const bool foldersCreated = query.exec(QStringLiteral(
|
||||
"CREATE TABLE IF NOT EXISTS profile_folders ("
|
||||
"path TEXT PRIMARY KEY NOT NULL"
|
||||
")"));
|
||||
if (!foldersCreated) {
|
||||
m_initError = query.lastError().text();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!ensureProfileSchema()) {
|
||||
m_initError = m_lastError;
|
||||
return false;
|
||||
@@ -336,12 +561,14 @@ bool ProfileRepository::ensureProfileSchema() const
|
||||
{QStringLiteral("port"), QStringLiteral("ALTER TABLE profiles ADD COLUMN port INTEGER NOT NULL DEFAULT 22")},
|
||||
{QStringLiteral("username"), QStringLiteral("ALTER TABLE profiles ADD COLUMN username TEXT NOT NULL DEFAULT ''")},
|
||||
{QStringLiteral("domain"), QStringLiteral("ALTER TABLE profiles ADD COLUMN domain TEXT NOT NULL DEFAULT ''")},
|
||||
{QStringLiteral("folder_path"), QStringLiteral("ALTER TABLE profiles ADD COLUMN folder_path TEXT NOT NULL DEFAULT ''")},
|
||||
{QStringLiteral("protocol"), QStringLiteral("ALTER TABLE profiles ADD COLUMN protocol TEXT NOT NULL DEFAULT 'SSH'")},
|
||||
{QStringLiteral("auth_mode"), QStringLiteral("ALTER TABLE profiles ADD COLUMN auth_mode TEXT NOT NULL DEFAULT 'Password'")},
|
||||
{QStringLiteral("private_key_path"), QStringLiteral("ALTER TABLE profiles ADD COLUMN private_key_path TEXT NOT NULL DEFAULT ''")},
|
||||
{QStringLiteral("known_hosts_policy"), QStringLiteral("ALTER TABLE profiles ADD COLUMN known_hosts_policy TEXT NOT NULL DEFAULT 'Ask'")},
|
||||
{QStringLiteral("rdp_security_mode"), QStringLiteral("ALTER TABLE profiles ADD COLUMN rdp_security_mode TEXT NOT NULL DEFAULT 'Negotiate'")},
|
||||
{QStringLiteral("rdp_performance_profile"), QStringLiteral("ALTER TABLE profiles ADD COLUMN rdp_performance_profile TEXT NOT NULL DEFAULT 'Balanced'")}};
|
||||
{QStringLiteral("rdp_performance_profile"), QStringLiteral("ALTER TABLE profiles ADD COLUMN rdp_performance_profile TEXT NOT NULL DEFAULT 'Balanced'")},
|
||||
{QStringLiteral("tags"), QStringLiteral("ALTER TABLE profiles ADD COLUMN tags TEXT NOT NULL DEFAULT ''")}};
|
||||
|
||||
for (const ColumnDef& column : required) {
|
||||
if (columns.contains(column.name)) {
|
||||
@@ -355,6 +582,15 @@ bool ProfileRepository::ensureProfileSchema() const
|
||||
}
|
||||
}
|
||||
|
||||
QSqlQuery ensureFolders(QSqlDatabase::database(m_connectionName));
|
||||
if (!ensureFolders.exec(QStringLiteral(
|
||||
"CREATE TABLE IF NOT EXISTS profile_folders ("
|
||||
"path TEXT PRIMARY KEY NOT NULL"
|
||||
")"))) {
|
||||
setLastError(ensureFolders.lastError().text());
|
||||
return false;
|
||||
}
|
||||
|
||||
setLastError(QString());
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -15,12 +15,20 @@ struct Profile
|
||||
int port = 22;
|
||||
QString username;
|
||||
QString domain;
|
||||
QString folderPath;
|
||||
QString protocol = QStringLiteral("SSH");
|
||||
QString authMode = QStringLiteral("Password");
|
||||
QString privateKeyPath;
|
||||
QString knownHostsPolicy = QStringLiteral("Ask");
|
||||
QString rdpSecurityMode = QStringLiteral("Negotiate");
|
||||
QString rdpPerformanceProfile = QStringLiteral("Balanced");
|
||||
QString tags;
|
||||
};
|
||||
|
||||
enum class ProfileSortOrder {
|
||||
NameAsc,
|
||||
ProtocolAsc,
|
||||
HostAsc,
|
||||
};
|
||||
|
||||
class ProfileRepository
|
||||
@@ -32,7 +40,10 @@ public:
|
||||
QString initError() const;
|
||||
QString lastError() const;
|
||||
|
||||
std::vector<Profile> listProfiles(const QString& searchQuery = QString()) const;
|
||||
std::vector<Profile> listProfiles(const QString& searchQuery = QString(),
|
||||
ProfileSortOrder sortOrder = ProfileSortOrder::NameAsc) const;
|
||||
std::vector<QString> listFolders() const;
|
||||
bool createFolder(const QString& folderPath) const;
|
||||
std::optional<Profile> getProfile(qint64 id) const;
|
||||
std::optional<Profile> createProfile(const Profile& profile) const;
|
||||
bool updateProfile(const Profile& profile) const;
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
#include "profiles_tree_widget.h"
|
||||
|
||||
#include <QDropEvent>
|
||||
|
||||
ProfilesTreeWidget::ProfilesTreeWidget(QWidget* parent) : QTreeWidget(parent) {}
|
||||
|
||||
void ProfilesTreeWidget::dropEvent(QDropEvent* event)
|
||||
{
|
||||
QTreeWidget::dropEvent(event);
|
||||
emit itemsDropped();
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
#ifndef ORBITHUB_PROFILES_TREE_WIDGET_H
|
||||
#define ORBITHUB_PROFILES_TREE_WIDGET_H
|
||||
|
||||
#include <QTreeWidget>
|
||||
|
||||
class QDropEvent;
|
||||
|
||||
class ProfilesTreeWidget : public QTreeWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ProfilesTreeWidget(QWidget* parent = nullptr);
|
||||
|
||||
signals:
|
||||
void itemsDropped();
|
||||
|
||||
protected:
|
||||
void dropEvent(QDropEvent* event) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -3,22 +3,26 @@
|
||||
|
||||
#include "profile_repository.h"
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QWidget>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <QtGlobal>
|
||||
|
||||
#include <memory>
|
||||
#include <map>
|
||||
#include <optional>
|
||||
#include <QPointer>
|
||||
#include <vector>
|
||||
#include <unordered_map>
|
||||
|
||||
class QListWidget;
|
||||
class QListWidgetItem;
|
||||
class QTreeWidget;
|
||||
class QTreeWidgetItem;
|
||||
class QLineEdit;
|
||||
class QPushButton;
|
||||
class SessionWindow;
|
||||
class QComboBox;
|
||||
class QPoint;
|
||||
class ProfilesTreeWidget;
|
||||
|
||||
class ProfilesWindow : public QMainWindow
|
||||
class ProfilesWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -26,23 +30,52 @@ public:
|
||||
explicit ProfilesWindow(QWidget* parent = nullptr);
|
||||
~ProfilesWindow() override;
|
||||
|
||||
void createProfileInCurrentContext();
|
||||
void createFolderInCurrentContext();
|
||||
void exportProfiles();
|
||||
void importProfiles();
|
||||
|
||||
signals:
|
||||
void connectRequested(const Profile& profile);
|
||||
|
||||
private:
|
||||
QLineEdit* m_searchBox;
|
||||
QListWidget* m_profilesList;
|
||||
QComboBox* m_viewModeBox;
|
||||
QComboBox* m_sortBox;
|
||||
QComboBox* m_protocolFilterBox;
|
||||
QComboBox* m_tagFilterBox;
|
||||
ProfilesTreeWidget* m_profilesTree;
|
||||
QPushButton* m_newButton;
|
||||
QPushButton* m_editButton;
|
||||
QPushButton* m_deleteButton;
|
||||
QPointer<SessionWindow> m_sessionWindow;
|
||||
std::unique_ptr<ProfileRepository> m_repository;
|
||||
std::unordered_map<qint64, Profile> m_profileCache;
|
||||
QString m_pendingTagFilterPreference;
|
||||
|
||||
void setupUi();
|
||||
void loadProfiles(const QString& query = QString());
|
||||
void loadProfiles();
|
||||
ProfileSortOrder selectedSortOrder() const;
|
||||
bool isFolderViewEnabled() const;
|
||||
QString selectedProtocolFilter() const;
|
||||
QString selectedTagFilter() const;
|
||||
void updateTagFilterOptions(const std::vector<Profile>& profiles);
|
||||
QTreeWidgetItem* upsertFolderNode(const QStringList& folderParts,
|
||||
std::map<QString, QTreeWidgetItem*>& folderNodes);
|
||||
void addProfileNode(QTreeWidgetItem* parent, const Profile& profile);
|
||||
QString folderPathForItem(const QTreeWidgetItem* item) const;
|
||||
void showTreeContextMenu(const QPoint& pos);
|
||||
void createFolderInContext(const QString& baseFolderPath);
|
||||
void persistFolderAssignmentsFromTree();
|
||||
void collectProfileAssignments(const QTreeWidgetItem* item,
|
||||
const QString& parentFolderPath,
|
||||
std::unordered_map<qint64, QString>& assignments) const;
|
||||
void loadUiPreferences();
|
||||
void saveUiPreferences() const;
|
||||
std::optional<Profile> selectedProfile() const;
|
||||
void createProfile();
|
||||
void createProfile(const QString& defaultFolderPath = QString());
|
||||
void editSelectedProfile();
|
||||
void deleteSelectedProfile();
|
||||
void openSessionForItem(QListWidgetItem* item);
|
||||
void openSessionForItem(QTreeWidgetItem* item);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
#include "rdp_display_widget.h"
|
||||
|
||||
#include <QCursor>
|
||||
#include <QEvent>
|
||||
#include <QKeyEvent>
|
||||
#include <QMouseEvent>
|
||||
#include <QPainter>
|
||||
#include <QPixmap>
|
||||
#include <QResizeEvent>
|
||||
#include <QTimer>
|
||||
#include <QWheelEvent>
|
||||
@@ -13,20 +16,38 @@ QSize sanitizeSize(const QSize& size)
|
||||
{
|
||||
return QSize(qMax(1, size.width()), qMax(1, size.height()));
|
||||
}
|
||||
|
||||
qreal sanitizeDevicePixelRatio(qreal ratio)
|
||||
{
|
||||
if (!(ratio > 0.0)) {
|
||||
return 1.0;
|
||||
}
|
||||
return qBound(1.0, ratio, 4.0);
|
||||
}
|
||||
|
||||
// Windows' virtual-display driver can visibly glitch (stale composited
|
||||
// content left on screen) when asked to change resolution repeatedly in
|
||||
// quick succession, which naturally happens as the window's layout settles
|
||||
// right after creation/connect. Coalescing bursts of resize events into one
|
||||
// request avoids triggering that.
|
||||
constexpr int kResizeDebounceMs = 150;
|
||||
}
|
||||
|
||||
RdpDisplayWidget::RdpDisplayWidget(QWidget* parent)
|
||||
: QWidget(parent), m_remoteSize(1280, 720)
|
||||
: QWidget(parent),
|
||||
m_remoteSize(1280, 720),
|
||||
m_cursorMode(CursorMode::Default),
|
||||
m_resizeDebounceTimer(new QTimer(this))
|
||||
{
|
||||
setFocusPolicy(Qt::StrongFocus);
|
||||
setMouseTracking(true);
|
||||
setAutoFillBackground(false);
|
||||
setMinimumSize(320, 200);
|
||||
|
||||
QTimer::singleShot(0, this, [this]() {
|
||||
const QSize size = sanitizeSize(this->size());
|
||||
emit viewportSizeChanged(size.width(), size.height());
|
||||
});
|
||||
m_resizeDebounceTimer->setSingleShot(true);
|
||||
connect(m_resizeDebounceTimer, &QTimer::timeout, this, &RdpDisplayWidget::emitViewportGeometry);
|
||||
|
||||
scheduleViewportGeometryEmit();
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::setFrame(const QImage& frame)
|
||||
@@ -52,6 +73,13 @@ void RdpDisplayWidget::setRemoteDesktopSize(int width, int height)
|
||||
}
|
||||
|
||||
m_remoteSize = nextSize;
|
||||
// The next actual frame (via setFrame) arrives asynchronously and isn't
|
||||
// guaranteed to be sized to match yet. Drawing the old frame stretched
|
||||
// to a renderRect() computed from the new m_remoteSize would scale it
|
||||
// by the wrong factor for the transition window, producing visibly
|
||||
// distorted/duplicated-looking content. Clear it and show the existing
|
||||
// "waiting for frame" placeholder until a correctly-sized frame lands.
|
||||
m_frame = QImage();
|
||||
update();
|
||||
}
|
||||
|
||||
@@ -61,6 +89,62 @@ void RdpDisplayWidget::clearFrame()
|
||||
update();
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::setCursorImage(const QImage& image, const QPoint& hotspot)
|
||||
{
|
||||
m_cursorImage = image;
|
||||
m_cursorHotspot = hotspot;
|
||||
m_cursorMode = CursorMode::Custom;
|
||||
applyCursor();
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::setCursorHidden()
|
||||
{
|
||||
m_cursorMode = CursorMode::Hidden;
|
||||
applyCursor();
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::setCursorDefault()
|
||||
{
|
||||
m_cursorMode = CursorMode::Default;
|
||||
applyCursor();
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::applyCursor()
|
||||
{
|
||||
if (m_cursorMode == CursorMode::Hidden) {
|
||||
setCursor(Qt::BlankCursor);
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_cursorMode == CursorMode::Default || m_cursorImage.isNull()) {
|
||||
unsetCursor();
|
||||
return;
|
||||
}
|
||||
|
||||
const QSize remote = effectiveRemoteSize();
|
||||
const QRectF target = renderRect();
|
||||
if (remote.isEmpty() || target.isEmpty()) {
|
||||
setCursor(QCursor(QPixmap::fromImage(m_cursorImage),
|
||||
m_cursorHotspot.x(),
|
||||
m_cursorHotspot.y()));
|
||||
return;
|
||||
}
|
||||
|
||||
const qreal scale = target.width() / remote.width();
|
||||
QImage scaledImage = m_cursorImage;
|
||||
if (!qFuzzyCompare(scale, 1.0)) {
|
||||
scaledImage = m_cursorImage.scaled(
|
||||
qMax(1, qRound(m_cursorImage.width() * scale)),
|
||||
qMax(1, qRound(m_cursorImage.height() * scale)),
|
||||
Qt::IgnoreAspectRatio,
|
||||
Qt::SmoothTransformation);
|
||||
}
|
||||
|
||||
const int hotX = qBound(0, qRound(m_cursorHotspot.x() * scale), scaledImage.width());
|
||||
const int hotY = qBound(0, qRound(m_cursorHotspot.y() * scale), scaledImage.height());
|
||||
setCursor(QCursor(QPixmap::fromImage(scaledImage), hotX, hotY));
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::paintEvent(QPaintEvent* event)
|
||||
{
|
||||
Q_UNUSED(event);
|
||||
@@ -82,16 +166,51 @@ void RdpDisplayWidget::paintEvent(QPaintEvent* event)
|
||||
void RdpDisplayWidget::resizeEvent(QResizeEvent* event)
|
||||
{
|
||||
QWidget::resizeEvent(event);
|
||||
const QSize size = sanitizeSize(event->size());
|
||||
emit viewportSizeChanged(size.width(), size.height());
|
||||
scheduleViewportGeometryEmit();
|
||||
applyCursor();
|
||||
}
|
||||
|
||||
bool RdpDisplayWidget::event(QEvent* event)
|
||||
{
|
||||
// Fires when this widget's effective screen changes (e.g. dragged to a
|
||||
// different monitor), which is what changes devicePixelRatio(). Newer
|
||||
// Qt versions add a more specific QEvent::DevicePixelRatioChange, but
|
||||
// this project's Qt 6.2 floor doesn't have it.
|
||||
if (event->type() == QEvent::ScreenChangeInternal) {
|
||||
scheduleViewportGeometryEmit();
|
||||
}
|
||||
return QWidget::event(event);
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::scheduleViewportGeometryEmit()
|
||||
{
|
||||
// Restarting an already-running single-shot timer resets its countdown,
|
||||
// so a burst of resize events collapses into one emission after things
|
||||
// settle, rather than one request per event.
|
||||
m_resizeDebounceTimer->start(kResizeDebounceMs);
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::emitViewportGeometry()
|
||||
{
|
||||
const QSize logicalSize = sanitizeSize(this->size());
|
||||
const qreal ratio = sanitizeDevicePixelRatio(this->devicePixelRatioF());
|
||||
const QSize physicalSize(qRound(logicalSize.width() * ratio), qRound(logicalSize.height() * ratio));
|
||||
emit viewportSizeChanged(physicalSize.width(), physicalSize.height());
|
||||
emit displayScaleChanged(ratio);
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::keyPressEvent(QKeyEvent* event)
|
||||
{
|
||||
if (event == nullptr || event->isAutoRepeat()) {
|
||||
if (event == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Auto-repeat presses must reach the remote server so it can perform
|
||||
// its own typematic repeat, exactly as a physical keyboard held down
|
||||
// would. Only release events filter out isAutoRepeat() (below), since
|
||||
// Qt uses a synthetic release/press pair purely to normalize platform
|
||||
// auto-repeat quirks -- forwarding that synthetic release would send a
|
||||
// spurious key-up for a key that is still physically held.
|
||||
emit keyInput(event->key(),
|
||||
event->nativeScanCode(),
|
||||
event->text(),
|
||||
@@ -114,6 +233,14 @@ void RdpDisplayWidget::keyReleaseEvent(QKeyEvent* event)
|
||||
event->accept();
|
||||
}
|
||||
|
||||
bool RdpDisplayWidget::focusNextPrevChild(bool next)
|
||||
{
|
||||
Q_UNUSED(next);
|
||||
// Tab/Shift+Tab must reach keyPressEvent() and be forwarded to the
|
||||
// remote session instead of moving focus to the next local widget.
|
||||
return false;
|
||||
}
|
||||
|
||||
void RdpDisplayWidget::mousePressEvent(QMouseEvent* event)
|
||||
{
|
||||
if (event == nullptr) {
|
||||
|
||||
@@ -8,6 +8,7 @@ class QKeyEvent;
|
||||
class QMouseEvent;
|
||||
class QPaintEvent;
|
||||
class QResizeEvent;
|
||||
class QTimer;
|
||||
class QWheelEvent;
|
||||
|
||||
class RdpDisplayWidget : public QWidget
|
||||
@@ -20,6 +21,9 @@ public:
|
||||
void setFrame(const QImage& frame);
|
||||
void setRemoteDesktopSize(int width, int height);
|
||||
void clearFrame();
|
||||
void setCursorImage(const QImage& image, const QPoint& hotspot);
|
||||
void setCursorHidden();
|
||||
void setCursorDefault();
|
||||
|
||||
signals:
|
||||
void keyInput(int key, quint32 nativeScanCode, const QString& text, bool pressed, int modifiers);
|
||||
@@ -27,24 +31,40 @@ signals:
|
||||
void mouseButtonInput(int x, int y, int button, bool pressed);
|
||||
void mouseWheelInput(int x, int y, int deltaX, int deltaY);
|
||||
void viewportSizeChanged(int width, int height);
|
||||
void displayScaleChanged(qreal devicePixelRatio);
|
||||
|
||||
protected:
|
||||
void paintEvent(QPaintEvent* event) override;
|
||||
void resizeEvent(QResizeEvent* event) override;
|
||||
bool event(QEvent* event) override;
|
||||
void keyPressEvent(QKeyEvent* event) override;
|
||||
void keyReleaseEvent(QKeyEvent* event) override;
|
||||
void mousePressEvent(QMouseEvent* event) override;
|
||||
void mouseReleaseEvent(QMouseEvent* event) override;
|
||||
void mouseMoveEvent(QMouseEvent* event) override;
|
||||
void wheelEvent(QWheelEvent* event) override;
|
||||
bool focusNextPrevChild(bool next) override;
|
||||
|
||||
private:
|
||||
enum class CursorMode {
|
||||
Default,
|
||||
Custom,
|
||||
Hidden,
|
||||
};
|
||||
|
||||
QImage m_frame;
|
||||
QSize m_remoteSize;
|
||||
QImage m_cursorImage;
|
||||
QPoint m_cursorHotspot;
|
||||
CursorMode m_cursorMode;
|
||||
QTimer* m_resizeDebounceTimer;
|
||||
|
||||
QRectF renderRect() const;
|
||||
QPoint mapToRemote(const QPointF& pos) const;
|
||||
QSize effectiveRemoteSize() const;
|
||||
void applyCursor();
|
||||
void emitViewportGeometry();
|
||||
void scheduleViewportGeometryEmit();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -7,29 +7,74 @@
|
||||
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
#include <mutex>
|
||||
#include <new>
|
||||
#include <utility>
|
||||
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
#include <freerdp/channels/channels.h>
|
||||
#include <freerdp/channels/cliprdr.h>
|
||||
#include <freerdp/channels/drdynvc.h>
|
||||
#include <freerdp/channels/disp.h>
|
||||
#include <freerdp/client/cliprdr.h>
|
||||
#include <freerdp/addin.h>
|
||||
#include <freerdp/client/channels.h>
|
||||
#include <freerdp/client/cmdline.h>
|
||||
#include <freerdp/client/disp.h>
|
||||
#include <freerdp/codec/color.h>
|
||||
#include <freerdp/display.h>
|
||||
#include <freerdp/error.h>
|
||||
#include <freerdp/event.h>
|
||||
#include <freerdp/freerdp.h>
|
||||
#include <freerdp/gdi/gdi.h>
|
||||
#include <freerdp/graphics.h>
|
||||
#include <freerdp/input.h>
|
||||
#include <freerdp/locale/keyboard.h>
|
||||
#include <freerdp/scancode.h>
|
||||
#include <freerdp/settings.h>
|
||||
#include <freerdp/utils/signal.h>
|
||||
#include <winpr/winsock.h>
|
||||
#include <winpr/crt.h>
|
||||
#include <winpr/synch.h>
|
||||
#include <winpr/user.h>
|
||||
#endif
|
||||
|
||||
namespace {
|
||||
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
// Mirrors wfreerdp_client_global_init() in FreeRDP's own reference Windows
|
||||
// client (client/Windows/wf_client.c): every reference client calls
|
||||
// WSAStartup + freerdp_handle_signals once at startup before connecting.
|
||||
//
|
||||
// WSAStartup: on Windows, sockets (getaddrinfo et al.) fail immediately
|
||||
// with WSANOTINITIALISED until this has been called by *someone* in the
|
||||
// process; OrbitHub never used Qt Network, so nothing else on Windows was
|
||||
// calling it, and every connect failed instantly with
|
||||
// ERRCONNECT_DNS_NAME_NOT_FOUND even for a literal IP address. WinPR
|
||||
// provides a portable no-op WSAStartup shim on POSIX, so this is safe to
|
||||
// call unconditionally cross-platform.
|
||||
//
|
||||
// freerdp_handle_signals: on Windows it's the only place that initializes
|
||||
// a global CRITICAL_SECTION used by freerdp_add_signal_cleanup_handler();
|
||||
// skipping it leaves that lock zero-initialized (invalid on Windows,
|
||||
// tolerated on POSIX), so the first freerdp_connect() crashed with a
|
||||
// null-pointer dereference inside EnterCriticalSection.
|
||||
//
|
||||
// Guarded so it only ever runs once.
|
||||
void ensureFreeRdpRuntimeInitialized()
|
||||
{
|
||||
static std::once_flag onceFlag;
|
||||
std::call_once(onceFlag, []() {
|
||||
WSADATA wsaData;
|
||||
const int wsaRc = WSAStartup(0x101, &wsaData);
|
||||
Q_UNUSED(wsaRc);
|
||||
|
||||
const int signalRc = freerdp_handle_signals();
|
||||
Q_UNUSED(signalRc);
|
||||
});
|
||||
}
|
||||
#endif
|
||||
|
||||
constexpr int kDefaultDesktopWidth = 1280;
|
||||
constexpr int kDefaultDesktopHeight = 720;
|
||||
constexpr int kMinDesktopWidth = 640;
|
||||
@@ -59,6 +104,22 @@ QString normalizedRdpSecurityMode(const QString& value)
|
||||
return QStringLiteral("Negotiate");
|
||||
}
|
||||
|
||||
// MS-RDPEDISP restricts DesktopScaleFactor/DeviceScaleFactor to exactly
|
||||
// these three values; FreeRDP's own reference client enforces the same
|
||||
// set (client/common/cmdline.c, parse_scale_options). Anything else is
|
||||
// silently ignored by the server, so map the real, continuous
|
||||
// devicePixelRatio down to the nearest one.
|
||||
UINT32 nearestFreeRdpScaleValue(qreal ratio)
|
||||
{
|
||||
if (ratio <= 1.2) {
|
||||
return 100;
|
||||
}
|
||||
if (ratio <= 1.6) {
|
||||
return 140;
|
||||
}
|
||||
return 180;
|
||||
}
|
||||
|
||||
QString normalizedRdpPerformanceProfile(const QString& value)
|
||||
{
|
||||
const QString profile = value.trimmed();
|
||||
@@ -146,6 +207,16 @@ UINT orbitDisplayControlCaps(DispClientContext* context,
|
||||
UINT32 maxNumMonitors,
|
||||
UINT32 maxMonitorAreaFactorA,
|
||||
UINT32 maxMonitorAreaFactorB);
|
||||
UINT orbitCliprdrMonitorReady(CliprdrClientContext* context,
|
||||
const CLIPRDR_MONITOR_READY* monitorReady);
|
||||
UINT orbitCliprdrServerFormatList(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_LIST* formatList);
|
||||
UINT orbitCliprdrServerFormatListResponse(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_LIST_RESPONSE* formatListResponse);
|
||||
UINT orbitCliprdrServerFormatDataRequest(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest);
|
||||
UINT orbitCliprdrServerFormatDataResponse(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_DATA_RESPONSE* formatDataResponse);
|
||||
BOOL orbitLoadChannels(freerdp* instance);
|
||||
bool orbitLoadStaticChannel(rdpChannels* channels,
|
||||
rdpSettings* settings,
|
||||
@@ -246,6 +317,118 @@ BOOL orbitDesktopResize(rdpContext* context)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Custom rdpPointer subclass: FreeRDP allocates this with calloc() and only
|
||||
// ever touches the base rdpPointer fields itself, so the trailing fields here
|
||||
// must stay plain-old-data and be managed manually in New()/Free() (mirrors
|
||||
// FreeRDP's own X11 client, client/X11/xf_graphics.c).
|
||||
struct OrbitRdpPointer
|
||||
{
|
||||
rdpPointer pointer;
|
||||
uchar* rgbaData;
|
||||
UINT32 rgbaWidth;
|
||||
UINT32 rgbaHeight;
|
||||
};
|
||||
|
||||
BOOL orbitPointerNew(rdpContext* context, rdpPointer* pointer)
|
||||
{
|
||||
if (context == nullptr || pointer == nullptr || context->gdi == nullptr) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
auto* orbitPointer = reinterpret_cast<OrbitRdpPointer*>(pointer);
|
||||
orbitPointer->rgbaData = nullptr;
|
||||
orbitPointer->rgbaWidth = 0;
|
||||
orbitPointer->rgbaHeight = 0;
|
||||
|
||||
if (pointer->width == 0 || pointer->height == 0) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
const size_t size = static_cast<size_t>(pointer->width) * pointer->height * 4;
|
||||
auto* buffer = new (std::nothrow) uchar[size];
|
||||
if (buffer == nullptr) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!freerdp_image_copy_from_pointer_data(buffer,
|
||||
PIXEL_FORMAT_BGRA32,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
pointer->width,
|
||||
pointer->height,
|
||||
pointer->xorMaskData,
|
||||
pointer->lengthXorMask,
|
||||
pointer->andMaskData,
|
||||
pointer->lengthAndMask,
|
||||
pointer->xorBpp,
|
||||
&context->gdi->palette)) {
|
||||
delete[] buffer;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
orbitPointer->rgbaData = buffer;
|
||||
orbitPointer->rgbaWidth = pointer->width;
|
||||
orbitPointer->rgbaHeight = pointer->height;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void orbitPointerFree(rdpContext* context, rdpPointer* pointer)
|
||||
{
|
||||
Q_UNUSED(context);
|
||||
if (pointer == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto* orbitPointer = reinterpret_cast<OrbitRdpPointer*>(pointer);
|
||||
delete[] orbitPointer->rgbaData;
|
||||
orbitPointer->rgbaData = nullptr;
|
||||
}
|
||||
|
||||
BOOL orbitPointerSet(rdpContext* context, rdpPointer* pointer)
|
||||
{
|
||||
if (context == nullptr || pointer == nullptr) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
RdpSessionBackend* backend = backendFromContext(context);
|
||||
if (backend == nullptr) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
auto* orbitPointer = reinterpret_cast<OrbitRdpPointer*>(pointer);
|
||||
if (orbitPointer->rgbaData == nullptr || orbitPointer->rgbaWidth == 0
|
||||
|| orbitPointer->rgbaHeight == 0) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
const QImage image(orbitPointer->rgbaData,
|
||||
static_cast<int>(orbitPointer->rgbaWidth),
|
||||
static_cast<int>(orbitPointer->rgbaHeight),
|
||||
QImage::Format_ARGB32);
|
||||
|
||||
emit backend->cursorImageChanged(
|
||||
image.copy(),
|
||||
QPoint(static_cast<int>(pointer->xPos), static_cast<int>(pointer->yPos)));
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL orbitPointerSetNull(rdpContext* context)
|
||||
{
|
||||
if (RdpSessionBackend* backend = backendFromContext(context)) {
|
||||
emit backend->cursorHidden();
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL orbitPointerSetDefault(rdpContext* context)
|
||||
{
|
||||
if (RdpSessionBackend* backend = backendFromContext(context)) {
|
||||
emit backend->cursorReset();
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL orbitPreConnect(freerdp* instance)
|
||||
{
|
||||
if (instance == nullptr || instance->context == nullptr || instance->context->settings == nullptr) {
|
||||
@@ -253,9 +436,19 @@ BOOL orbitPreConnect(freerdp* instance)
|
||||
}
|
||||
|
||||
rdpSettings* settings = instance->context->settings;
|
||||
freerdp_settings_set_bool(settings, FreeRDP_CertificateCallbackPreferPEM, TRUE);
|
||||
// FALSE gives the verify callbacks a short SHA256 fingerprint string
|
||||
// (e.g. "ab:cd:12:...") instead of the full PEM certificate blob, which
|
||||
// is what actually belongs in a user-facing changed-certificate message.
|
||||
freerdp_settings_set_bool(settings, FreeRDP_CertificateCallbackPreferPEM, FALSE);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_DesktopResize, TRUE);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_IgnoreCertificate, TRUE);
|
||||
// Trust servers on first connection (matching SSH's "accept-new" known-hosts
|
||||
// policy) and persist that trust via FreeRDP's own certificate store, but
|
||||
// actually verify it on every subsequent connection: IgnoreCertificate
|
||||
// previously bypassed verification entirely, so a changed certificate
|
||||
// (e.g. an active MITM) was silently accepted, indistinguishable from a
|
||||
// legitimate server. See orbitVerifyChangedCertificateEx below.
|
||||
freerdp_settings_set_bool(settings, FreeRDP_IgnoreCertificate, FALSE);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_AutoAcceptCertificate, TRUE);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -274,6 +467,17 @@ BOOL orbitPostConnect(freerdp* instance)
|
||||
context->update->EndPaint = orbitEndPaint;
|
||||
context->update->DesktopResize = orbitDesktopResize;
|
||||
|
||||
if (context->graphics != nullptr) {
|
||||
rdpPointer pointerCallbacks = {};
|
||||
pointerCallbacks.size = sizeof(OrbitRdpPointer);
|
||||
pointerCallbacks.New = orbitPointerNew;
|
||||
pointerCallbacks.Free = orbitPointerFree;
|
||||
pointerCallbacks.Set = orbitPointerSet;
|
||||
pointerCallbacks.SetNull = orbitPointerSetNull;
|
||||
pointerCallbacks.SetDefault = orbitPointerSetDefault;
|
||||
graphics_register_pointer(context->graphics, &pointerCallbacks);
|
||||
}
|
||||
|
||||
if (RdpSessionBackend* backend = backendFromContext(context)) {
|
||||
const int width = static_cast<int>(
|
||||
freerdp_settings_get_uint32(context->settings, FreeRDP_DesktopWidth));
|
||||
@@ -291,6 +495,7 @@ void orbitPostDisconnect(freerdp* instance)
|
||||
if (instance->context != nullptr) {
|
||||
if (RdpSessionBackend* backend = backendFromContext(instance->context)) {
|
||||
backend->onChannelDisconnectedEvent(DISP_DVC_CHANNEL_NAME, nullptr);
|
||||
backend->onChannelDisconnectedEvent(CLIPRDR_SVC_CHANNEL_NAME, nullptr);
|
||||
}
|
||||
PubSub_UnsubscribeChannelConnected(instance->context->pubSub,
|
||||
orbitOnChannelConnectedEventHandler);
|
||||
@@ -337,6 +542,75 @@ UINT orbitDisplayControlCaps(DispClientContext* context,
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
UINT orbitCliprdrMonitorReady(CliprdrClientContext* context,
|
||||
const CLIPRDR_MONITOR_READY* monitorReady)
|
||||
{
|
||||
Q_UNUSED(monitorReady);
|
||||
if (context == nullptr || context->custom == nullptr) {
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
auto* backend = reinterpret_cast<RdpSessionBackend*>(context->custom);
|
||||
backend->onCliprdrMonitorReady();
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
UINT orbitCliprdrServerFormatList(CliprdrClientContext* context,
|
||||
const CLIPRDR_FORMAT_LIST* formatList)
|
||||
{
|
||||
if (context == nullptr || context->custom == nullptr || formatList == nullptr) {
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
bool hasUnicodeText = false;
|
||||
for (UINT32 i = 0; i < formatList->numFormats; ++i) {
|
||||
if (formatList->formats[i].formatId == CF_UNICODETEXT) {
|
||||
hasUnicodeText = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
auto* backend = reinterpret_cast<RdpSessionBackend*>(context->custom);
|
||||
backend->onCliprdrServerFormatList(hasUnicodeText);
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
UINT orbitCliprdrServerFormatListResponse(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_LIST_RESPONSE* formatListResponse)
|
||||
{
|
||||
Q_UNUSED(context);
|
||||
Q_UNUSED(formatListResponse);
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
UINT orbitCliprdrServerFormatDataRequest(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest)
|
||||
{
|
||||
if (context == nullptr || context->custom == nullptr || formatDataRequest == nullptr) {
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
auto* backend = reinterpret_cast<RdpSessionBackend*>(context->custom);
|
||||
backend->onCliprdrServerFormatDataRequest(formatDataRequest->requestedFormatId);
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
UINT orbitCliprdrServerFormatDataResponse(
|
||||
CliprdrClientContext* context, const CLIPRDR_FORMAT_DATA_RESPONSE* formatDataResponse)
|
||||
{
|
||||
if (context == nullptr || context->custom == nullptr || formatDataResponse == nullptr) {
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
auto* backend = reinterpret_cast<RdpSessionBackend*>(context->custom);
|
||||
const bool success = (formatDataResponse->common.msgFlags & CB_RESPONSE_OK) != 0;
|
||||
backend->onCliprdrServerFormatDataResponse(
|
||||
success,
|
||||
reinterpret_cast<const uint8_t*>(formatDataResponse->requestedFormatData),
|
||||
formatDataResponse->common.dataLen);
|
||||
return CHANNEL_RC_OK;
|
||||
}
|
||||
|
||||
BOOL orbitLoadChannels(freerdp* instance)
|
||||
{
|
||||
if (instance == nullptr || instance->context == nullptr || instance->context->settings == nullptr
|
||||
@@ -383,6 +657,14 @@ BOOL orbitLoadChannels(freerdp* instance)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (!orbitLoadStaticChannel(channels, settings, CLIPRDR_SVC_CHANNEL_NAME, settings)) {
|
||||
if (backend != nullptr) {
|
||||
emit backend->eventLogged(
|
||||
QStringLiteral("RDP warning: failed to load static '%1' channel; clipboard sync unavailable.")
|
||||
.arg(QString::fromUtf8(CLIPRDR_SVC_CHANNEL_NAME)));
|
||||
}
|
||||
}
|
||||
|
||||
if (backend != nullptr) {
|
||||
emit backend->eventLogged(QStringLiteral("RDP channel loader: display-control channels initialized."));
|
||||
}
|
||||
@@ -452,10 +734,13 @@ DWORD orbitVerifyCertificateEx(freerdp* instance,
|
||||
const char*,
|
||||
DWORD)
|
||||
{
|
||||
// With FreeRDP_AutoAcceptCertificate set, FreeRDP accepts and stores a
|
||||
// first-seen certificate itself without calling this callback at all;
|
||||
// it is kept as a defensive fallback for any code path that reaches it.
|
||||
if (instance != nullptr && instance->context != nullptr) {
|
||||
if (RdpSessionBackend* backend = backendFromContext(instance->context)) {
|
||||
emit backend->eventLogged(
|
||||
QStringLiteral("Accepting server certificate for %1:%2.")
|
||||
QStringLiteral("Trusting new server certificate for %1:%2.")
|
||||
.arg(QString::fromUtf8(host == nullptr ? "" : host))
|
||||
.arg(port));
|
||||
}
|
||||
@@ -469,21 +754,42 @@ DWORD orbitVerifyChangedCertificateEx(freerdp* instance,
|
||||
const char*,
|
||||
const char*,
|
||||
const char*,
|
||||
const char* newFingerprint,
|
||||
const char*,
|
||||
const char*,
|
||||
const char*,
|
||||
const char*,
|
||||
const char* oldFingerprint,
|
||||
DWORD)
|
||||
{
|
||||
// The server's certificate no longer matches the one trusted on a prior
|
||||
// connection. This is exactly the scenario TLS verification exists to
|
||||
// catch: either the server legitimately rotated its certificate, or an
|
||||
// active man-in-the-middle is presenting a different one. Refuse the
|
||||
// connection by default rather than silently trusting it.
|
||||
const QString hostStr = QString::fromUtf8(host == nullptr ? "" : host);
|
||||
const QString message = QStringLiteral(
|
||||
"Server certificate for %1:%2 has changed since it was last trusted. "
|
||||
"Connection refused for safety — this could mean the server's "
|
||||
"certificate was legitimately renewed, or that a different host is "
|
||||
"impersonating it. Previously trusted fingerprint: %3 — now "
|
||||
"presented: %4. If this change is expected, remove the stored entry "
|
||||
"for this host from FreeRDP's certificate store "
|
||||
"(~/.config/freerdp/server) and reconnect.")
|
||||
.arg(hostStr)
|
||||
.arg(port)
|
||||
.arg(QString::fromUtf8(oldFingerprint == nullptr ? "unknown" : oldFingerprint))
|
||||
.arg(QString::fromUtf8(newFingerprint == nullptr ? "unknown" : newFingerprint));
|
||||
|
||||
// Not logged directly here: recordCertificateRejection() feeds this
|
||||
// message into the generic connect-failure handling in workerMain(),
|
||||
// which already reports it through eventLogged/connectionError/setState
|
||||
// (the same channels every other RDP connection failure uses) — an
|
||||
// extra direct log call here would just duplicate that.
|
||||
if (instance != nullptr && instance->context != nullptr) {
|
||||
if (RdpSessionBackend* backend = backendFromContext(instance->context)) {
|
||||
emit backend->eventLogged(
|
||||
QStringLiteral("Accepting changed server certificate for %1:%2.")
|
||||
.arg(QString::fromUtf8(host == nullptr ? "" : host))
|
||||
.arg(port));
|
||||
backend->recordCertificateRejection(message);
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
const char* authReasonName(rdp_auth_reason reason)
|
||||
@@ -576,6 +882,25 @@ UINT32 scancodeFromNativeScanCode(quint32 nativeScanCode)
|
||||
return RDP_SCANCODE_UNKNOWN;
|
||||
}
|
||||
|
||||
#if defined(Q_OS_LINUX)
|
||||
// On X11, Qt's nativeScanCode() is the raw X11 KeyCode, not a PC/AT set-1
|
||||
// scancode. X11 keycode numbering only coincidentally overlaps with PC/AT
|
||||
// scancodes for some keys and diverges for others (e.g. X11 keycode 0x30
|
||||
// is the apostrophe/quote key, while PC/AT scancode 0x30 is the B key), so
|
||||
// treating one as the other silently sends the wrong key. FreeRDP ships an
|
||||
// authoritative X11-keycode -> RDP-scancode table; use it directly.
|
||||
// The function is marked deprecated upstream ("implement yourself in
|
||||
// client") but remains present and correct in this pinned FreeRDP build.
|
||||
#if defined(__GNUC__) || defined(__clang__)
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||
#endif
|
||||
const DWORD mapped = freerdp_keyboard_get_rdp_scancode_from_x11_keycode(nativeScanCode);
|
||||
#if defined(__GNUC__) || defined(__clang__)
|
||||
#pragma GCC diagnostic pop
|
||||
#endif
|
||||
return mapped != 0 ? mapped : RDP_SCANCODE_UNKNOWN;
|
||||
#else
|
||||
quint32 code = 0;
|
||||
bool extended = false;
|
||||
if ((nativeScanCode & 0xFF000000u) == 0xE0000000u) {
|
||||
@@ -607,6 +932,7 @@ UINT32 scancodeFromNativeScanCode(quint32 nativeScanCode)
|
||||
}
|
||||
|
||||
return scancode;
|
||||
#endif
|
||||
}
|
||||
|
||||
UINT32 scancodeForQtKey(int key, Qt::KeyboardModifiers modifiers, quint32 nativeScanCode)
|
||||
@@ -994,6 +1320,7 @@ RdpSessionBackend::RdpSessionBackend(const Profile& profile, QObject* parent)
|
||||
m_userInitiatedDisconnect(false),
|
||||
m_requestedDesktopWidth(kDefaultDesktopWidth),
|
||||
m_requestedDesktopHeight(kDefaultDesktopHeight),
|
||||
m_devicePixelRatio(1.0),
|
||||
m_workerRunning(false),
|
||||
m_stopRequested(false),
|
||||
m_instance(nullptr),
|
||||
@@ -1001,7 +1328,9 @@ RdpSessionBackend::RdpSessionBackend(const Profile& profile, QObject* parent)
|
||||
m_displayControlReady(false),
|
||||
m_resizeFailureLogged(false),
|
||||
m_lastResizeWidth(0),
|
||||
m_lastResizeHeight(0)
|
||||
m_lastResizeHeight(0),
|
||||
m_lastResizeScale(0),
|
||||
m_cliprdrContext(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1092,6 +1421,28 @@ void RdpSessionBackend::updateTerminalSize(int columns, int rows)
|
||||
enqueueInputEvent(event);
|
||||
}
|
||||
|
||||
void RdpSessionBackend::updateDisplayScale(qreal devicePixelRatio)
|
||||
{
|
||||
const qreal clamped = qBound(1.0, devicePixelRatio, 4.0);
|
||||
m_devicePixelRatio.store(clamped);
|
||||
|
||||
if (!m_workerRunning.load()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Reuses the resize input-event path so the worker thread (which owns
|
||||
// m_instance) picks this up safely; processInputEvents' dedup check
|
||||
// also compares the quantized scale value, so this correctly triggers
|
||||
// a fresh SendMonitorLayout even when width/height haven't changed
|
||||
// (e.g. the window moved to a different-DPI monitor at the same
|
||||
// logical size).
|
||||
InputEvent event;
|
||||
event.type = InputEventType::Resize;
|
||||
event.width = sanitizeDesktopWidth(m_requestedDesktopWidth.load());
|
||||
event.height = sanitizeDesktopHeight(m_requestedDesktopHeight.load());
|
||||
enqueueInputEvent(event);
|
||||
}
|
||||
|
||||
void RdpSessionBackend::sendKeyEvent(int key,
|
||||
quint32 nativeScanCode,
|
||||
const QString& text,
|
||||
@@ -1112,6 +1463,18 @@ void RdpSessionBackend::sendKeyEvent(int key,
|
||||
enqueueInputEvent(event);
|
||||
}
|
||||
|
||||
void RdpSessionBackend::setClipboardText(const QString& text)
|
||||
{
|
||||
if (!m_workerRunning.load()) {
|
||||
return;
|
||||
}
|
||||
|
||||
InputEvent event;
|
||||
event.type = InputEventType::SetClipboardText;
|
||||
event.text = text;
|
||||
enqueueInputEvent(event);
|
||||
}
|
||||
|
||||
void RdpSessionBackend::sendMouseMoveEvent(int x, int y)
|
||||
{
|
||||
if (!m_workerRunning.load()) {
|
||||
@@ -1162,6 +1525,11 @@ void RdpSessionBackend::setState(SessionState state, const QString& message)
|
||||
emit eventLogged(message);
|
||||
}
|
||||
|
||||
void RdpSessionBackend::recordCertificateRejection(const QString& reason)
|
||||
{
|
||||
m_certificateRejectionReason = reason;
|
||||
}
|
||||
|
||||
bool RdpSessionBackend::validateProfile(QString& message) const
|
||||
{
|
||||
const Profile& p = profile();
|
||||
@@ -1221,6 +1589,9 @@ void RdpSessionBackend::workerMain()
|
||||
m_workerRunning.store(false);
|
||||
return;
|
||||
#else
|
||||
m_certificateRejectionReason.clear();
|
||||
ensureFreeRdpRuntimeInitialized();
|
||||
|
||||
freerdp* instance = freerdp_new();
|
||||
if (instance == nullptr) {
|
||||
emitConnectionFailureAsync(QStringLiteral("Failed to initialize FreeRDP runtime."),
|
||||
@@ -1306,9 +1677,29 @@ void RdpSessionBackend::workerMain()
|
||||
const QString performanceProfile = normalizedRdpPerformanceProfile(p.rdpPerformanceProfile);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_SupportDisplayControl, TRUE);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_DynamicResolutionUpdate, TRUE);
|
||||
// Lets us actively request a full-screen repaint after a resize (see
|
||||
// sendDisplayResize) — some RDP hosts (particularly VMs using a
|
||||
// synthetic/virtual display driver) occasionally fail to fully redraw
|
||||
// their own desktop after a resolution change; requesting a refresh
|
||||
// forces them to resend everything rather than leaving stale content.
|
||||
freerdp_settings_set_bool(settings, FreeRDP_RefreshRect, TRUE);
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopWidth, static_cast<UINT32>(desktopWidth));
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopHeight, static_cast<UINT32>(desktopHeight));
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_ColorDepth, 32);
|
||||
// Tell the remote session the real display scale so it renders its own
|
||||
// UI/ClearType text natively at that size, instead of assuming 96 DPI
|
||||
// and having the result stretched (and ClearType's subpixel hinting
|
||||
// distorted) by client-side scaling. The override flags are required —
|
||||
// without them FreeRDP ignores the scale factor values entirely.
|
||||
{
|
||||
const UINT32 scaleValue = nearestFreeRdpScaleValue(m_devicePixelRatio.load());
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopScaleFactor, scaleValue);
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DeviceScaleFactor, scaleValue);
|
||||
freerdp_settings_set_uint64(settings,
|
||||
FreeRDP_MonitorOverrideFlags,
|
||||
FREERDP_MONITOR_OVERRIDE_DESKTOP_SCALE
|
||||
| FREERDP_MONITOR_OVERRIDE_DEVICE_SCALE);
|
||||
}
|
||||
freerdp_settings_set_bool(settings, FreeRDP_AuthenticationOnly, FALSE);
|
||||
freerdp_settings_set_bool(settings, FreeRDP_AutoLogonEnabled, TRUE);
|
||||
if (!applyRdpSecurityMode(settings, securityMode)) {
|
||||
@@ -1380,7 +1771,9 @@ void RdpSessionBackend::workerMain()
|
||||
emit eventLogged(QStringLiteral("RDP connect aborted: %1").arg(raw));
|
||||
emitStateAsync(SessionState::Disconnected, disconnectMessageForCode(code));
|
||||
} else {
|
||||
const QString mapped = mapRdpError(code);
|
||||
const QString mapped = m_certificateRejectionReason.isEmpty()
|
||||
? mapRdpError(code)
|
||||
: m_certificateRejectionReason;
|
||||
emit eventLogged(QStringLiteral("RDP connect failure detail: %1").arg(raw));
|
||||
emitConnectionFailureAsync(mapped, raw);
|
||||
emitStateAsync(SessionState::Failed, mapped);
|
||||
@@ -1498,9 +1891,14 @@ bool RdpSessionBackend::sendDisplayResize(rdp_freerdp* instance, int width, int
|
||||
return false;
|
||||
}
|
||||
|
||||
const qreal ratio = m_devicePixelRatio.load();
|
||||
const UINT32 scaleValue = nearestFreeRdpScaleValue(ratio);
|
||||
|
||||
rdpSettings* settings = instance->context->settings;
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopWidth, static_cast<UINT32>(width));
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopHeight, static_cast<UINT32>(height));
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DesktopScaleFactor, scaleValue);
|
||||
freerdp_settings_set_uint32(settings, FreeRDP_DeviceScaleFactor, scaleValue);
|
||||
|
||||
DispClientContext* dispContext = nullptr;
|
||||
bool displayControlReady = false;
|
||||
@@ -1518,17 +1916,58 @@ bool RdpSessionBackend::sendDisplayResize(rdp_freerdp* instance, int width, int
|
||||
layout.Width = static_cast<UINT32>(width);
|
||||
layout.Height = static_cast<UINT32>(height);
|
||||
layout.Orientation = ORIENTATION_LANDSCAPE;
|
||||
layout.DesktopScaleFactor = freerdp_settings_get_uint32(settings, FreeRDP_DesktopScaleFactor);
|
||||
layout.DeviceScaleFactor = freerdp_settings_get_uint32(settings, FreeRDP_DeviceScaleFactor);
|
||||
layout.DesktopScaleFactor = scaleValue;
|
||||
layout.DeviceScaleFactor = scaleValue;
|
||||
// Physical size in mm must reflect the real DPI (96 * ratio), not
|
||||
// the plain baseline, so it stays consistent with the scale factor
|
||||
// above rather than implying a standard-DPI display of this size.
|
||||
const double effectiveDpi = kDefaultDpi * ratio;
|
||||
layout.PhysicalWidth = static_cast<UINT32>(
|
||||
std::lround((static_cast<double>(width) / kDefaultDpi) * kMillimetersPerInch));
|
||||
std::lround((static_cast<double>(width) / effectiveDpi) * kMillimetersPerInch));
|
||||
layout.PhysicalHeight = static_cast<UINT32>(
|
||||
std::lround((static_cast<double>(height) / kDefaultDpi) * kMillimetersPerInch));
|
||||
std::lround((static_cast<double>(height) / effectiveDpi) * kMillimetersPerInch));
|
||||
|
||||
const UINT rc = dispContext->SendMonitorLayout(dispContext, 1, &layout);
|
||||
if (rc == CHANNEL_RC_OK) {
|
||||
m_lastResizeWidth = width;
|
||||
m_lastResizeHeight = height;
|
||||
m_lastResizeScale = static_cast<int>(scaleValue);
|
||||
|
||||
// The Display Control channel (MS-RDPEDISP) has no server
|
||||
// acknowledgment PDU, and real hosts apply the new resolution
|
||||
// without a Deactivation-Reactivation sequence — so
|
||||
// update->DesktopResize (which only fires for that sequence, or
|
||||
// for the GFX/Progressive pipeline we don't use) never runs for
|
||||
// a channel-driven resize. Without a matching gdi_resize() call,
|
||||
// gdi->width/height stay at the old size, and FreeRDP's own
|
||||
// surface-bits handling (intersect_rect in gdi.c) then silently
|
||||
// *drops* any update reaching outside those stale bounds —
|
||||
// which is what produced the missing/misplaced taskbar and
|
||||
// stale composited-looking content: this call is the fix, not
|
||||
// just a best-effort nudge.
|
||||
if (instance->context->gdi != nullptr
|
||||
&& gdi_resize(instance->context->gdi, static_cast<UINT32>(width),
|
||||
static_cast<UINT32>(height))) {
|
||||
emit remoteDesktopSizeChanged(width, height);
|
||||
} else if (instance->context->gdi != nullptr) {
|
||||
emit eventLogged(QStringLiteral(
|
||||
"RDP warning: local resize to %1x%2 failed; display may show stale content "
|
||||
"until the next full repaint.")
|
||||
.arg(width)
|
||||
.arg(height));
|
||||
}
|
||||
|
||||
// Best-effort nudge: some hosts don't fully repaint their own
|
||||
// desktop after a resolution change (observed: taskbar missing
|
||||
// until something else forces a redraw). Explicitly asking for
|
||||
// the whole new area to be resent costs little and helps
|
||||
// recover from that when it happens.
|
||||
if (instance->context->update != nullptr
|
||||
&& instance->context->update->RefreshRect != nullptr) {
|
||||
RECTANGLE_16 fullArea = {0, 0, static_cast<UINT16>(qMin(width, 65535)),
|
||||
static_cast<UINT16>(qMin(height, 65535))};
|
||||
instance->context->update->RefreshRect(instance->context, 1, &fullArea);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -1537,6 +1976,38 @@ bool RdpSessionBackend::sendDisplayResize(rdp_freerdp* instance, int width, int
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::sendClipboardTextToRemote(rdp_freerdp* instance, const QString& text)
|
||||
{
|
||||
#ifndef ORBITHUB_HAS_FREERDP
|
||||
Q_UNUSED(instance);
|
||||
Q_UNUSED(text);
|
||||
#else
|
||||
Q_UNUSED(instance);
|
||||
|
||||
CliprdrClientContext* cliprdrContext = nullptr;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
m_pendingLocalClipboardText = text;
|
||||
cliprdrContext = reinterpret_cast<CliprdrClientContext*>(m_cliprdrContext);
|
||||
}
|
||||
|
||||
if (cliprdrContext == nullptr || cliprdrContext->ClientFormatList == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
CLIPRDR_FORMAT format = {};
|
||||
format.formatId = CF_UNICODETEXT;
|
||||
format.formatName = nullptr;
|
||||
|
||||
CLIPRDR_FORMAT_LIST formatList = {};
|
||||
formatList.numFormats = 1;
|
||||
formatList.formats = &format;
|
||||
|
||||
const UINT rc = cliprdrContext->ClientFormatList(cliprdrContext, &formatList);
|
||||
Q_UNUSED(rc);
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::processInputEvents(rdp_freerdp* instance)
|
||||
{
|
||||
#ifndef ORBITHUB_HAS_FREERDP
|
||||
@@ -1661,13 +2132,18 @@ void RdpSessionBackend::processInputEvents(rdp_freerdp* instance)
|
||||
}
|
||||
break;
|
||||
}
|
||||
case InputEventType::SetClipboardText:
|
||||
sendClipboardTextToRemote(instance, event.text);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (hasResize) {
|
||||
const int width = sanitizeDesktopWidth(resizeWidth);
|
||||
const int height = sanitizeDesktopHeight(resizeHeight);
|
||||
if (width != m_lastResizeWidth || height != m_lastResizeHeight) {
|
||||
const int scaleValue = static_cast<int>(nearestFreeRdpScaleValue(m_devicePixelRatio.load()));
|
||||
if (width != m_lastResizeWidth || height != m_lastResizeHeight
|
||||
|| scaleValue != m_lastResizeScale) {
|
||||
if (sendDisplayResize(instance, width, height)) {
|
||||
if (m_resizeFailureLogged) {
|
||||
emit eventLogged(QStringLiteral("Dynamic RDP resize recovered."));
|
||||
@@ -1686,24 +2162,47 @@ void RdpSessionBackend::processInputEvents(rdp_freerdp* instance)
|
||||
void RdpSessionBackend::onChannelConnectedEvent(const char* name, void* channelInterface)
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
if (name == nullptr || std::strcmp(name, DISP_DVC_CHANNEL_NAME) != 0) {
|
||||
if (name == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
auto* dispContext = reinterpret_cast<DispClientContext*>(channelInterface);
|
||||
if (dispContext == nullptr) {
|
||||
if (std::strcmp(name, DISP_DVC_CHANNEL_NAME) == 0) {
|
||||
auto* dispContext = reinterpret_cast<DispClientContext*>(channelInterface);
|
||||
if (dispContext == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
dispContext->custom = this;
|
||||
dispContext->DisplayControlCaps = orbitDisplayControlCaps;
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_displayControlMutex);
|
||||
m_displayControlContext = dispContext;
|
||||
m_displayControlReady = false;
|
||||
}
|
||||
emit eventLogged(QStringLiteral("RDP display-control channel connected."));
|
||||
return;
|
||||
}
|
||||
|
||||
dispContext->custom = this;
|
||||
dispContext->DisplayControlCaps = orbitDisplayControlCaps;
|
||||
if (std::strcmp(name, CLIPRDR_SVC_CHANNEL_NAME) == 0) {
|
||||
auto* cliprdrContext = reinterpret_cast<CliprdrClientContext*>(channelInterface);
|
||||
if (cliprdrContext == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_displayControlMutex);
|
||||
m_displayControlContext = dispContext;
|
||||
m_displayControlReady = false;
|
||||
cliprdrContext->custom = this;
|
||||
cliprdrContext->MonitorReady = orbitCliprdrMonitorReady;
|
||||
cliprdrContext->ServerFormatList = orbitCliprdrServerFormatList;
|
||||
cliprdrContext->ServerFormatListResponse = orbitCliprdrServerFormatListResponse;
|
||||
cliprdrContext->ServerFormatDataRequest = orbitCliprdrServerFormatDataRequest;
|
||||
cliprdrContext->ServerFormatDataResponse = orbitCliprdrServerFormatDataResponse;
|
||||
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
m_cliprdrContext = cliprdrContext;
|
||||
}
|
||||
emit eventLogged(QStringLiteral("RDP clipboard channel connected."));
|
||||
}
|
||||
emit eventLogged(QStringLiteral("RDP display-control channel connected."));
|
||||
#else
|
||||
Q_UNUSED(name);
|
||||
Q_UNUSED(channelInterface);
|
||||
@@ -1713,24 +2212,43 @@ void RdpSessionBackend::onChannelConnectedEvent(const char* name, void* channelI
|
||||
void RdpSessionBackend::onChannelDisconnectedEvent(const char* name, void* channelInterface)
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
if (name != nullptr && std::strcmp(name, DISP_DVC_CHANNEL_NAME) != 0) {
|
||||
return;
|
||||
}
|
||||
const bool matchesDisp = name == nullptr || std::strcmp(name, DISP_DVC_CHANNEL_NAME) == 0;
|
||||
const bool matchesCliprdr =
|
||||
name == nullptr || std::strcmp(name, CLIPRDR_SVC_CHANNEL_NAME) == 0;
|
||||
|
||||
bool cleared = false;
|
||||
bool hadDisplayControl = false;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_displayControlMutex);
|
||||
hadDisplayControl = (m_displayControlContext != nullptr) || m_displayControlReady;
|
||||
if (channelInterface == nullptr || m_displayControlContext == channelInterface) {
|
||||
m_displayControlContext = nullptr;
|
||||
m_displayControlReady = false;
|
||||
cleared = true;
|
||||
if (matchesDisp) {
|
||||
bool cleared = false;
|
||||
bool hadDisplayControl = false;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_displayControlMutex);
|
||||
hadDisplayControl = (m_displayControlContext != nullptr) || m_displayControlReady;
|
||||
if (channelInterface == nullptr || m_displayControlContext == channelInterface) {
|
||||
m_displayControlContext = nullptr;
|
||||
m_displayControlReady = false;
|
||||
cleared = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (cleared && hadDisplayControl) {
|
||||
emit eventLogged(QStringLiteral("RDP display-control channel disconnected."));
|
||||
}
|
||||
}
|
||||
|
||||
if (cleared && hadDisplayControl) {
|
||||
emit eventLogged(QStringLiteral("RDP display-control channel disconnected."));
|
||||
if (matchesCliprdr) {
|
||||
bool cleared = false;
|
||||
bool hadCliprdr = false;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
hadCliprdr = m_cliprdrContext != nullptr;
|
||||
if (channelInterface == nullptr || m_cliprdrContext == channelInterface) {
|
||||
m_cliprdrContext = nullptr;
|
||||
cleared = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (cleared && hadCliprdr) {
|
||||
emit eventLogged(QStringLiteral("RDP clipboard channel disconnected."));
|
||||
}
|
||||
}
|
||||
#else
|
||||
Q_UNUSED(name);
|
||||
@@ -1769,6 +2287,130 @@ void RdpSessionBackend::onDisplayControlCaps(uint32_t maxNumMonitors,
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::onCliprdrMonitorReady()
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
CliprdrClientContext* cliprdrContext = nullptr;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
cliprdrContext = reinterpret_cast<CliprdrClientContext*>(m_cliprdrContext);
|
||||
}
|
||||
|
||||
if (cliprdrContext == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
CLIPRDR_GENERAL_CAPABILITY_SET generalCapabilitySet = {};
|
||||
generalCapabilitySet.capabilitySetType = CB_CAPSTYPE_GENERAL;
|
||||
generalCapabilitySet.capabilitySetLength = CB_CAPSTYPE_GENERAL_LEN;
|
||||
generalCapabilitySet.version = CB_CAPS_VERSION_2;
|
||||
generalCapabilitySet.generalFlags = CB_USE_LONG_FORMAT_NAMES;
|
||||
|
||||
CLIPRDR_CAPABILITIES capabilities = {};
|
||||
capabilities.cCapabilitiesSets = 1;
|
||||
capabilities.capabilitySets = reinterpret_cast<CLIPRDR_CAPABILITY_SET*>(&generalCapabilitySet);
|
||||
|
||||
if (cliprdrContext->ClientCapabilities != nullptr) {
|
||||
const UINT rc = cliprdrContext->ClientCapabilities(cliprdrContext, &capabilities);
|
||||
Q_UNUSED(rc);
|
||||
}
|
||||
|
||||
emit eventLogged(QStringLiteral("RDP clipboard channel ready."));
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::onCliprdrServerFormatList(bool hasUnicodeText)
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
CliprdrClientContext* cliprdrContext = nullptr;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
cliprdrContext = reinterpret_cast<CliprdrClientContext*>(m_cliprdrContext);
|
||||
}
|
||||
|
||||
if (cliprdrContext == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (cliprdrContext->ClientFormatListResponse != nullptr) {
|
||||
CLIPRDR_FORMAT_LIST_RESPONSE response = {};
|
||||
response.common.msgFlags = CB_RESPONSE_OK;
|
||||
const UINT rc = cliprdrContext->ClientFormatListResponse(cliprdrContext, &response);
|
||||
Q_UNUSED(rc);
|
||||
}
|
||||
|
||||
if (hasUnicodeText && cliprdrContext->ClientFormatDataRequest != nullptr) {
|
||||
CLIPRDR_FORMAT_DATA_REQUEST request = {};
|
||||
request.requestedFormatId = CF_UNICODETEXT;
|
||||
const UINT rc = cliprdrContext->ClientFormatDataRequest(cliprdrContext, &request);
|
||||
Q_UNUSED(rc);
|
||||
}
|
||||
#else
|
||||
Q_UNUSED(hasUnicodeText);
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::onCliprdrServerFormatDataRequest(uint32_t requestedFormatId)
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
CliprdrClientContext* cliprdrContext = nullptr;
|
||||
QString pendingText;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(m_cliprdrMutex);
|
||||
cliprdrContext = reinterpret_cast<CliprdrClientContext*>(m_cliprdrContext);
|
||||
pendingText = m_pendingLocalClipboardText;
|
||||
}
|
||||
|
||||
if (cliprdrContext == nullptr || cliprdrContext->ClientFormatDataResponse == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
CLIPRDR_FORMAT_DATA_RESPONSE response = {};
|
||||
QByteArray encoded;
|
||||
if (requestedFormatId == CF_UNICODETEXT) {
|
||||
const int byteLength = (pendingText.size() + 1) * static_cast<int>(sizeof(ushort));
|
||||
encoded = QByteArray(reinterpret_cast<const char*>(pendingText.utf16()), byteLength);
|
||||
}
|
||||
|
||||
response.common.msgFlags = encoded.isEmpty() ? CB_RESPONSE_FAIL : CB_RESPONSE_OK;
|
||||
response.common.dataLen = static_cast<UINT32>(encoded.size());
|
||||
response.requestedFormatData =
|
||||
encoded.isEmpty() ? nullptr : reinterpret_cast<const BYTE*>(encoded.constData());
|
||||
const UINT rc = cliprdrContext->ClientFormatDataResponse(cliprdrContext, &response);
|
||||
Q_UNUSED(rc);
|
||||
#else
|
||||
Q_UNUSED(requestedFormatId);
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::onCliprdrServerFormatDataResponse(bool success,
|
||||
const uint8_t* data,
|
||||
uint32_t size)
|
||||
{
|
||||
#ifdef ORBITHUB_HAS_FREERDP
|
||||
if (!success || data == nullptr || size == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const auto* utf16Data = reinterpret_cast<const char16_t*>(data);
|
||||
const size_t charCount = size / sizeof(char16_t);
|
||||
|
||||
// CF_UNICODETEXT is NUL-terminated per MS-RDPECLIP; trim at the first NUL
|
||||
// rather than trusting dataLen to exclude it.
|
||||
size_t length = 0;
|
||||
while (length < charCount && utf16Data[length] != 0) {
|
||||
++length;
|
||||
}
|
||||
|
||||
const QString text = QString::fromUtf16(utf16Data, static_cast<int>(length));
|
||||
emit remoteClipboardTextChanged(text);
|
||||
#else
|
||||
Q_UNUSED(success);
|
||||
Q_UNUSED(data);
|
||||
Q_UNUSED(size);
|
||||
#endif
|
||||
}
|
||||
|
||||
void RdpSessionBackend::emitStateAsync(SessionState state, const QString& message)
|
||||
{
|
||||
QMetaObject::invokeMethod(
|
||||
|
||||
@@ -26,6 +26,7 @@ public slots:
|
||||
void sendInput(const QString& input) override;
|
||||
void confirmHostKey(bool trustHost) override;
|
||||
void updateTerminalSize(int columns, int rows) override;
|
||||
void updateDisplayScale(qreal devicePixelRatio) override;
|
||||
void sendKeyEvent(int key,
|
||||
quint32 nativeScanCode,
|
||||
const QString& text,
|
||||
@@ -34,6 +35,7 @@ public slots:
|
||||
void sendMouseMoveEvent(int x, int y) override;
|
||||
void sendMouseButtonEvent(int x, int y, int button, bool pressed) override;
|
||||
void sendMouseWheelEvent(int x, int y, int deltaX, int deltaY) override;
|
||||
void setClipboardText(const QString& text) override;
|
||||
|
||||
private:
|
||||
enum class InputEventType {
|
||||
@@ -42,6 +44,7 @@ private:
|
||||
MouseButton,
|
||||
MouseWheel,
|
||||
Resize,
|
||||
SetClipboardText,
|
||||
};
|
||||
|
||||
struct InputEvent {
|
||||
@@ -66,6 +69,7 @@ private:
|
||||
|
||||
std::atomic_int m_requestedDesktopWidth;
|
||||
std::atomic_int m_requestedDesktopHeight;
|
||||
std::atomic<qreal> m_devicePixelRatio;
|
||||
|
||||
std::thread m_worker;
|
||||
std::atomic_bool m_workerRunning;
|
||||
@@ -83,6 +87,19 @@ private:
|
||||
bool m_resizeFailureLogged;
|
||||
int m_lastResizeWidth;
|
||||
int m_lastResizeHeight;
|
||||
int m_lastResizeScale;
|
||||
|
||||
std::mutex m_cliprdrMutex;
|
||||
void* m_cliprdrContext;
|
||||
QString m_pendingLocalClipboardText;
|
||||
|
||||
// Set synchronously by orbitVerifyChangedCertificateEx (called from this
|
||||
// object's own worker thread during freerdp_connect) when a server's TLS
|
||||
// certificate has changed since a prior trusted connection. Read back by
|
||||
// workerMain() right after freerdp_connect() fails, to show the specific
|
||||
// reason instead of a generic "TLS negotiation failed" message. Cleared
|
||||
// at the start of every connect attempt.
|
||||
QString m_certificateRejectionReason;
|
||||
|
||||
void setState(SessionState state, const QString& message);
|
||||
bool validateProfile(QString& message) const;
|
||||
@@ -92,12 +109,18 @@ private:
|
||||
void enqueueInputEvent(const InputEvent& event);
|
||||
void processInputEvents(rdp_freerdp* instance);
|
||||
bool sendDisplayResize(rdp_freerdp* instance, int width, int height);
|
||||
void sendClipboardTextToRemote(rdp_freerdp* instance, const QString& text);
|
||||
public:
|
||||
void onChannelConnectedEvent(const char* name, void* channelInterface);
|
||||
void onChannelDisconnectedEvent(const char* name, void* channelInterface);
|
||||
void onDisplayControlCaps(uint32_t maxNumMonitors,
|
||||
uint32_t maxMonitorAreaFactorA,
|
||||
uint32_t maxMonitorAreaFactorB);
|
||||
void onCliprdrMonitorReady();
|
||||
void onCliprdrServerFormatList(bool hasUnicodeText);
|
||||
void onCliprdrServerFormatDataRequest(uint32_t requestedFormatId);
|
||||
void onCliprdrServerFormatDataResponse(bool success, const uint8_t* data, uint32_t size);
|
||||
void recordCertificateRejection(const QString& reason);
|
||||
private:
|
||||
void emitStateAsync(SessionState state, const QString& message);
|
||||
void emitConnectionFailureAsync(const QString& displayMessage, const QString& rawMessage);
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
|
||||
#include <QImage>
|
||||
#include <QObject>
|
||||
#include <QPoint>
|
||||
#include <QString>
|
||||
#include <QtGlobal>
|
||||
|
||||
@@ -46,6 +47,14 @@ public slots:
|
||||
virtual void sendInput(const QString& input) = 0;
|
||||
virtual void confirmHostKey(bool trustHost) = 0;
|
||||
virtual void updateTerminalSize(int columns, int rows) = 0;
|
||||
virtual void updateDisplayScale(qreal devicePixelRatio)
|
||||
{
|
||||
Q_UNUSED(devicePixelRatio);
|
||||
}
|
||||
virtual void setClipboardText(const QString& text)
|
||||
{
|
||||
Q_UNUSED(text);
|
||||
}
|
||||
virtual void sendKeyEvent(int key,
|
||||
quint32 nativeScanCode,
|
||||
const QString& text,
|
||||
@@ -86,6 +95,10 @@ signals:
|
||||
void hostKeyConfirmationRequested(const QString& prompt);
|
||||
void frameUpdated(const QImage& frame);
|
||||
void remoteDesktopSizeChanged(int width, int height);
|
||||
void remoteClipboardTextChanged(const QString& text);
|
||||
void cursorImageChanged(const QImage& image, const QPoint& hotspot);
|
||||
void cursorHidden();
|
||||
void cursorReset();
|
||||
|
||||
private:
|
||||
Profile m_profile;
|
||||
|
||||
@@ -7,20 +7,26 @@
|
||||
#include <KodoTerm/KodoTerm.hpp>
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QFile>
|
||||
#include <QFileDialog>
|
||||
#include <QFileInfo>
|
||||
#include <QFont>
|
||||
#include <QFontDatabase>
|
||||
#include <QHBoxLayout>
|
||||
#include <QInputDialog>
|
||||
#include <QLabel>
|
||||
#include <QLineEdit>
|
||||
#include <QMessageBox>
|
||||
#include <QPlainTextEdit>
|
||||
#include <QApplication>
|
||||
#include <QClipboard>
|
||||
#include <QMimeData>
|
||||
#include <QComboBox>
|
||||
#include <QProcessEnvironment>
|
||||
#include <QPushButton>
|
||||
#include <QThread>
|
||||
#include <QTimer>
|
||||
#include <QToolButton>
|
||||
#include <QTextStream>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
#include <memory>
|
||||
@@ -53,7 +59,9 @@ TerminalTheme themeForName(const QString& themeName)
|
||||
}
|
||||
}
|
||||
|
||||
SessionTab::SessionTab(const Profile& profile, QWidget* parent)
|
||||
SessionTab::SessionTab(const Profile& profile,
|
||||
const SessionUiPreferences& preferences,
|
||||
QWidget* parent)
|
||||
: QWidget(parent),
|
||||
m_profile(profile),
|
||||
m_backendThread(nullptr),
|
||||
@@ -61,13 +69,31 @@ SessionTab::SessionTab(const Profile& profile, QWidget* parent)
|
||||
m_useKodoTermForSsh(profile.protocol.compare(QStringLiteral("SSH"), Qt::CaseInsensitive)
|
||||
== 0),
|
||||
m_state(SessionState::Disconnected),
|
||||
m_terminalThemeName(QStringLiteral("Dark")),
|
||||
m_terminalThemeName(preferences.terminalThemeName.trimmed().isEmpty()
|
||||
? QStringLiteral("Dark")
|
||||
: preferences.terminalThemeName.trimmed()),
|
||||
m_terminalFontPointSize(preferences.terminalFontPointSize > 0
|
||||
? preferences.terminalFontPointSize
|
||||
: 0),
|
||||
m_clipboardSyncSupported(profile.protocol.compare(QStringLiteral("RDP"), Qt::CaseInsensitive)
|
||||
== 0),
|
||||
m_sshTerminal(nullptr),
|
||||
m_rdpDisplay(nullptr),
|
||||
m_terminalOutput(nullptr),
|
||||
m_eventLog(nullptr),
|
||||
m_toggleEventsButton(nullptr),
|
||||
m_eventsPanel(nullptr)
|
||||
m_eventFilterInput(nullptr),
|
||||
m_eventSeverityFilterInput(nullptr),
|
||||
m_clearEventsButton(nullptr),
|
||||
m_exportEventsButton(nullptr),
|
||||
m_eventsPanel(nullptr),
|
||||
m_passwordPromptBar(nullptr),
|
||||
m_passwordPromptLabel(nullptr),
|
||||
m_passwordPromptInput(nullptr),
|
||||
m_passwordPromptConnectButton(nullptr),
|
||||
m_passwordPromptCancelButton(nullptr),
|
||||
m_eventSeverityFilter(EventSeverity::Info),
|
||||
m_eventsPanelExpanded(preferences.eventsPanelExpanded)
|
||||
{
|
||||
qRegisterMetaType<SessionConnectOptions>("SessionConnectOptions");
|
||||
qRegisterMetaType<SessionState>("SessionState");
|
||||
@@ -150,6 +176,11 @@ SessionTab::SessionTab(const Profile& profile, QWidget* parent)
|
||||
m_backend,
|
||||
&SessionBackend::updateTerminalSize,
|
||||
Qt::QueuedConnection);
|
||||
connect(this,
|
||||
&SessionTab::requestDisplayScale,
|
||||
m_backend,
|
||||
&SessionBackend::updateDisplayScale,
|
||||
Qt::QueuedConnection);
|
||||
connect(this,
|
||||
&SessionTab::requestKeyEvent,
|
||||
m_backend,
|
||||
@@ -170,6 +201,11 @@ SessionTab::SessionTab(const Profile& profile, QWidget* parent)
|
||||
m_backend,
|
||||
&SessionBackend::sendMouseWheelEvent,
|
||||
Qt::QueuedConnection);
|
||||
connect(this,
|
||||
&SessionTab::requestSetClipboardText,
|
||||
m_backend,
|
||||
&SessionBackend::setClipboardText,
|
||||
Qt::QueuedConnection);
|
||||
|
||||
connect(m_backend,
|
||||
&SessionBackend::stateChanged,
|
||||
@@ -214,10 +250,49 @@ SessionTab::SessionTab(const Profile& profile, QWidget* parent)
|
||||
}
|
||||
},
|
||||
Qt::QueuedConnection);
|
||||
connect(m_backend,
|
||||
&SessionBackend::remoteClipboardTextChanged,
|
||||
this,
|
||||
&SessionTab::onBackendRemoteClipboardTextChanged,
|
||||
Qt::QueuedConnection);
|
||||
connect(m_backend,
|
||||
&SessionBackend::cursorImageChanged,
|
||||
this,
|
||||
[this](const QImage& image, const QPoint& hotspot) {
|
||||
if (m_rdpDisplay != nullptr) {
|
||||
m_rdpDisplay->setCursorImage(image, hotspot);
|
||||
}
|
||||
},
|
||||
Qt::QueuedConnection);
|
||||
connect(m_backend,
|
||||
&SessionBackend::cursorHidden,
|
||||
this,
|
||||
[this]() {
|
||||
if (m_rdpDisplay != nullptr) {
|
||||
m_rdpDisplay->setCursorHidden();
|
||||
}
|
||||
},
|
||||
Qt::QueuedConnection);
|
||||
connect(m_backend,
|
||||
&SessionBackend::cursorReset,
|
||||
this,
|
||||
[this]() {
|
||||
if (m_rdpDisplay != nullptr) {
|
||||
m_rdpDisplay->setCursorDefault();
|
||||
}
|
||||
},
|
||||
Qt::QueuedConnection);
|
||||
|
||||
m_backendThread->start();
|
||||
}
|
||||
|
||||
if (m_clipboardSyncSupported) {
|
||||
connect(QApplication::clipboard(),
|
||||
&QClipboard::dataChanged,
|
||||
this,
|
||||
&SessionTab::onSystemClipboardChanged);
|
||||
}
|
||||
|
||||
setState(SessionState::Disconnected, QStringLiteral("Ready to connect."));
|
||||
QTimer::singleShot(0, this, &SessionTab::connectSession);
|
||||
}
|
||||
@@ -250,21 +325,20 @@ void SessionTab::connectSession()
|
||||
return;
|
||||
}
|
||||
|
||||
const std::optional<SessionConnectOptions> options = buildConnectOptions();
|
||||
if (!options.has_value()) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_lastConnectOptions = options.value();
|
||||
|
||||
if (m_useKodoTermForSsh) {
|
||||
if (!startSshTerminal(options.value())) {
|
||||
requestConnectOptions([this](std::optional<SessionConnectOptions> options) {
|
||||
if (!options.has_value()) {
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
emit requestConnect(options.value());
|
||||
m_lastConnectOptions = options.value();
|
||||
|
||||
if (m_useKodoTermForSsh) {
|
||||
startSshTerminal(options.value());
|
||||
return;
|
||||
}
|
||||
|
||||
emit requestConnect(options.value());
|
||||
});
|
||||
}
|
||||
|
||||
void SessionTab::disconnectSession()
|
||||
@@ -290,24 +364,25 @@ void SessionTab::reconnectSession()
|
||||
return;
|
||||
}
|
||||
|
||||
const std::optional<SessionConnectOptions> options = buildConnectOptions();
|
||||
if (!options.has_value()) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_lastConnectOptions = options.value();
|
||||
|
||||
if (m_useKodoTermForSsh) {
|
||||
if (m_sshTerminal != nullptr) {
|
||||
m_sshTerminal->kill();
|
||||
requestConnectOptions([this](std::optional<SessionConnectOptions> options) {
|
||||
if (!options.has_value()) {
|
||||
return;
|
||||
}
|
||||
QTimer::singleShot(50,
|
||||
this,
|
||||
[this, options]() { startSshTerminal(options.value()); });
|
||||
return;
|
||||
}
|
||||
|
||||
emit requestReconnect(options.value());
|
||||
m_lastConnectOptions = options.value();
|
||||
|
||||
if (m_useKodoTermForSsh) {
|
||||
if (m_sshTerminal != nullptr) {
|
||||
m_sshTerminal->kill();
|
||||
}
|
||||
QTimer::singleShot(50,
|
||||
this,
|
||||
[this, options]() { startSshTerminal(options.value()); });
|
||||
return;
|
||||
}
|
||||
|
||||
emit requestReconnect(options.value());
|
||||
});
|
||||
}
|
||||
|
||||
void SessionTab::clearTerminal()
|
||||
@@ -347,6 +422,7 @@ void SessionTab::setTerminalThemeName(const QString& themeName)
|
||||
m_terminalThemeName = normalized;
|
||||
applyTerminalTheme(m_terminalThemeName);
|
||||
appendEvent(QStringLiteral("Terminal theme set to %1.").arg(m_terminalThemeName));
|
||||
emit terminalThemeChanged(m_terminalThemeName);
|
||||
}
|
||||
|
||||
QString SessionTab::terminalThemeName() const
|
||||
@@ -364,6 +440,189 @@ bool SessionTab::supportsClearAction() const
|
||||
return m_useKodoTermForSsh || m_terminalOutput != nullptr;
|
||||
}
|
||||
|
||||
bool SessionTab::supportsZoom() const
|
||||
{
|
||||
return m_useKodoTermForSsh || m_terminalOutput != nullptr;
|
||||
}
|
||||
|
||||
void SessionTab::zoomIn()
|
||||
{
|
||||
if (m_useKodoTermForSsh && m_sshTerminal != nullptr) {
|
||||
m_sshTerminal->zoomIn();
|
||||
m_terminalFontPointSize = m_sshTerminal->getConfig().font.pointSize();
|
||||
} else if (m_terminalOutput != nullptr) {
|
||||
m_terminalFontPointSize = m_terminalOutput->font().pointSize() + 1;
|
||||
m_terminalOutput->setFontPointSize(m_terminalFontPointSize);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
emit terminalFontSizeChanged(m_terminalFontPointSize);
|
||||
}
|
||||
|
||||
void SessionTab::zoomOut()
|
||||
{
|
||||
if (m_useKodoTermForSsh && m_sshTerminal != nullptr) {
|
||||
m_sshTerminal->zoomOut();
|
||||
m_terminalFontPointSize = m_sshTerminal->getConfig().font.pointSize();
|
||||
} else if (m_terminalOutput != nullptr) {
|
||||
const int newSize = m_terminalOutput->font().pointSize() - 1;
|
||||
if (newSize < 6) {
|
||||
return;
|
||||
}
|
||||
m_terminalFontPointSize = newSize;
|
||||
m_terminalOutput->setFontPointSize(m_terminalFontPointSize);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
emit terminalFontSizeChanged(m_terminalFontPointSize);
|
||||
}
|
||||
|
||||
void SessionTab::resetZoom()
|
||||
{
|
||||
if (m_useKodoTermForSsh && m_sshTerminal != nullptr) {
|
||||
m_sshTerminal->resetZoom();
|
||||
m_terminalFontPointSize = m_sshTerminal->getConfig().font.pointSize();
|
||||
} else if (m_terminalOutput != nullptr) {
|
||||
m_terminalFontPointSize = defaultTerminalFont().pointSize();
|
||||
m_terminalOutput->setFontPointSize(m_terminalFontPointSize);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
emit terminalFontSizeChanged(m_terminalFontPointSize);
|
||||
}
|
||||
|
||||
void SessionTab::setTerminalFontPointSize(int pointSize)
|
||||
{
|
||||
const int clamped = qBound(6, pointSize, 72);
|
||||
|
||||
if (m_useKodoTermForSsh && m_sshTerminal != nullptr) {
|
||||
KodoTermConfig config = m_sshTerminal->getConfig();
|
||||
config.font.setPointSize(clamped);
|
||||
m_sshTerminal->setConfig(config);
|
||||
m_terminalFontPointSize = clamped;
|
||||
} else if (m_terminalOutput != nullptr) {
|
||||
m_terminalFontPointSize = clamped;
|
||||
m_terminalOutput->setFontPointSize(clamped);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
emit terminalFontSizeChanged(m_terminalFontPointSize);
|
||||
}
|
||||
|
||||
int SessionTab::terminalFontPointSize() const
|
||||
{
|
||||
return m_terminalFontPointSize;
|
||||
}
|
||||
|
||||
bool SessionTab::isEventsPanelExpanded() const
|
||||
{
|
||||
return m_eventsPanelExpanded;
|
||||
}
|
||||
|
||||
void SessionTab::setEventsPanelExpanded(bool expanded)
|
||||
{
|
||||
if (m_eventsPanel == nullptr || m_toggleEventsButton == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_eventsPanelExpanded == expanded && m_eventsPanel->isVisible() == expanded) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_eventsPanelExpanded = expanded;
|
||||
setPanelExpanded(m_toggleEventsButton, m_eventsPanel, QStringLiteral("Events"), expanded);
|
||||
emit eventsPanelVisibilityChanged(m_eventsPanelExpanded);
|
||||
}
|
||||
|
||||
void SessionTab::clearEvents()
|
||||
{
|
||||
m_eventEntries.clear();
|
||||
if (m_eventLog != nullptr) {
|
||||
m_eventLog->clear();
|
||||
}
|
||||
}
|
||||
|
||||
void SessionTab::copyEvents() const
|
||||
{
|
||||
QStringList visibleLines;
|
||||
for (const EventEntry& entry : m_eventEntries) {
|
||||
const bool matchesText = m_eventFilter.isEmpty()
|
||||
|| entry.line.contains(m_eventFilter, Qt::CaseInsensitive);
|
||||
bool matchesSeverity = true;
|
||||
if (m_eventSeverityFilter == EventSeverity::Warning) {
|
||||
matchesSeverity = entry.severity == EventSeverity::Warning;
|
||||
} else if (m_eventSeverityFilter == EventSeverity::Error) {
|
||||
matchesSeverity = entry.severity == EventSeverity::Error;
|
||||
} else if (m_eventSeverityFilter == EventSeverity::Info) {
|
||||
matchesSeverity = true;
|
||||
}
|
||||
|
||||
if (matchesText && matchesSeverity) {
|
||||
visibleLines.push_back(entry.line);
|
||||
}
|
||||
}
|
||||
|
||||
if (!visibleLines.isEmpty()) {
|
||||
QApplication::clipboard()->setText(visibleLines.join(QChar::fromLatin1('\n')));
|
||||
}
|
||||
}
|
||||
|
||||
void SessionTab::exportEventsToFile()
|
||||
{
|
||||
QStringList visibleLines;
|
||||
for (const EventEntry& entry : m_eventEntries) {
|
||||
const bool matchesText = m_eventFilter.isEmpty()
|
||||
|| entry.line.contains(m_eventFilter, Qt::CaseInsensitive);
|
||||
bool matchesSeverity = true;
|
||||
if (m_eventSeverityFilter == EventSeverity::Warning) {
|
||||
matchesSeverity = entry.severity == EventSeverity::Warning;
|
||||
} else if (m_eventSeverityFilter == EventSeverity::Error) {
|
||||
matchesSeverity = entry.severity == EventSeverity::Error;
|
||||
} else if (m_eventSeverityFilter == EventSeverity::Info) {
|
||||
matchesSeverity = true;
|
||||
}
|
||||
if (matchesText && matchesSeverity) {
|
||||
visibleLines.push_back(entry.line);
|
||||
}
|
||||
}
|
||||
|
||||
if (visibleLines.isEmpty()) {
|
||||
QMessageBox::information(this,
|
||||
QStringLiteral("Export Events"),
|
||||
QStringLiteral("No events match the current filters."));
|
||||
return;
|
||||
}
|
||||
|
||||
const QString defaultName =
|
||||
QStringLiteral("orbithub-events-%1.log")
|
||||
.arg(QDateTime::currentDateTime().toString(QStringLiteral("yyyyMMdd-HHmmss")));
|
||||
const QString targetPath = QFileDialog::getSaveFileName(this,
|
||||
QStringLiteral("Export Session Events"),
|
||||
defaultName,
|
||||
QStringLiteral("Log Files (*.log);;Text Files (*.txt);;All Files (*)"));
|
||||
if (targetPath.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
QFile file(targetPath);
|
||||
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Export Events"),
|
||||
QStringLiteral("Failed to write file: %1").arg(targetPath));
|
||||
return;
|
||||
}
|
||||
|
||||
QTextStream stream(&file);
|
||||
for (const QString& line : visibleLines) {
|
||||
stream << line << '\n';
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
|
||||
void SessionTab::onBackendStateChanged(SessionState state, const QString& message)
|
||||
{
|
||||
setState(state, message);
|
||||
@@ -408,13 +667,46 @@ void SessionTab::onBackendHostKeyConfirmationRequested(const QString& prompt)
|
||||
emit requestHostKeyConfirmation(reply == QMessageBox::Yes);
|
||||
}
|
||||
|
||||
void SessionTab::onBackendRemoteClipboardTextChanged(const QString& text)
|
||||
{
|
||||
if (text == m_lastSyncedClipboardText) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_lastSyncedClipboardText = text;
|
||||
QApplication::clipboard()->setText(text);
|
||||
}
|
||||
|
||||
void SessionTab::onSystemClipboardChanged()
|
||||
{
|
||||
if (!m_clipboardSyncSupported || m_state != SessionState::Connected) {
|
||||
return;
|
||||
}
|
||||
|
||||
const QClipboard* clipboard = QApplication::clipboard();
|
||||
if (!clipboard->mimeData()->hasText()) {
|
||||
return;
|
||||
}
|
||||
|
||||
const QString text = clipboard->text();
|
||||
if (text == m_lastSyncedClipboardText) {
|
||||
return;
|
||||
}
|
||||
|
||||
m_lastSyncedClipboardText = text;
|
||||
emit requestSetClipboardText(text);
|
||||
}
|
||||
|
||||
void SessionTab::setupUi()
|
||||
{
|
||||
auto* rootLayout = new QVBoxLayout(this);
|
||||
|
||||
if (m_useKodoTermForSsh) {
|
||||
m_sshTerminal = new KodoTerm(this);
|
||||
const QFont terminalFont = defaultTerminalFont();
|
||||
QFont terminalFont = defaultTerminalFont();
|
||||
if (m_terminalFontPointSize > 0) {
|
||||
terminalFont.setPointSize(m_terminalFontPointSize);
|
||||
}
|
||||
|
||||
KodoTermConfig config = m_sshTerminal->getConfig();
|
||||
config.font = terminalFont;
|
||||
@@ -427,7 +719,11 @@ void SessionTab::setupUi()
|
||||
rootLayout->addWidget(m_rdpDisplay, 1);
|
||||
} else {
|
||||
m_terminalOutput = new TerminalView(this);
|
||||
m_terminalOutput->setFont(defaultTerminalFont());
|
||||
QFont fallbackFont = defaultTerminalFont();
|
||||
if (m_terminalFontPointSize > 0) {
|
||||
fallbackFont.setPointSize(m_terminalFontPointSize);
|
||||
}
|
||||
m_terminalOutput->setFont(fallbackFont);
|
||||
m_terminalOutput->setMinimumHeight(260);
|
||||
m_terminalOutput->setReadOnly(true);
|
||||
if (m_profile.protocol.compare(QStringLiteral("VNC"), Qt::CaseInsensitive) == 0) {
|
||||
@@ -442,10 +738,63 @@ void SessionTab::setupUi()
|
||||
|
||||
applyTerminalTheme(m_terminalThemeName);
|
||||
|
||||
auto* passwordPromptLayout = new QHBoxLayout();
|
||||
m_passwordPromptLabel = new QLabel(this);
|
||||
m_passwordPromptInput = new QLineEdit(this);
|
||||
m_passwordPromptInput->setEchoMode(QLineEdit::Password);
|
||||
m_passwordPromptConnectButton = new QPushButton(QStringLiteral("Connect"), this);
|
||||
m_passwordPromptCancelButton = new QPushButton(QStringLiteral("Cancel"), this);
|
||||
passwordPromptLayout->addWidget(m_passwordPromptLabel);
|
||||
passwordPromptLayout->addWidget(m_passwordPromptInput, 1);
|
||||
passwordPromptLayout->addWidget(m_passwordPromptConnectButton);
|
||||
passwordPromptLayout->addWidget(m_passwordPromptCancelButton);
|
||||
|
||||
m_passwordPromptBar = new QWidget(this);
|
||||
m_passwordPromptBar->setLayout(passwordPromptLayout);
|
||||
m_passwordPromptBar->setAutoFillBackground(true);
|
||||
m_passwordPromptBar->setVisible(false);
|
||||
rootLayout->addWidget(m_passwordPromptBar);
|
||||
|
||||
connect(m_passwordPromptConnectButton, &QPushButton::clicked, this, [this]() {
|
||||
if (!m_passwordPromptCallback) {
|
||||
return;
|
||||
}
|
||||
const QString password = m_passwordPromptInput->text();
|
||||
const auto callback = m_passwordPromptCallback;
|
||||
hidePasswordPrompt();
|
||||
callback(password);
|
||||
});
|
||||
connect(m_passwordPromptCancelButton, &QPushButton::clicked, this, [this]() {
|
||||
if (!m_passwordPromptCallback) {
|
||||
return;
|
||||
}
|
||||
const auto callback = m_passwordPromptCallback;
|
||||
hidePasswordPrompt();
|
||||
callback(std::nullopt);
|
||||
});
|
||||
connect(m_passwordPromptInput,
|
||||
&QLineEdit::returnPressed,
|
||||
m_passwordPromptConnectButton,
|
||||
&QPushButton::click);
|
||||
|
||||
auto* eventsHeader = new QHBoxLayout();
|
||||
m_toggleEventsButton = new QToolButton(this);
|
||||
m_toggleEventsButton->setCheckable(true);
|
||||
m_eventFilterInput = new QLineEdit(this);
|
||||
m_eventFilterInput->setPlaceholderText(QStringLiteral("Filter events..."));
|
||||
m_eventSeverityFilterInput = new QComboBox(this);
|
||||
m_eventSeverityFilterInput->addItem(QStringLiteral("All"));
|
||||
m_eventSeverityFilterInput->addItem(QStringLiteral("Warnings"));
|
||||
m_eventSeverityFilterInput->addItem(QStringLiteral("Errors"));
|
||||
m_clearEventsButton = new QToolButton(this);
|
||||
m_clearEventsButton->setText(QStringLiteral("Clear Events"));
|
||||
m_exportEventsButton = new QToolButton(this);
|
||||
m_exportEventsButton->setText(QStringLiteral("Export Events"));
|
||||
eventsHeader->addWidget(m_toggleEventsButton);
|
||||
eventsHeader->addWidget(m_eventFilterInput, 1);
|
||||
eventsHeader->addWidget(m_eventSeverityFilterInput);
|
||||
eventsHeader->addWidget(m_exportEventsButton);
|
||||
eventsHeader->addWidget(m_clearEventsButton);
|
||||
eventsHeader->addStretch();
|
||||
|
||||
m_eventsPanel = new QWidget(this);
|
||||
@@ -464,15 +813,43 @@ void SessionTab::setupUi()
|
||||
rootLayout->addLayout(eventsHeader);
|
||||
rootLayout->addWidget(m_eventsPanel);
|
||||
|
||||
setPanelExpanded(m_toggleEventsButton, m_eventsPanel, QStringLiteral("Events"), false);
|
||||
setPanelExpanded(
|
||||
m_toggleEventsButton, m_eventsPanel, QStringLiteral("Events"), m_eventsPanelExpanded);
|
||||
|
||||
connect(m_toggleEventsButton,
|
||||
&QToolButton::toggled,
|
||||
this,
|
||||
[this](bool expanded) {
|
||||
setPanelExpanded(
|
||||
m_toggleEventsButton, m_eventsPanel, QStringLiteral("Events"), expanded);
|
||||
setEventsPanelExpanded(expanded);
|
||||
});
|
||||
connect(m_eventFilterInput,
|
||||
&QLineEdit::textChanged,
|
||||
this,
|
||||
[this](const QString& text) {
|
||||
m_eventFilter = text.trimmed();
|
||||
refreshEventLogView();
|
||||
});
|
||||
connect(m_eventSeverityFilterInput,
|
||||
&QComboBox::currentTextChanged,
|
||||
this,
|
||||
[this](const QString& selected) {
|
||||
if (selected.compare(QStringLiteral("Errors"), Qt::CaseInsensitive) == 0) {
|
||||
m_eventSeverityFilter = EventSeverity::Error;
|
||||
} else if (selected.compare(QStringLiteral("Warnings"), Qt::CaseInsensitive) == 0) {
|
||||
m_eventSeverityFilter = EventSeverity::Warning;
|
||||
} else {
|
||||
m_eventSeverityFilter = EventSeverity::Info;
|
||||
}
|
||||
refreshEventLogView();
|
||||
});
|
||||
connect(m_exportEventsButton,
|
||||
&QToolButton::clicked,
|
||||
this,
|
||||
[this]() { exportEventsToFile(); });
|
||||
connect(m_clearEventsButton,
|
||||
&QToolButton::clicked,
|
||||
this,
|
||||
[this]() { clearEvents(); });
|
||||
|
||||
if (m_terminalOutput != nullptr) {
|
||||
connect(m_terminalOutput,
|
||||
@@ -488,6 +865,10 @@ void SessionTab::setupUi()
|
||||
&RdpDisplayWidget::viewportSizeChanged,
|
||||
this,
|
||||
[this](int width, int height) { emit requestTerminalSize(width, height); });
|
||||
connect(m_rdpDisplay,
|
||||
&RdpDisplayWidget::displayScaleChanged,
|
||||
this,
|
||||
[this](qreal ratio) { emit requestDisplayScale(ratio); });
|
||||
connect(m_rdpDisplay,
|
||||
&RdpDisplayWidget::keyInput,
|
||||
this,
|
||||
@@ -513,77 +894,85 @@ void SessionTab::setupUi()
|
||||
}
|
||||
}
|
||||
|
||||
std::optional<SessionConnectOptions> SessionTab::buildConnectOptions()
|
||||
void SessionTab::requestConnectOptions(
|
||||
std::function<void(std::optional<SessionConnectOptions>)> callback)
|
||||
{
|
||||
SessionConnectOptions options;
|
||||
options.knownHostsPolicy = m_profile.knownHostsPolicy;
|
||||
SessionConnectOptions baseOptions;
|
||||
baseOptions.knownHostsPolicy = m_profile.knownHostsPolicy;
|
||||
|
||||
const bool isSsh = m_profile.protocol.compare(QStringLiteral("SSH"), Qt::CaseInsensitive) == 0;
|
||||
const bool isRdp = m_profile.protocol.compare(QStringLiteral("RDP"), Qt::CaseInsensitive) == 0;
|
||||
|
||||
if (!isSsh && !isRdp) {
|
||||
return options;
|
||||
callback(baseOptions);
|
||||
return;
|
||||
}
|
||||
|
||||
if (isRdp) {
|
||||
if (m_profile.authMode.compare(QStringLiteral("Password"), Qt::CaseInsensitive) != 0) {
|
||||
return options;
|
||||
callback(baseOptions);
|
||||
return;
|
||||
}
|
||||
|
||||
bool accepted = false;
|
||||
const QString password = QInputDialog::getText(
|
||||
this,
|
||||
QStringLiteral("RDP Password"),
|
||||
QStringLiteral("Password for %1:")
|
||||
.arg(m_profile.username.trimmed().isEmpty()
|
||||
? m_profile.host
|
||||
: QStringLiteral("%1@%2").arg(m_profile.username, m_profile.host)),
|
||||
QLineEdit::Password,
|
||||
QString(),
|
||||
&accepted);
|
||||
if (!accepted) {
|
||||
return std::nullopt;
|
||||
}
|
||||
const QString label = QStringLiteral("RDP password for %1:")
|
||||
.arg(m_profile.username.trimmed().isEmpty()
|
||||
? m_profile.host
|
||||
: QStringLiteral("%1@%2").arg(m_profile.username, m_profile.host));
|
||||
|
||||
if (password.isEmpty()) {
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Connect"),
|
||||
QStringLiteral("Password is required for password authentication."));
|
||||
return std::nullopt;
|
||||
}
|
||||
showPasswordPrompt(
|
||||
label,
|
||||
[this, baseOptions, callback](std::optional<QString> password) {
|
||||
if (!password.has_value()) {
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
|
||||
options.password = password;
|
||||
return options;
|
||||
if (password->isEmpty()) {
|
||||
QMessageBox::warning(
|
||||
this,
|
||||
QStringLiteral("Connect"),
|
||||
QStringLiteral("Password is required for password authentication."));
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
|
||||
SessionConnectOptions options = baseOptions;
|
||||
options.password = password.value();
|
||||
callback(options);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_useKodoTermForSsh
|
||||
&& m_profile.authMode.compare(QStringLiteral("Password"), Qt::CaseInsensitive) == 0) {
|
||||
// Password is entered directly in terminal prompt.
|
||||
return options;
|
||||
callback(baseOptions);
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_profile.authMode.compare(QStringLiteral("Password"), Qt::CaseInsensitive) == 0) {
|
||||
bool accepted = false;
|
||||
const QString password = QInputDialog::getText(this,
|
||||
QStringLiteral("SSH Password"),
|
||||
QStringLiteral("Password for %1@%2:")
|
||||
.arg(m_profile.username, m_profile.host),
|
||||
QLineEdit::Password,
|
||||
QString(),
|
||||
&accepted);
|
||||
if (!accepted) {
|
||||
return std::nullopt;
|
||||
}
|
||||
showPasswordPrompt(
|
||||
QStringLiteral("SSH password for %1@%2:").arg(m_profile.username, m_profile.host),
|
||||
[this, baseOptions, callback](std::optional<QString> password) {
|
||||
if (!password.has_value()) {
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
|
||||
if (password.isEmpty()) {
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Connect"),
|
||||
QStringLiteral("Password is required for password authentication."));
|
||||
return std::nullopt;
|
||||
}
|
||||
if (password->isEmpty()) {
|
||||
QMessageBox::warning(
|
||||
this,
|
||||
QStringLiteral("Connect"),
|
||||
QStringLiteral("Password is required for password authentication."));
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
|
||||
options.password = password;
|
||||
return options;
|
||||
SessionConnectOptions options = baseOptions;
|
||||
options.password = password.value();
|
||||
callback(options);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
QString keyPath = m_profile.privateKeyPath.trimmed();
|
||||
@@ -593,7 +982,8 @@ std::optional<SessionConnectOptions> SessionTab::buildConnectOptions()
|
||||
QString(),
|
||||
QStringLiteral("All Files (*)"));
|
||||
if (keyPath.isEmpty()) {
|
||||
return std::nullopt;
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -601,11 +991,35 @@ std::optional<SessionConnectOptions> SessionTab::buildConnectOptions()
|
||||
QMessageBox::warning(this,
|
||||
QStringLiteral("Connect"),
|
||||
QStringLiteral("Private key file not found: %1").arg(keyPath));
|
||||
return std::nullopt;
|
||||
callback(std::nullopt);
|
||||
return;
|
||||
}
|
||||
|
||||
SessionConnectOptions options = baseOptions;
|
||||
options.privateKeyPath = keyPath;
|
||||
return options;
|
||||
callback(options);
|
||||
}
|
||||
|
||||
void SessionTab::showPasswordPrompt(const QString& labelText,
|
||||
std::function<void(std::optional<QString>)> callback)
|
||||
{
|
||||
if (m_passwordPromptCallback) {
|
||||
const auto previousCallback = m_passwordPromptCallback;
|
||||
m_passwordPromptCallback = nullptr;
|
||||
previousCallback(std::nullopt);
|
||||
}
|
||||
|
||||
m_passwordPromptCallback = std::move(callback);
|
||||
m_passwordPromptLabel->setText(labelText);
|
||||
m_passwordPromptInput->clear();
|
||||
m_passwordPromptBar->setVisible(true);
|
||||
m_passwordPromptInput->setFocus();
|
||||
}
|
||||
|
||||
void SessionTab::hidePasswordPrompt()
|
||||
{
|
||||
m_passwordPromptBar->setVisible(false);
|
||||
m_passwordPromptCallback = nullptr;
|
||||
}
|
||||
|
||||
bool SessionTab::validateProfileForConnect()
|
||||
@@ -639,7 +1053,14 @@ bool SessionTab::validateProfileForConnect()
|
||||
void SessionTab::appendEvent(const QString& message)
|
||||
{
|
||||
const QString timestamp = QDateTime::currentDateTime().toString(QStringLiteral("yyyy-MM-dd HH:mm:ss"));
|
||||
m_eventLog->appendPlainText(QStringLiteral("[%1] %2").arg(timestamp, message));
|
||||
m_eventEntries.push_back(
|
||||
EventEntry{QStringLiteral("[%1] %2").arg(timestamp, message),
|
||||
classifyEventSeverity(message)});
|
||||
constexpr int kMaxEventLines = 5000;
|
||||
while (m_eventEntries.size() > static_cast<size_t>(kMaxEventLines)) {
|
||||
m_eventEntries.erase(m_eventEntries.begin());
|
||||
}
|
||||
refreshEventLogView();
|
||||
}
|
||||
|
||||
void SessionTab::setState(SessionState state, const QString& message)
|
||||
@@ -803,3 +1224,51 @@ void SessionTab::applyTerminalTheme(const QString& themeName)
|
||||
m_terminalOutput->setThemeName(themeName);
|
||||
}
|
||||
}
|
||||
|
||||
void SessionTab::refreshEventLogView()
|
||||
{
|
||||
if (m_eventLog == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
QStringList visibleLines;
|
||||
visibleLines.reserve(static_cast<int>(m_eventEntries.size()));
|
||||
|
||||
for (const EventEntry& entry : m_eventEntries) {
|
||||
if (!m_eventFilter.isEmpty() && !entry.line.contains(m_eventFilter, Qt::CaseInsensitive)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (m_eventSeverityFilter == EventSeverity::Warning
|
||||
&& entry.severity != EventSeverity::Warning) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (m_eventSeverityFilter == EventSeverity::Error
|
||||
&& entry.severity != EventSeverity::Error) {
|
||||
continue;
|
||||
}
|
||||
|
||||
visibleLines.push_back(entry.line);
|
||||
}
|
||||
|
||||
m_eventLog->setPlainText(visibleLines.join(QChar::fromLatin1('\n')));
|
||||
m_eventLog->moveCursor(QTextCursor::End);
|
||||
}
|
||||
|
||||
SessionTab::EventSeverity SessionTab::classifyEventSeverity(const QString& message)
|
||||
{
|
||||
const QString normalized = message.trimmed().toLower();
|
||||
if (normalized.startsWith(QStringLiteral("error:"))
|
||||
|| normalized.contains(QStringLiteral("failed"))
|
||||
|| normalized.contains(QStringLiteral("permission denied"))) {
|
||||
return EventSeverity::Error;
|
||||
}
|
||||
|
||||
if (normalized.startsWith(QStringLiteral("warning:"))
|
||||
|| normalized.contains(QStringLiteral("warning"))) {
|
||||
return EventSeverity::Warning;
|
||||
}
|
||||
|
||||
return EventSeverity::Info;
|
||||
}
|
||||
|
||||
@@ -5,9 +5,12 @@
|
||||
#include "session_backend.h"
|
||||
|
||||
#include <QWidget>
|
||||
#include <QStringList>
|
||||
#include <QtGlobal>
|
||||
|
||||
#include <functional>
|
||||
#include <optional>
|
||||
#include <vector>
|
||||
|
||||
class QPlainTextEdit;
|
||||
class QThread;
|
||||
@@ -15,14 +18,27 @@ class SessionBackend;
|
||||
class TerminalView;
|
||||
class RdpDisplayWidget;
|
||||
class QToolButton;
|
||||
class QLineEdit;
|
||||
class QComboBox;
|
||||
class QLabel;
|
||||
class QPushButton;
|
||||
class KodoTerm;
|
||||
|
||||
struct SessionUiPreferences
|
||||
{
|
||||
QString terminalThemeName = QStringLiteral("Dark");
|
||||
bool eventsPanelExpanded = false;
|
||||
int terminalFontPointSize = 0;
|
||||
};
|
||||
|
||||
class SessionTab : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SessionTab(const Profile& profile, QWidget* parent = nullptr);
|
||||
explicit SessionTab(const Profile& profile,
|
||||
const SessionUiPreferences& preferences,
|
||||
QWidget* parent = nullptr);
|
||||
~SessionTab() override;
|
||||
|
||||
QString tabTitle() const;
|
||||
@@ -34,16 +50,31 @@ public:
|
||||
QString terminalThemeName() const;
|
||||
bool supportsThemeSelection() const;
|
||||
bool supportsClearAction() const;
|
||||
bool supportsZoom() const;
|
||||
void zoomIn();
|
||||
void zoomOut();
|
||||
void resetZoom();
|
||||
void setTerminalFontPointSize(int pointSize);
|
||||
int terminalFontPointSize() const;
|
||||
bool isEventsPanelExpanded() const;
|
||||
void setEventsPanelExpanded(bool expanded);
|
||||
void clearEvents();
|
||||
void copyEvents() const;
|
||||
void exportEventsToFile();
|
||||
|
||||
signals:
|
||||
void tabTitleChanged(const QString& title);
|
||||
void tabStateChanged(SessionState state);
|
||||
void terminalThemeChanged(const QString& themeName);
|
||||
void terminalFontSizeChanged(int pointSize);
|
||||
void eventsPanelVisibilityChanged(bool expanded);
|
||||
void requestConnect(const SessionConnectOptions& options);
|
||||
void requestDisconnect();
|
||||
void requestReconnect(const SessionConnectOptions& options);
|
||||
void requestInput(const QString& input);
|
||||
void requestHostKeyConfirmation(bool trustHost);
|
||||
void requestTerminalSize(int columns, int rows);
|
||||
void requestDisplayScale(qreal devicePixelRatio);
|
||||
void requestKeyEvent(int key,
|
||||
quint32 nativeScanCode,
|
||||
const QString& text,
|
||||
@@ -52,6 +83,7 @@ signals:
|
||||
void requestMouseMoveEvent(int x, int y);
|
||||
void requestMouseButtonEvent(int x, int y, int button, bool pressed);
|
||||
void requestMouseWheelEvent(int x, int y, int deltaX, int deltaY);
|
||||
void requestSetClipboardText(const QString& text);
|
||||
|
||||
private slots:
|
||||
void onBackendStateChanged(SessionState state, const QString& message);
|
||||
@@ -59,6 +91,8 @@ private slots:
|
||||
void onBackendConnectionError(const QString& displayMessage, const QString& rawMessage);
|
||||
void onBackendOutputReceived(const QString& text);
|
||||
void onBackendHostKeyConfirmationRequested(const QString& prompt);
|
||||
void onBackendRemoteClipboardTextChanged(const QString& text);
|
||||
void onSystemClipboardChanged();
|
||||
|
||||
private:
|
||||
Profile m_profile;
|
||||
@@ -69,16 +103,45 @@ private:
|
||||
QString m_lastError;
|
||||
SessionConnectOptions m_lastConnectOptions;
|
||||
QString m_terminalThemeName;
|
||||
int m_terminalFontPointSize;
|
||||
QString m_lastSyncedClipboardText;
|
||||
bool m_clipboardSyncSupported;
|
||||
|
||||
KodoTerm* m_sshTerminal;
|
||||
RdpDisplayWidget* m_rdpDisplay;
|
||||
TerminalView* m_terminalOutput;
|
||||
QPlainTextEdit* m_eventLog;
|
||||
QToolButton* m_toggleEventsButton;
|
||||
QLineEdit* m_eventFilterInput;
|
||||
QComboBox* m_eventSeverityFilterInput;
|
||||
QToolButton* m_clearEventsButton;
|
||||
QToolButton* m_exportEventsButton;
|
||||
QWidget* m_eventsPanel;
|
||||
QWidget* m_passwordPromptBar;
|
||||
QLabel* m_passwordPromptLabel;
|
||||
QLineEdit* m_passwordPromptInput;
|
||||
QPushButton* m_passwordPromptConnectButton;
|
||||
QPushButton* m_passwordPromptCancelButton;
|
||||
std::function<void(std::optional<QString>)> m_passwordPromptCallback;
|
||||
enum class EventSeverity {
|
||||
Info,
|
||||
Warning,
|
||||
Error,
|
||||
};
|
||||
struct EventEntry {
|
||||
QString line;
|
||||
EventSeverity severity;
|
||||
};
|
||||
std::vector<EventEntry> m_eventEntries;
|
||||
QString m_eventFilter;
|
||||
EventSeverity m_eventSeverityFilter;
|
||||
bool m_eventsPanelExpanded;
|
||||
|
||||
void setupUi();
|
||||
std::optional<SessionConnectOptions> buildConnectOptions();
|
||||
void requestConnectOptions(std::function<void(std::optional<SessionConnectOptions>)> callback);
|
||||
void showPasswordPrompt(const QString& labelText,
|
||||
std::function<void(std::optional<QString>)> callback);
|
||||
void hidePasswordPrompt();
|
||||
bool validateProfileForConnect();
|
||||
void appendEvent(const QString& message);
|
||||
void setState(SessionState state, const QString& message);
|
||||
@@ -87,6 +150,8 @@ private:
|
||||
void setPanelExpanded(QToolButton* button, QWidget* panel, const QString& name, bool expanded);
|
||||
bool startSshTerminal(const SessionConnectOptions& options);
|
||||
void applyTerminalTheme(const QString& themeName);
|
||||
void refreshEventLogView();
|
||||
static EventSeverity classifyEventSeverity(const QString& message);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
#include "session_window.h"
|
||||
|
||||
#include "about_dialog.h"
|
||||
#include "profiles_window.h"
|
||||
#include "user_guide_dialog.h"
|
||||
#include <QApplication>
|
||||
#include "session_tab.h"
|
||||
|
||||
#include <QAction>
|
||||
#include <QColor>
|
||||
#include <QInputDialog>
|
||||
#include <QMenu>
|
||||
#include <QMenuBar>
|
||||
#include <QPalette>
|
||||
#include <QSettings>
|
||||
#include <QStringList>
|
||||
#include <QTabBar>
|
||||
#include <QTabWidget>
|
||||
@@ -33,11 +40,14 @@ QStringList terminalThemeNames()
|
||||
}
|
||||
}
|
||||
|
||||
SessionWindow::SessionWindow(const Profile& profile, QWidget* parent)
|
||||
: QMainWindow(parent), m_tabs(new QTabWidget(this))
|
||||
SessionWindow::SessionWindow(QWidget* parent)
|
||||
: QMainWindow(parent), m_tabs(new QTabWidget(this)), m_profilesWidget(nullptr)
|
||||
{
|
||||
setWindowTitle(QStringLiteral("OrbitHub Session - %1").arg(profile.name));
|
||||
loadUiPreferences();
|
||||
|
||||
setWindowTitle(QStringLiteral("OrbitHub"));
|
||||
resize(1080, 760);
|
||||
setWindowIcon(QApplication::windowIcon());
|
||||
|
||||
m_tabs->setTabsClosable(true);
|
||||
connect(m_tabs,
|
||||
@@ -50,8 +60,8 @@ SessionWindow::SessionWindow(const Profile& profile, QWidget* parent)
|
||||
}
|
||||
m_tabs->removeTab(index);
|
||||
delete tab;
|
||||
if (m_tabs->count() == 0) {
|
||||
close();
|
||||
if (sessionTabCount() == 0) {
|
||||
setWindowTitle(QStringLiteral("OrbitHub"));
|
||||
}
|
||||
});
|
||||
m_tabs->tabBar()->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
@@ -72,6 +82,12 @@ SessionWindow::SessionWindow(const Profile& profile, QWidget* parent)
|
||||
QMenu menu(this);
|
||||
QAction* disconnectAction = menu.addAction(QStringLiteral("Disconnect"));
|
||||
QAction* reconnectAction = menu.addAction(QStringLiteral("Reconnect"));
|
||||
QAction* toggleEventsAction = menu.addAction(
|
||||
tab->isEventsPanelExpanded() ? QStringLiteral("Hide Events")
|
||||
: QStringLiteral("Show Events"));
|
||||
QAction* copyEventsAction = menu.addAction(QStringLiteral("Copy Events"));
|
||||
QAction* exportEventsAction = menu.addAction(QStringLiteral("Export Events"));
|
||||
QAction* clearEventsAction = menu.addAction(QStringLiteral("Clear Events"));
|
||||
QList<QAction*> themeActions;
|
||||
|
||||
if (tab->supportsThemeSelection()) {
|
||||
@@ -92,13 +108,54 @@ SessionWindow::SessionWindow(const Profile& profile, QWidget* parent)
|
||||
clearAction = menu.addAction(QStringLiteral("Clear"));
|
||||
}
|
||||
|
||||
QAction* zoomInAction = nullptr;
|
||||
QAction* zoomOutAction = nullptr;
|
||||
QAction* resetZoomAction = nullptr;
|
||||
QAction* setFontSizeAction = nullptr;
|
||||
if (tab->supportsZoom()) {
|
||||
menu.addSeparator();
|
||||
zoomInAction = menu.addAction(QStringLiteral("Increase Font Size"));
|
||||
zoomOutAction = menu.addAction(QStringLiteral("Decrease Font Size"));
|
||||
resetZoomAction = menu.addAction(QStringLiteral("Reset Font Size"));
|
||||
setFontSizeAction = menu.addAction(QStringLiteral("Set Font Size..."));
|
||||
}
|
||||
|
||||
QAction* chosen = menu.exec(m_tabs->tabBar()->mapToGlobal(pos));
|
||||
if (chosen == disconnectAction) {
|
||||
tab->disconnectSession();
|
||||
} else if (chosen == reconnectAction) {
|
||||
tab->reconnectSession();
|
||||
} else if (chosen == toggleEventsAction) {
|
||||
tab->setEventsPanelExpanded(!tab->isEventsPanelExpanded());
|
||||
} else if (chosen == copyEventsAction) {
|
||||
tab->copyEvents();
|
||||
} else if (chosen == exportEventsAction) {
|
||||
tab->exportEventsToFile();
|
||||
} else if (chosen == clearEventsAction) {
|
||||
tab->clearEvents();
|
||||
} else if (clearAction != nullptr && chosen == clearAction) {
|
||||
tab->clearTerminal();
|
||||
} else if (zoomInAction != nullptr && chosen == zoomInAction) {
|
||||
tab->zoomIn();
|
||||
} else if (zoomOutAction != nullptr && chosen == zoomOutAction) {
|
||||
tab->zoomOut();
|
||||
} else if (resetZoomAction != nullptr && chosen == resetZoomAction) {
|
||||
tab->resetZoom();
|
||||
} else if (setFontSizeAction != nullptr && chosen == setFontSizeAction) {
|
||||
bool accepted = false;
|
||||
const int currentSize =
|
||||
tab->terminalFontPointSize() > 0 ? tab->terminalFontPointSize() : 10;
|
||||
const int newSize = QInputDialog::getInt(this,
|
||||
QStringLiteral("Set Font Size"),
|
||||
QStringLiteral("Font size (points):"),
|
||||
currentSize,
|
||||
6,
|
||||
72,
|
||||
1,
|
||||
&accepted);
|
||||
if (accepted) {
|
||||
tab->setTerminalFontPointSize(newSize);
|
||||
}
|
||||
} else {
|
||||
for (QAction* themeAction : themeActions) {
|
||||
if (chosen == themeAction) {
|
||||
@@ -109,8 +166,61 @@ SessionWindow::SessionWindow(const Profile& profile, QWidget* parent)
|
||||
}
|
||||
});
|
||||
|
||||
QMenu* fileMenu = menuBar()->addMenu(QStringLiteral("File"));
|
||||
QAction* newProfileAction = fileMenu->addAction(QStringLiteral("New Profile"));
|
||||
QAction* newFolderAction = fileMenu->addAction(QStringLiteral("New Folder"));
|
||||
fileMenu->addSeparator();
|
||||
QAction* importProfilesAction = fileMenu->addAction(QStringLiteral("Import Profiles..."));
|
||||
QAction* exportProfilesAction = fileMenu->addAction(QStringLiteral("Export Profiles..."));
|
||||
fileMenu->addSeparator();
|
||||
QAction* quitAction = fileMenu->addAction(QStringLiteral("Quit"));
|
||||
|
||||
connect(newProfileAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() { m_profilesWidget->createProfileInCurrentContext(); });
|
||||
connect(newFolderAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() { m_profilesWidget->createFolderInCurrentContext(); });
|
||||
connect(importProfilesAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() { m_profilesWidget->importProfiles(); });
|
||||
connect(exportProfilesAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() { m_profilesWidget->exportProfiles(); });
|
||||
connect(quitAction, &QAction::triggered, this, []() { qApp->quit(); });
|
||||
|
||||
QMenu* helpMenu = menuBar()->addMenu(QStringLiteral("Help"));
|
||||
QAction* userGuideAction = helpMenu->addAction(QStringLiteral("User Guide"));
|
||||
connect(userGuideAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() {
|
||||
UserGuideDialog dialog(this);
|
||||
dialog.exec();
|
||||
});
|
||||
QAction* aboutAction = helpMenu->addAction(QStringLiteral("About OrbitHub"));
|
||||
connect(aboutAction,
|
||||
&QAction::triggered,
|
||||
this,
|
||||
[this]() {
|
||||
AboutDialog dialog(this);
|
||||
dialog.exec();
|
||||
});
|
||||
|
||||
setCentralWidget(m_tabs);
|
||||
addSessionTab(profile);
|
||||
|
||||
m_profilesWidget = new ProfilesWindow(this);
|
||||
const int profilesIndex = m_tabs->addTab(m_profilesWidget, QStringLiteral("Profiles"));
|
||||
m_tabs->tabBar()->setTabButton(profilesIndex, QTabBar::LeftSide, nullptr);
|
||||
m_tabs->tabBar()->setTabButton(profilesIndex, QTabBar::RightSide, nullptr);
|
||||
connect(m_profilesWidget,
|
||||
&ProfilesWindow::connectRequested,
|
||||
this,
|
||||
&SessionWindow::addSessionTab);
|
||||
}
|
||||
|
||||
void SessionWindow::openProfile(const Profile& profile)
|
||||
@@ -120,11 +230,13 @@ void SessionWindow::openProfile(const Profile& profile)
|
||||
|
||||
void SessionWindow::addSessionTab(const Profile& profile)
|
||||
{
|
||||
auto* tab = new SessionTab(profile, this);
|
||||
auto* tab = new SessionTab(profile, m_preferences, this);
|
||||
const int index = m_tabs->addTab(tab, tab->tabTitle());
|
||||
m_tabs->setCurrentIndex(index);
|
||||
if (m_tabs->count() > 1) {
|
||||
if (sessionTabCount() > 1) {
|
||||
setWindowTitle(QStringLiteral("OrbitHub Sessions"));
|
||||
} else {
|
||||
setWindowTitle(QStringLiteral("OrbitHub Session - %1").arg(profile.name));
|
||||
}
|
||||
m_tabs->tabBar()->setTabTextColor(
|
||||
index, tabColorForState(SessionState::Disconnected, m_tabs->palette()));
|
||||
@@ -145,6 +257,32 @@ void SessionWindow::addSessionTab(const Profile& profile)
|
||||
}
|
||||
}
|
||||
});
|
||||
connect(tab,
|
||||
&SessionTab::terminalThemeChanged,
|
||||
this,
|
||||
[this](const QString& themeName) {
|
||||
m_preferences.terminalThemeName = themeName.trimmed().isEmpty()
|
||||
? QStringLiteral("Dark")
|
||||
: themeName.trimmed();
|
||||
saveUiPreferences();
|
||||
});
|
||||
connect(tab,
|
||||
&SessionTab::terminalFontSizeChanged,
|
||||
this,
|
||||
[this](int pointSize) {
|
||||
if (pointSize <= 0) {
|
||||
return;
|
||||
}
|
||||
m_preferences.terminalFontPointSize = pointSize;
|
||||
saveUiPreferences();
|
||||
});
|
||||
connect(tab,
|
||||
&SessionTab::eventsPanelVisibilityChanged,
|
||||
this,
|
||||
[this](bool expanded) {
|
||||
m_preferences.eventsPanelExpanded = expanded;
|
||||
saveUiPreferences();
|
||||
});
|
||||
}
|
||||
|
||||
void SessionWindow::updateTabTitle(SessionTab* tab, const QString& title)
|
||||
@@ -156,3 +294,35 @@ void SessionWindow::updateTabTitle(SessionTab* tab, const QString& title)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int SessionWindow::sessionTabCount() const
|
||||
{
|
||||
return m_tabs->count() - 1;
|
||||
}
|
||||
|
||||
void SessionWindow::loadUiPreferences()
|
||||
{
|
||||
QSettings settings;
|
||||
m_preferences.terminalThemeName =
|
||||
settings.value(QStringLiteral("session/defaultTerminalTheme"), QStringLiteral("Dark"))
|
||||
.toString()
|
||||
.trimmed();
|
||||
if (m_preferences.terminalThemeName.isEmpty()) {
|
||||
m_preferences.terminalThemeName = QStringLiteral("Dark");
|
||||
}
|
||||
m_preferences.eventsPanelExpanded =
|
||||
settings.value(QStringLiteral("session/eventsPanelExpanded"), false).toBool();
|
||||
m_preferences.terminalFontPointSize =
|
||||
settings.value(QStringLiteral("session/terminalFontPointSize"), 0).toInt();
|
||||
}
|
||||
|
||||
void SessionWindow::saveUiPreferences() const
|
||||
{
|
||||
QSettings settings;
|
||||
settings.setValue(QStringLiteral("session/defaultTerminalTheme"),
|
||||
m_preferences.terminalThemeName);
|
||||
settings.setValue(QStringLiteral("session/eventsPanelExpanded"),
|
||||
m_preferences.eventsPanelExpanded);
|
||||
settings.setValue(QStringLiteral("session/terminalFontPointSize"),
|
||||
m_preferences.terminalFontPointSize);
|
||||
}
|
||||
|
||||
@@ -2,25 +2,31 @@
|
||||
#define ORBITHUB_SESSION_WINDOW_H
|
||||
|
||||
#include "profile_repository.h"
|
||||
#include "session_tab.h"
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
class QTabWidget;
|
||||
class SessionTab;
|
||||
class ProfilesWindow;
|
||||
|
||||
class SessionWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SessionWindow(const Profile& profile, QWidget* parent = nullptr);
|
||||
explicit SessionWindow(QWidget* parent = nullptr);
|
||||
void openProfile(const Profile& profile);
|
||||
|
||||
private:
|
||||
QTabWidget* m_tabs;
|
||||
ProfilesWindow* m_profilesWidget;
|
||||
SessionUiPreferences m_preferences;
|
||||
|
||||
void addSessionTab(const Profile& profile);
|
||||
void updateTabTitle(SessionTab* tab, const QString& title);
|
||||
void loadUiPreferences();
|
||||
void saveUiPreferences() const;
|
||||
int sessionTabCount() const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -52,6 +52,14 @@ void TerminalView::setThemeName(const QString& themeName)
|
||||
applyThemePalette(paletteByName(themeName));
|
||||
}
|
||||
|
||||
void TerminalView::setFontPointSize(int pointSize)
|
||||
{
|
||||
QFont updatedFont = font();
|
||||
updatedFont.setPointSize(pointSize);
|
||||
setFont(updatedFont);
|
||||
emitTerminalSize();
|
||||
}
|
||||
|
||||
void TerminalView::appendTerminalData(const QString& data)
|
||||
{
|
||||
if (data.isEmpty()) {
|
||||
@@ -211,6 +219,14 @@ void TerminalView::focusInEvent(QFocusEvent* event)
|
||||
moveCursor(QTextCursor::End);
|
||||
}
|
||||
|
||||
bool TerminalView::focusNextPrevChild(bool next)
|
||||
{
|
||||
Q_UNUSED(next);
|
||||
// Tab/Shift+Tab must reach keyPressEvent() and be forwarded to the
|
||||
// remote session instead of moving focus to the next local widget.
|
||||
return false;
|
||||
}
|
||||
|
||||
void TerminalView::resizeEvent(QResizeEvent* event)
|
||||
{
|
||||
QTextEdit::resizeEvent(event);
|
||||
|
||||
@@ -19,6 +19,7 @@ public:
|
||||
static QStringList themeNames();
|
||||
void setThemeName(const QString& themeName);
|
||||
void appendTerminalData(const QString& data);
|
||||
void setFontPointSize(int pointSize);
|
||||
|
||||
signals:
|
||||
void inputGenerated(const QString& input);
|
||||
@@ -28,6 +29,7 @@ protected:
|
||||
void keyPressEvent(QKeyEvent* event) override;
|
||||
void focusInEvent(QFocusEvent* event) override;
|
||||
void resizeEvent(QResizeEvent* event) override;
|
||||
bool focusNextPrevChild(bool next) override;
|
||||
|
||||
private:
|
||||
struct ThemePalette {
|
||||
|
||||
@@ -0,0 +1,149 @@
|
||||
#include "user_guide_dialog.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDesktopServices>
|
||||
#include <QDialogButtonBox>
|
||||
#include <QFile>
|
||||
#include <QListWidget>
|
||||
#include <QSplitter>
|
||||
#include <QTextBrowser>
|
||||
#include <QTextStream>
|
||||
#include <QUrl>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
namespace {
|
||||
|
||||
QString slugify(const QString& title)
|
||||
{
|
||||
QString slug;
|
||||
slug.reserve(title.size());
|
||||
bool lastWasHyphen = false;
|
||||
for (const QChar& ch : title) {
|
||||
if (ch.isLetterOrNumber()) {
|
||||
slug += ch.toLower();
|
||||
lastWasHyphen = false;
|
||||
} else if (!lastWasHyphen && !slug.isEmpty()) {
|
||||
slug += QLatin1Char('-');
|
||||
lastWasHyphen = true;
|
||||
}
|
||||
}
|
||||
while (slug.endsWith(QLatin1Char('-'))) {
|
||||
slug.chop(1);
|
||||
}
|
||||
return slug;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
UserGuideDialog::UserGuideDialog(QWidget* parent)
|
||||
: QDialog(parent), m_sectionList(nullptr), m_browser(nullptr)
|
||||
{
|
||||
setWindowTitle(QStringLiteral("OrbitHub User Guide"));
|
||||
setWindowIcon(QApplication::windowIcon());
|
||||
resize(900, 640);
|
||||
|
||||
auto* layout = new QVBoxLayout(this);
|
||||
layout->setContentsMargins(16, 16, 16, 16);
|
||||
layout->setSpacing(12);
|
||||
|
||||
auto* splitter = new QSplitter(Qt::Horizontal, this);
|
||||
|
||||
m_sectionList = new QListWidget(splitter);
|
||||
m_sectionList->setMaximumWidth(220);
|
||||
|
||||
m_browser = new QTextBrowser(splitter);
|
||||
m_browser->setOpenExternalLinks(false);
|
||||
m_browser->setOpenLinks(false);
|
||||
|
||||
splitter->addWidget(m_sectionList);
|
||||
splitter->addWidget(m_browser);
|
||||
splitter->setStretchFactor(0, 0);
|
||||
splitter->setStretchFactor(1, 1);
|
||||
|
||||
auto* buttons = new QDialogButtonBox(QDialogButtonBox::Close, this);
|
||||
connect(buttons, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
||||
connect(buttons, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
||||
|
||||
layout->addWidget(splitter, 1);
|
||||
layout->addWidget(buttons);
|
||||
|
||||
loadSections();
|
||||
|
||||
connect(m_sectionList,
|
||||
&QListWidget::currentRowChanged,
|
||||
this,
|
||||
[this](int row) { showSection(row); });
|
||||
connect(m_browser, &QTextBrowser::anchorClicked, this, &UserGuideDialog::onAnchorClicked);
|
||||
|
||||
if (!m_sections.isEmpty()) {
|
||||
m_sectionList->setCurrentRow(0);
|
||||
}
|
||||
}
|
||||
|
||||
void UserGuideDialog::loadSections()
|
||||
{
|
||||
QFile file(QStringLiteral(":/docs/USER_GUIDE.md"));
|
||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
return;
|
||||
}
|
||||
|
||||
QTextStream stream(&file);
|
||||
const QString content = stream.readAll();
|
||||
const QStringList lines = content.split(QLatin1Char('\n'));
|
||||
|
||||
QString currentTitle;
|
||||
QStringList currentLines;
|
||||
|
||||
auto flushSection = [this, ¤tTitle, ¤tLines]() {
|
||||
if (currentTitle.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
Section section;
|
||||
section.title = currentTitle;
|
||||
section.anchor = slugify(currentTitle);
|
||||
section.markdown = currentLines.join(QLatin1Char('\n'));
|
||||
m_sections.append(section);
|
||||
};
|
||||
|
||||
for (const QString& line : lines) {
|
||||
if (line.startsWith(QStringLiteral("## "))) {
|
||||
flushSection();
|
||||
currentTitle = line.mid(3).trimmed();
|
||||
currentLines.clear();
|
||||
}
|
||||
currentLines.append(line);
|
||||
}
|
||||
flushSection();
|
||||
|
||||
for (const Section& section : m_sections) {
|
||||
m_sectionList->addItem(section.title);
|
||||
}
|
||||
}
|
||||
|
||||
void UserGuideDialog::showSection(int index)
|
||||
{
|
||||
if (index < 0 || index >= m_sections.size()) {
|
||||
return;
|
||||
}
|
||||
m_browser->setMarkdown(m_sections[index].markdown);
|
||||
}
|
||||
|
||||
void UserGuideDialog::onAnchorClicked(const QUrl& url)
|
||||
{
|
||||
if (!url.scheme().isEmpty()) {
|
||||
QDesktopServices::openUrl(url);
|
||||
return;
|
||||
}
|
||||
|
||||
const QString fragment = url.fragment();
|
||||
if (fragment.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < m_sections.size(); ++i) {
|
||||
if (m_sections[i].anchor == fragment) {
|
||||
m_sectionList->setCurrentRow(i);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
#ifndef ORBITHUB_USER_GUIDE_DIALOG_H
|
||||
#define ORBITHUB_USER_GUIDE_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
|
||||
class QListWidget;
|
||||
class QTextBrowser;
|
||||
class QUrl;
|
||||
|
||||
class UserGuideDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit UserGuideDialog(QWidget* parent = nullptr);
|
||||
|
||||
private:
|
||||
struct Section {
|
||||
QString title;
|
||||
QString anchor;
|
||||
QString markdown;
|
||||
};
|
||||
|
||||
void loadSections();
|
||||
void showSection(int index);
|
||||
void onAnchorClicked(const QUrl& url);
|
||||
|
||||
QListWidget* m_sectionList;
|
||||
QTextBrowser* m_browser;
|
||||
QVector<Section> m_sections;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1 @@
|
||||
3.23.1-dev0
|
||||
@@ -0,0 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.21)
|
||||
|
||||
project(OrbitHubUserGuidePdf LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
find_package(Qt6 6.2 REQUIRED COMPONENTS Widgets PrintSupport)
|
||||
|
||||
add_executable(user-guide-pdf main.cpp)
|
||||
target_link_libraries(user-guide-pdf PRIVATE Qt6::Widgets Qt6::PrintSupport)
|
||||
@@ -0,0 +1,44 @@
|
||||
#include <QApplication>
|
||||
#include <QFile>
|
||||
#include <QPageSize>
|
||||
#include <QPrinter>
|
||||
#include <QTextDocument>
|
||||
#include <QTextStream>
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
if (argc != 3) {
|
||||
std::fprintf(stderr, "Usage: %s <input.md> <output.pdf>\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
const QString inputPath = QString::fromLocal8Bit(argv[1]);
|
||||
const QString outputPath = QString::fromLocal8Bit(argv[2]);
|
||||
|
||||
QFile input(inputPath);
|
||||
if (!input.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
std::fprintf(stderr, "Could not open %s\n", qPrintable(inputPath));
|
||||
return 1;
|
||||
}
|
||||
|
||||
QTextStream stream(&input);
|
||||
const QString markdown = stream.readAll();
|
||||
|
||||
QTextDocument document;
|
||||
document.setMarkdown(markdown);
|
||||
|
||||
QPrinter printer(QPrinter::HighResolution);
|
||||
printer.setOutputFormat(QPrinter::PdfFormat);
|
||||
printer.setPageSize(QPageSize(QPageSize::Letter));
|
||||
printer.setPageMargins(QMarginsF(50, 50, 50, 50), QPageLayout::Point);
|
||||
printer.setOutputFileName(outputPath);
|
||||
|
||||
document.print(&printer);
|
||||
|
||||
std::printf("Wrote %s\n", qPrintable(outputPath));
|
||||
return 0;
|
||||
}
|
||||