1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
|
/*
* ========================================================================== *
* *
* This file is part of the Openterface Mini KVM App QT version *
* *
* Copyright (C) 2024 <info@openterface.com> *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation version 3. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
* ========================================================================== *
*/
#include "mainwindow.h"
#include "global.h"
#include "settingdialog.h"
#include "ui_mainwindow.h"
#include "globalsetting.h"
#include "statusbarmanager.h"
#include "host/HostManager.h"
#include "host/cameramanager.h"
#include "serial/SerialPortManager.h"
#include "loghandler.h"
#include "ui/settingdialog.h"
#include "ui/helppane.h"
#include "ui/serialportdebugdialog.h"
#include "ui/videopane.h"
#include "video/videohid.h"
#include "ui/versioninfomanager.h"
#include "ui/cameraajust.h"
#include "ui/TaskManager.h"
#include <QCameraDevice>
#include <QMediaDevices>
#include <QMediaFormat>
#include <QMediaMetaData>
#include <QMediaRecorder>
#include <QVideoWidget>
#include <QStackedLayout>
#include <QMessageBox>
#include <QImageCapture>
#include <QToolBar>
#include <QClipboard>
#include <QInputMethod>
#include <QAction>
#include <QActionGroup>
#include <QImage>
#include <QKeyEvent>
#include <QPalette>
#include <QSystemTrayIcon>
#include <QDir>
#include <QTimer>
#include <QLabel>
#include <QPixmap>
#include <QSvgRenderer>
#include <QPainter>
#include <QMessageBox>
#include <QDesktopServices>
#include <QSysInfo>
#include <QMenuBar>
#include <QPushButton>
#include <QComboBox>
#include <QScrollBar>
#include <QGuiApplication>
#include <QToolTip>
#include <QScreen>
Q_LOGGING_CATEGORY(log_ui_mainwindow, "opf.ui.mainwindow")
/*
* QT Permissions API is not compatible with Qt < 6.5 and will cause compilation failure on
* expanding the QT_CONFIG macro if it isn't set as a feature in qtcore-config.h. QT < 6.5
* is still true for a large number of linux distros in 2024. This ifdef or another
* workaround needs to be used anywhere the QPermissions class is called, for distros to
* be able to use their package manager's native Qt libs, if they are < 6.5.
*
* See qtconfigmacros.h, qtcore-config.h, etc. in the relevant Qt includes directory, and:
* https://doc-snapshots.qt.io/qt6-6.5/whatsnew65.html
* https://doc-snapshots.qt.io/qt6-6.5/permissions.html
*/
#ifdef QT_FEATURE_permissions
#if QT_CONFIG(permissions)
#include <QPermission>
#endif
#endif
QPixmap recolorSvg(const QString &svgPath, const QColor &color, const QSize &size) {
QSvgRenderer svgRenderer(svgPath);
QPixmap pixmap(size);
pixmap.fill(Qt::transparent);
QPainter painter(&pixmap);
svgRenderer.render(&painter);
// Create a color overlay
QPixmap colorOverlay(size);
colorOverlay.fill(color);
// Set the composition mode to SourceIn to apply the color overlay
painter.setCompositionMode(QPainter::CompositionMode_SourceIn);
painter.drawPixmap(0, 0, colorOverlay);
return pixmap;
}
MainWindow::MainWindow() : ui(new Ui::MainWindow),
m_audioManager(new AudioManager(this)),
videoPane(new VideoPane(this)),
scrollArea(new QScrollArea(this)),
stackedLayout(new QStackedLayout(this)),
toolbarManager(new ToolbarManager(this)),
toggleSwitch(new ToggleSwitch(this)),
m_cameraManager(new CameraManager(this)),
m_versionInfoManager(new VersionInfoManager(this))
// cameraAdjust(new CameraAdjust(this))
{
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
qCDebug(log_ui_mainwindow) << "Init camera...";
ui->setupUi(this);
initializeKeyboardLayouts();
m_statusBarManager = new StatusBarManager(ui->statusbar, this);
taskmanager = TaskManager::instance();
QWidget *centralWidget = new QWidget(this);
centralWidget->setLayout(stackedLayout);
centralWidget->setMouseTracking(true);
HelpPane *helpPane = new HelpPane;
stackedLayout->addWidget(helpPane);
// Set size policy and minimum size for videoPane
// videoPane->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
videoPane->setMinimumSize(this->width(),
this->height() - ui->statusbar->height() - ui->menubar->height()); // must minus the statusbar and menubar height
scrollArea->setWidget(videoPane);
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
scrollArea->setBackgroundRole(QPalette::Dark);
stackedLayout->addWidget(scrollArea);
stackedLayout->setCurrentIndex(0);
ui->menubar->setCornerWidget(ui->cornerWidget, Qt::TopRightCorner);
setCentralWidget(centralWidget);
qCDebug(log_ui_mainwindow) << "Set host manager event callback...";
HostManager::getInstance().setEventCallback(this);
qCDebug(log_ui_mainwindow) << "Observe Video HID connected...";
VideoHid::getInstance().setEventCallback(this);
qCDebug(log_ui_mainwindow) << "Observe video input changed...";
connect(&m_source, &QMediaDevices::videoInputsChanged, this, &MainWindow::updateCameras);
qCDebug(log_ui_mainwindow) << "Observe Relative/Absolute toggle...";
connect(ui->actionRelative, &QAction::triggered, this, &MainWindow::onActionRelativeTriggered);
connect(ui->actionAbsolute, &QAction::triggered, this, &MainWindow::onActionAbsoluteTriggered);
qCDebug(log_ui_mainwindow) << "Observe reset HID triggerd...";
connect(ui->actionResetHID, &QAction::triggered, this, &MainWindow::onActionResetHIDTriggered);
qCDebug(log_ui_mainwindow) << "Observe factory reset HID triggerd...";
connect(ui->actionFactory_reset_HID, &QAction::triggered, this, &MainWindow::onActionFactoryResetHIDTriggered);
qCDebug(log_ui_mainwindow) << "Observe reset Serial Port triggerd...";
connect(ui->actionResetSerialPort, &QAction::triggered, this, &MainWindow::onActionResetSerialPortTriggered);
qDebug() << "Observe Hardware change MainWindow triggerd...";
qCDebug(log_ui_mainwindow) << "Creating and setting up ToggleSwitch...";
toggleSwitch->setFixedSize(78, 28); // Adjust size as needed
connect(toggleSwitch, &ToggleSwitch::stateChanged, this, &MainWindow::onToggleSwitchStateChanged);
// Add the ToggleSwitch as the last button in the cornerWidget's layout
QHBoxLayout *cornerLayout = qobject_cast<QHBoxLayout*>(ui->cornerWidget->layout());
if (cornerLayout) {
cornerLayout->addWidget(toggleSwitch);
} else {
qCWarning(log_ui_mainwindow) << "Corner widget layout is not a QHBoxLayout. Unable to add ToggleSwitch.";
}
qCDebug(log_ui_mainwindow) << "Observe switch usb connection trigger...";
connect(ui->actionTo_Host, &QAction::triggered, this, &MainWindow::onActionSwitchToHostTriggered);
connect(ui->actionTo_Target, &QAction::triggered, this, &MainWindow::onActionSwitchToTargetTriggered);
qCDebug(log_ui_mainwindow) << "Observe action paste from host...";
connect(ui->actionPaste, &QAction::triggered, this, &MainWindow::onActionPasteToTarget);
connect(ui->pasteButton, &QPushButton::released, this, &MainWindow::onActionPasteToTarget);
connect(ui->screensaverButton, &QPushButton::released, this, &MainWindow::onActionScreensaver);
connect(ui->virtualKeyboardButton, &QPushButton::released, this, &MainWindow::onToggleVirtualKeyboard);
addToolBar(Qt::TopToolBarArea, toolbarManager->getToolbar());
toolbarManager->getToolbar()->setVisible(false);
connect(m_cameraManager, &CameraManager::cameraActiveChanged, this, &MainWindow::updateCameraActive);
connect(m_cameraManager, &CameraManager::cameraError, this, &MainWindow::displayCameraError);
connect(m_cameraManager, &CameraManager::imageCaptured, this, &MainWindow::processCapturedImage);
connect(m_cameraManager, &CameraManager::resolutionsUpdated, this, &MainWindow::onResolutionsUpdated);
qDebug() << "Init camera...";
checkInitSize();
initCamera();
// Connect palette change signal to the slot
onLastKeyPressed("");
onLastMouseLocation(QPoint(0, 0), "");
// Connect zoom buttons
connect(ui->ZoomInButton, &QPushButton::clicked, this, &MainWindow::onZoomIn);
connect(ui->ZoomOutButton, &QPushButton::clicked, this, &MainWindow::onZoomOut);
connect(ui->ZoomReductionButton, &QPushButton::clicked, this, &MainWindow::onZoomReduction);
connect(ui->captureButton, &QPushButton::clicked, this, &MainWindow::takeImageDefault);
scrollArea->ensureWidgetVisible(videoPane);
// Set the window title with the version number
qDebug() << "Set window title" << APP_VERSION;
QString windowTitle = QString("Openterface Mini-KVM - %1").arg(APP_VERSION);
setWindowTitle(windowTitle);
mouseEdgeTimer = new QTimer(this);
connect(mouseEdgeTimer, &QTimer::timeout, this, &MainWindow::checkMousePosition);
// mouseEdgeTimer->start(edgeDuration); // Start the timer with the new duration
// Initialize the virtual keyboard button icon
QIcon icon(":/images/keyboard-down.svg");
ui->virtualKeyboardButton->setIcon(icon);
// Add this after other menu connections
connect(ui->menuBaudrate, &QMenu::triggered, this, &MainWindow::onBaudrateMenuTriggered);
connect(&SerialPortManager::getInstance(), &SerialPortManager::connectedPortChanged, this, &MainWindow::onPortConnected);
qApp->installEventFilter(this);
// usbControl = new USBControl(this);
// connect(ui->contrastButton, &QPushButton::clicked, cameraAdjust, &CameraAdjust::toggleVisibility);
// connect(ui->contrastButton, &QPushButton::toggled, cameraAdjust, &CameraAdjust::setVisible);
// Initial position setup
// QPoint buttonPos = ui->contrastButton->mapToGlobal(QPoint(0, 0));
// int menuBarHeight = buttonPos.y() - this->mapToGlobal(QPoint(0, 0)).y();
// cameraAdjust->updatePosition(menuBarHeight, width());
// Add this line after ui->setupUi(this)
connect(ui->actionScriptTool, &QAction::triggered, this, &MainWindow::showScriptTool);
mouseManager = std::make_unique<MouseManager>();
keyboardMouse = std::make_unique<KeyboardMouse>();
semanticAnalyzer = std::make_unique<SemanticAnalyzer>(mouseManager.get(), keyboardMouse.get());
connect(semanticAnalyzer.get(), &SemanticAnalyzer::captureImg, this, &MainWindow::takeImage);
connect(semanticAnalyzer.get(), &SemanticAnalyzer::captureAreaImg, this, &MainWindow::takeAreaImage);
ScriptTool *scriptTool = new ScriptTool(this);
connect(scriptTool, &ScriptTool::syntaxTreeReady, this, &MainWindow::handleSyntaxTree);
setTooltip();
// Add this connection after toolbarManager is created
connect(toolbarManager, &ToolbarManager::toolbarVisibilityChanged,
this, &MainWindow::onToolbarVisibilityChanged);
connect(ui->actionTCPServer, &QAction::triggered, this, &MainWindow::startServer);
}
void MainWindow::startServer(){
tcpServer = new TcpServer(this);
tcpServer->startServer(12345);
qCDebug(log_ui_mainwindow) << "TCP Server init...";
}
void MainWindow::setTooltip(){
ui->ZoomInButton->setToolTip("Zoom in");
ui->ZoomOutButton->setToolTip("Zoom out");
ui->ZoomReductionButton->setToolTip("Restore original size");
ui->virtualKeyboardButton->setToolTip("Function key and composite key");
ui->pasteButton->setToolTip("Paste text to target");
ui->screensaverButton->setToolTip("Mouse dance");
ui->captureButton->setToolTip("Full screen capture");
}
void MainWindow::onZoomIn()
{
factorScale = 1.1 * factorScale;
QSize currentSize = videoPane->size() * 1.1;
videoPane->resize(currentSize.width(), currentSize.height());
qDebug() << "video pane size:" << videoPane->geometry();
if (videoPane->width() > scrollArea->width() || videoPane->height() > scrollArea->height()) {
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
}
mouseEdgeTimer->start(edgeDuration); // Check every edge Duration
}
void MainWindow::onZoomOut()
{
if (videoPane->width() != this->width()){
factorScale = 0.9 * factorScale;
QSize currentSize = videoPane->size() * 0.9;
videoPane->resize(currentSize.width(), currentSize.height());
if (videoPane->width() <= scrollArea->width() && videoPane->height() <= scrollArea->height()) {
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
}
}
}
void MainWindow::onZoomReduction()
{
videoPane->resize(this->width() * 0.9, (this->height() - ui->statusbar->height() - ui->menubar->height()) * 0.9);
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
if (mouseEdgeTimer->isActive()) {
mouseEdgeTimer->stop();
}
}
void MainWindow::initCamera()
{
qCDebug(log_ui_mainwindow) << "Camera init...";
#ifdef QT_FEATURE_permissions //Permissions API not compatible with Qt < 6.5 and will cause compilation failure on expanding macro in qtconfigmacros.h
#if QT_CONFIG(permissions)
// camera
QCameraPermission cameraPermission;
switch (qApp->checkPermission(cameraPermission)) {
case Qt::PermissionStatus::Undetermined:
qApp->requestPermission(cameraPermission, this, &MainWindow::initCamera);
return;
case Qt::PermissionStatus::Denied:
qWarning("MainWindow permission is not granted!");
return;
case Qt::PermissionStatus::Granted:
break;
}
// microphone
QMicrophonePermission microphonePermission;
switch (qApp->checkPermission(microphonePermission)) {
case Qt::PermissionStatus::Undetermined:
qApp->requestPermission(microphonePermission, this, &MainWindow::initCamera);
return;
case Qt::PermissionStatus::Denied:
qWarning("Microphone permission is not granted!");
return;
case Qt::PermissionStatus::Granted:
break;
}
#endif
#endif
// Camera devices:
updateCameras();
m_cameraManager->loadCameraSettingAndSetCamera();
GlobalVar::instance().setWinWidth(this->width());
GlobalVar::instance().setWinHeight(this->height());
}
void MainWindow::checkInitSize(){
QScreen *currentScreen = this->screen();
systemScaleFactor = currentScreen->devicePixelRatio();
if(systemScaleFactor != 1.0){
resize(int(this->width() / systemScaleFactor), int(this->height() / systemScaleFactor));
qCDebug(log_ui_mainwindow) << "Resize now: " << this->width() << this->height();
qCDebug(log_ui_mainwindow) << "Resize now: " << this->width() / systemScaleFactor
<< this->height() / systemScaleFactor;
}
qCDebug(log_ui_mainwindow) << "System scale factor: " << systemScaleFactor;
}
void MainWindow::resizeEvent(QResizeEvent *event) {
static bool isResizing = false;
if (isResizing) {
return;
}
isResizing = true;
qCDebug(log_ui_mainwindow) << "Handle window resize event.";
QMainWindow::resizeEvent(event); // Call base class implementation
// Check if the window is maximized
if (this->windowState() & Qt::WindowMaximized) {
// Handle maximized state
qCDebug(log_ui_mainwindow) << "Window is maximized.";
// You can update the window icon here if needed
} else {
// Handle normal state
qCDebug(log_ui_mainwindow) << "Window is normal.";
// You can update the window icon here if needed
}
// Define the desired aspect ratio
qreal aspect_ratio = static_cast<qreal>(video_width) / video_height;
QScreen *currentScreen = this->screen();
QRect availableGeometry = currentScreen->availableGeometry();
// Get the available screen width and height
int availableWidth = availableGeometry.width();
int availableHeight = availableGeometry.height();
// Get the current window size
int currentWidth = this->width();
int currentHeight = this->height();
// Calculate the height of the title bar, menu bar, and status bar
int titleBarHeight = this->frameGeometry().height() - this->geometry().height();
int menuBarHeight = this->menuBar()->height();
int statusBarHeight = ui->statusbar->height();
// Calculate the maximum content height (excluding title bar, menu bar, and status bar)
int maxContentHeight = availableHeight - titleBarHeight - menuBarHeight - statusBarHeight;
// Check if the current width or height exceeds the available screen size
qCDebug(log_ui_mainwindow) << "current height: " << currentHeight << "available height: " << availableHeight;
qCDebug(log_ui_mainwindow) << "current width: " << currentWidth << "available width: " << currentWidth;
if (currentWidth >= availableWidth || currentHeight >= availableHeight) {
// Calculate the new size while maintaining the aspect ratio
int videoHeight = maxContentHeight;
int videoWidth = static_cast<int>(videoHeight * aspect_ratio);
if (currentWidth >= availableWidth) {
currentWidth = availableWidth;
videoWidth = currentWidth;
videoHeight = static_cast<int>(currentWidth / aspect_ratio);
}
if (currentHeight >= availableHeight || videoHeight >= maxContentHeight) {
// Use the maximum content height and adjust the window height accordingly
videoHeight = maxContentHeight;
// currentHeight = maxContentHeight + menuBarHeight + statusBarHeight + 6;
currentHeight = static_cast<int>(availableWidth / aspect_ratio) - menuBarHeight - statusBarHeight;
qCDebug(log_ui_mainwindow) << "video height: " << videoHeight << "mainwindow height: " << currentHeight;
videoWidth = static_cast<int>(videoHeight * aspect_ratio);
}
// Set the new size of the window
qCDebug(log_ui_mainwindow) << "Resize to " << currentWidth << "x" << currentHeight;
qCDebug(log_ui_mainwindow) << "available height: " << availableHeight << "video height: " << videoHeight;
qCDebug(log_ui_mainwindow) << "video height: "<< videoHeight <<"video width: " << videoWidth;
if (currentWidth != availableWidth && currentHeight != availableHeight){
// Resize the window only when it's not maximized
resize(currentWidth, currentHeight);
}
// Calculate the horizontal offset to center the videoPane
int horizontalOffset = (currentWidth - videoWidth) / 2;
// Set the minimum size and resize the videoPane
videoPane->setMinimumSize(videoWidth, videoHeight);
videoPane->resize(videoWidth, videoHeight);
// Move the videoPane to the center horizontally
// Resize the scrollArea to match the videoPane size
scrollArea->resize(videoWidth, videoHeight);
videoPane->move(horizontalOffset, videoPane->y());
scrollArea->move(horizontalOffset, videoPane->y());
GlobalVar::instance().setWinWidth(currentWidth);
GlobalVar::instance().setWinHeight(currentHeight);
} else {
// If the window size is within the available screen size, use the original logic
qCDebug(log_ui_mainwindow) << "Aspect ratio:" << aspect_ratio << ", Width:" << video_width << "Height:" << video_height;
qCDebug(log_ui_mainwindow) << "menuBar height:" << menuBarHeight << ", statusbar height:" << statusBarHeight << ", titleBarHeight" << titleBarHeight;
// Calculate the new height based on the width and the aspect ratio
int new_height = static_cast<int>(currentWidth / aspect_ratio) + menuBarHeight + statusBarHeight;
// Set the new size of the window
qCDebug(log_ui_mainwindow) << "Resize to " << currentWidth << "x" << new_height;
resize(currentWidth, new_height);
int contentHeight = this->height() - statusBarHeight - menuBarHeight;
videoPane->setMinimumSize(this->width(), contentHeight);
videoPane->resize(this->width(), contentHeight);
scrollArea->resize(this->width(), contentHeight);
GlobalVar::instance().setWinWidth(this->width());
GlobalVar::instance().setWinHeight(this->height());
}
// Update global variables with the new window size
isResizing = false;
} // end resize event function
void MainWindow::moveEvent(QMoveEvent *event) {
// Get the old and new positions
QPoint oldPos = event->oldPos();
QPoint newPos = event->pos();
// scrollTimer->start(100); // problem here
// Calculate the position delta
QPoint delta = newPos - oldPos;
qCDebug(log_ui_mainwindow) << "Window move delta: " << delta;
// Call the base class implementation
QWidget::moveEvent(event);
//calculate_video_position();
}
void MainWindow::calculate_video_position(){
double aspect_ratio = static_cast<double>(video_width) / video_height;
int scaled_window_width, scaled_window_height;
int titleBarHeight = this->frameGeometry().height() - this->geometry().height();
int statusBarHeight = ui->statusbar->height();
QMenuBar *menuBar = this->menuBar();
int menuBarHeight = menuBar->height();
double widget_ratio = static_cast<double>(width()) / (height()-titleBarHeight-statusBarHeight-menuBarHeight);
qCDebug(log_ui_mainwindow) << "titleBarHeight: " << titleBarHeight;
qCDebug(log_ui_mainwindow) << "statusBarHeight: " << statusBarHeight;
qCDebug(log_ui_mainwindow) << "menuBarHeight: " << menuBarHeight;
if (widget_ratio < aspect_ratio) {
// Window is relatively shorter, scale the window by video width
scaled_window_width = static_cast<int>(ui->centralwidget->height() * aspect_ratio);
scaled_window_height = ui->centralwidget->height() + titleBarHeight + statusBarHeight+menuBarHeight;
} else {
// Window is relatively taller, scale the window by video height
scaled_window_width = ui->centralwidget->width();
scaled_window_height =static_cast<int>(ui->centralwidget->width()) / aspect_ratio + titleBarHeight + statusBarHeight+menuBarHeight;
}
resize(scaled_window_width, scaled_window_height);
GlobalVar::instance().setMenuHeight(menuBarHeight);
GlobalVar::instance().setTitleHeight(titleBarHeight);
GlobalVar::instance().setStatusbarHeight(statusBarHeight);
QSize windowSize = this->size();
GlobalVar::instance().setWinWidth(windowSize.width());
GlobalVar::instance().setWinHeight(windowSize.height());
}
void MainWindow::updateScrollbars() {
// Get the screen geometry using QScreen
// Check if the mouse is near the edges of the screen
const int edgeThreshold = 300; // Adjust this value as needed
int deltaX = 0;
int deltaY = 0;
if (lastMousePos.x() < edgeThreshold) {
// Move scrollbar to the left
deltaX = -10; // Adjust step size as needed
} else if (lastMousePos.x() > 4096*factorScale - edgeThreshold) {
// Move scrollbar to the right
deltaX = 10; // Adjust step size as needed
}
if (lastMousePos.y() < edgeThreshold) {
// Move scrollbar up
deltaY = -10; // Adjust step size as needed
} else if (lastMousePos.y() > 4096*factorScale - edgeThreshold) {
// Move scrollbar down
deltaY = 10; // Adjust step size as needed
}
// Update scrollbars
scrollArea->horizontalScrollBar()->setValue(scrollArea->horizontalScrollBar()->value() + deltaX);
scrollArea->verticalScrollBar()->setValue(scrollArea->verticalScrollBar()->value() + deltaY);
}
void MainWindow::onActionRelativeTriggered()
{
QPoint globalPosition = videoPane->mapToGlobal(QPoint(0, 0));
QRect globalGeometry = QRect(globalPosition, videoPane->geometry().size());
// move the mouse to window center
QPoint center = globalGeometry.center();
QCursor::setPos(center);
GlobalVar::instance().setAbsoluteMouseMode(false);
videoPane->hideHostMouse();
this->popupMessage("Long press ESC to exit.");
}
void MainWindow::onActionAbsoluteTriggered()
{
GlobalVar::instance().setAbsoluteMouseMode(true);
}
void MainWindow::onActionResetHIDTriggered()
{
QMessageBox::StandardButton reply;
reply = QMessageBox::warning(this, "Confirm Reset Keyboard and Mouse?",
"Resetting the Keyboard & Mouse chip will apply new settings. Do you want to proceed?",
QMessageBox::Yes | QMessageBox::No);
if (reply == QMessageBox::Yes) {
qCDebug(log_ui_mainwindow) << "onActionResetHIDTriggered";
HostManager::getInstance().resetHid();
} else {
qCDebug(log_ui_mainwindow) << "Reset HID canceled by user.";
}
}
void MainWindow::onActionFactoryResetHIDTriggered()
{
QMessageBox::StandardButton reply;
reply = QMessageBox::warning(this, "Confirm Factory Reset HID Chip?",
"Factory reset the HID chip. Proceed?",
QMessageBox::Yes | QMessageBox::No);
if (reply == QMessageBox::Yes) {
qCDebug(log_ui_mainwindow) << "onActionFactoryResetHIDTriggered";
SerialPortManager::getInstance().factoryResetHipChip();
// HostManager::getInstance().resetHid();
} else {
qCDebug(log_ui_mainwindow) << "Factory reset HID chip canceled by user.";
}
}
void MainWindow::onActionResetSerialPortTriggered()
{
QMessageBox::StandardButton reply;
reply = QMessageBox::question(this, "Confirm Reset Serial Port?",
"Resetting the serial port will close and re-open it without changing settings. Proceed?",
QMessageBox::Yes | QMessageBox::No);
if (reply == QMessageBox::Yes) {
qCDebug(log_ui_mainwindow) << "onActionResetSerialPortTriggered";
HostManager::getInstance().resetSerialPort();
} else {
qCDebug(log_ui_mainwindow) << "Serial port reset canceled by user.";
}
}
void MainWindow::onActionSwitchToHostTriggered()
{
qCDebug(log_ui_mainwindow) << "Switchable USB to host...";
VideoHid::getInstance().switchToHost();
ui->actionTo_Host->setChecked(true);
ui->actionTo_Target->setChecked(false);
}
void MainWindow::onActionSwitchToTargetTriggered()
{
qCDebug(log_ui_mainwindow) << "Switchable USB to target...";
VideoHid::getInstance().switchToTarget();
ui->actionTo_Host->setChecked(false);
ui->actionTo_Target->setChecked(true);
}
void MainWindow::onToggleSwitchStateChanged(int state)
{
qCDebug(log_ui_mainwindow) << "Toggle switch state changed to:" << state;
if (state == Qt::Checked) {
onActionSwitchToTargetTriggered();
} else {
onActionSwitchToHostTriggered();
}
}
void MainWindow::onResolutionChange(const int& width, const int& height, const float& fps)
{
GlobalVar::instance().setInputWidth(width);
GlobalVar::instance().setInputHeight(height);
m_statusBarManager->setInputResolution(width, height, fps);
}
void MainWindow::onTargetUsbConnected(const bool isConnected)
{
m_statusBarManager->setTargetUsbConnected(isConnected);
}
void MainWindow::onActionPasteToTarget()
{
HostManager::getInstance().pasteTextToTarget(QGuiApplication::clipboard()->text());
}
void MainWindow::onActionScreensaver()
{
static bool isScreensaverActive = false;
isScreensaverActive = !isScreensaverActive;
if (isScreensaverActive) {
HostManager::getInstance().startAutoMoveMouse();
ui->screensaverButton->setChecked(true);
this->popupMessage("Screensaver activated");
} else {
HostManager::getInstance().stopAutoMoveMouse();
ui->screensaverButton->setChecked(false);
this->popupMessage("Screensaver deactivated");
}
}
void MainWindow::onToggleVirtualKeyboard()
{
toolbarManager->toggleToolbar();
}
void MainWindow::popupMessage(QString message)
{
QDialog dialog;
dialog.setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
QVBoxLayout layout;
dialog.setLayout(&layout);
// Set the font of the message box
QFont font;
font.setPointSize(18); // Set the size of the font
font.setBold(true); // Make the font bold
QLabel label(message);
label.setFont(font); // Use the same font as before
layout.addWidget(&label);
dialog.adjustSize(); // Resize the dialog to fit its content
// Show the dialog off-screen
dialog.move(-1000, -1000);
dialog.show();
// Now that the dialog is shown, we can get its correct dimensions
QRect screenGeometry = QGuiApplication::primaryScreen()->geometry();
int x = screenGeometry.width() - dialog.frameGeometry().width();
int y = 0;
qCDebug(log_ui_mainwindow) << "x: " << x << "y:" << y;
// Move the dialog to the desired position
dialog.move(x, y);
// Auto hide in 3 seconds
QTimer::singleShot(3000, &dialog, &QDialog::accept);
dialog.exec();
}
void MainWindow::updateCameraActive(bool active) {
qCDebug(log_ui_mainwindow) << "Camera active: " << active;
if(active){
qCDebug(log_ui_mainwindow) << "Set index to : " << 1;
stackedLayout->setCurrentIndex(1);
} else {
qCDebug(log_ui_mainwindow) << "Set index to : " << 0;
stackedLayout->setCurrentIndex(0);
}
m_cameraManager->queryResolutions();
}
void MainWindow::updateRecordTime()
{
QString str = tr("Recorded %1 sec").arg(m_mediaRecorder->duration() / 1000);
ui->statusbar->showMessage(str);
}
void MainWindow::processCapturedImage(int requestId, const QImage &img)
{
Q_UNUSED(requestId);
QImage scaledImage =
img.scaled(ui->centralwidget->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
// ui->lastImagePreviewLabel->setPixmap(QPixmap::fromImage(scaledImage));
// Display captured image for 4 seconds.
displayCapturedImage();
QTimer::singleShot(4000, this, &MainWindow::displayViewfinder);
}
void MainWindow::configureSettings() {
qDebug() << "configureSettings";
if (!settingDialog){
qDebug() << "Creating settings dialog";
settingDialog = new SettingDialog(m_cameraManager, this);
HardwarePage* hardwarePage = settingDialog->getHardwarePage();
VideoPage* videoPage = settingDialog->getVideoPage();
connect(hardwarePage, &HardwarePage::cameraSettingsApplied, m_cameraManager, &CameraManager::loadCameraSettingAndSetCamera);
// connect(settingDialog, &SettingDialog::cameraSettingsApplied, m_cameraManager, &CameraManager::loadCameraSettingAndSetCamera);
connect(videoPage, &VideoPage::videoSettingsChanged, this, &MainWindow::onVideoSettingsChanged);
// connect the finished signal to the set the dialog pointer to nullptr
connect(settingDialog, &QDialog::finished, this, [this](){
settingDialog = nullptr;
});
settingDialog->show();
}else{
settingDialog->raise();
settingDialog->activateWindow();
}
}
void MainWindow::debugSerialPort() {
qDebug() << "debug dialog" ;
qDebug() << "serialPortDebugDialog: " << serialPortDebugDialog;
if (!serialPortDebugDialog){
qDebug() << "Creating serial port debug dialog";
serialPortDebugDialog = new SerialPortDebugDialog();
// connect the finished signal to the set the dialog pointer to nullptr
connect(serialPortDebugDialog, &QDialog::finished, this, [this]() {
serialPortDebugDialog = nullptr;
});
serialPortDebugDialog->show();
}else{
serialPortDebugDialog->raise();
serialPortDebugDialog->activateWindow();
}
}
void MainWindow::purchaseLink(){
QDesktopServices::openUrl(QUrl("https://www.crowdsupply.com/techxartisan/openterface-mini-kvm"));
}
void MainWindow::feedbackLink(){
QDesktopServices::openUrl(QUrl("https://forms.gle/KNQPTNfXCPUPybgG9"));
}
void MainWindow::officialLink(){
QDesktopServices::openUrl(QUrl("https://openterface.com/"));
}
void MainWindow::updateLink()
{
m_versionInfoManager->checkForUpdates();
}
void MainWindow::aboutLink(){
m_versionInfoManager->showAbout();
}
void MainWindow::versionInfo()
{
m_versionInfoManager->showVersionInfo();
}
void MainWindow::onFunctionKeyPressed(int key)
{
HostManager::getInstance().handleFunctionKey(key);
}
void MainWindow::onCtrlAltDelPressed()
{
HostManager::getInstance().sendCtrlAltDel();
}
void MainWindow::onRepeatingKeystrokeChanged(int interval)
{
HostManager::getInstance().setRepeatingKeystroke(interval);
}
bool MainWindow::eventFilter(QObject *watched, QEvent *event)
{
if (watched == qApp && event->type() == QEvent::ApplicationPaletteChange) {
toolbarManager->updateStyles();
m_statusBarManager->updateIconColor();
}
return QMainWindow::eventFilter(watched, event);
}
void MainWindow::record()
{
m_cameraManager->startRecording();
}
void MainWindow::pause()
{
m_cameraManager->stopRecording();
}
void MainWindow::setMuted(bool /*muted*/)
{
// Your implementation here
}
void MainWindow::takeImageDefault(){
takeImage("");
}
void MainWindow::takeImage(const QString& path)
{
m_cameraManager->takeImage(path);
}
void MainWindow::takeAreaImage(const QString& path, const QRect& captureArea){
qCDebug(log_ui_mainwindow) << "mainwindow capture area image";
m_cameraManager->takeAreaImage(path, captureArea);
}
void MainWindow::displayCaptureError(int id, const QImageCapture::Error error,
const QString &errorString)
{
Q_UNUSED(id);
Q_UNUSED(error);
QMessageBox::warning(this, tr("Image Capture Error"), errorString);
m_isCapturingImage = false;
}
void MainWindow::setExposureCompensation(int index)
{
m_camera->setExposureCompensation(index * 0.5);
}
void MainWindow::displayCameraError()
{
if (!m_camera) {
qCWarning(log_ui_mainwindow) << "Camera pointer is null in displayCameraError";
return;
}
qCWarning(log_ui_mainwindow) << "Camera error: " << m_camera->errorString();
if (m_camera->error() != QCamera::NoError) {
qCDebug(log_ui_mainwindow) << "Camera error detected, switching to help pane";
// Safely switch to help pane
QMetaObject::invokeMethod(this, [this]() {
stackedLayout->setCurrentIndex(0);
}, Qt::QueuedConnection);
stop();
}
}
void MainWindow::stop(){
qDebug() << "Stop camera data...";
disconnect(m_camera.data());
qDebug() << "Camera data stopped.";
m_audioManager->disconnect();
qDebug() << "Audio manager stopped.";
m_captureSession.disconnect();
m_cameraManager->stopCamera();
SerialPortManager::getInstance().closePort();
qDebug() << "Camera stopped.";
}
void MainWindow::displayViewfinder()
{
//ui->stackedWidget->setCurrentIndex(0);
}
void MainWindow::displayCapturedImage()
{
//ui->stackedWidget->setCurrentIndex(1);
}
void MainWindow::onBaudrateMenuTriggered(QAction* action)
{
bool ok;
int baudrate = action->text().toInt(&ok);
if (ok) {
SerialPortManager::getInstance().setBaudRate(baudrate);
}
}
void MainWindow::imageSaved(int id, const QString &fileName)
{
Q_UNUSED(id);
ui->statusbar->showMessage(tr("Captured \"%1\"").arg(QDir::toNativeSeparators(fileName)));
m_isCapturingImage = false;
if (m_applicationExiting)
close();
}
void MainWindow::closeEvent(QCloseEvent *event)
{
if (m_isCapturingImage) {
setEnabled(false);
m_applicationExiting = true;
event->ignore();
} else {
event->accept();
}
}
void MainWindow::updateCameras()
{
qCDebug(log_ui_mainwindow) << "Update cameras...";
const QList<QCameraDevice> availableCameras = QMediaDevices::videoInputs();
qCDebug(log_ui_mainwindow) << "Available cameras size: " << availableCameras.size();
// If the last camera list is not empty, check if available cameras still include the last camera
if (!m_lastCameraList.isEmpty()) {
qCDebug(log_ui_mainwindow) << "Checking previously connected cameras...";
for (const QCameraDevice &camera : m_lastCameraList) {
qCDebug(log_ui_mainwindow) << "Checking camera: " << camera.description();
if (!availableCameras.contains(camera)) {
qCDebug(log_ui_mainwindow) << "Camera disconnected, stopping camera operations...";
stop();
m_lastCameraList.clear();
return;
}
}
}
qDebug() << "Checking for new cameras...";
// Check for new cameras
for (const QCameraDevice &camera : availableCameras) {
if (!m_lastCameraList.contains(camera)) {
qCDebug(log_ui_mainwindow) << "A new camera has been connected:" << camera.description();
if (!camera.description().contains("Openterface"))
continue;
qCDebug(log_ui_mainwindow) << "Update openterface layer to top layer.";
stackedLayout->setCurrentIndex(1);
//If the default camera is not an Openterface camera, set the camera to the first Openterface camera
if (!QMediaDevices::defaultVideoInput().description().contains("Openterface")) {
qCDebug(log_ui_mainwindow) << "Set defualt camera to the Openterface camera...";
} else {
qCDebug(log_ui_mainwindow) << "The default camera is" << QMediaDevices::defaultVideoInput().description();
}
m_audioManager->initializeAudio();
m_cameraManager->setCamera(camera, videoPane);
// Add the new camera to the last camera list
m_lastCameraList.append(camera);
break;
}
}
qDebug() << "Update cameras done.";
}
void MainWindow::onPortConnected(const QString& port, const int& baudrate) {
if(baudrate > 0){
m_statusBarManager->setConnectedPort(port, baudrate);
updateBaudrateMenu(baudrate);
}else{
m_statusBarManager->setConnectedPort(port, baudrate);
m_statusBarManager->setTargetUsbConnected(false);
}
}
void MainWindow::updateBaudrateMenu(int baudrate){
QMenu* baudrateMenu = ui->menuBaudrate;
if (baudrateMenu) {
QList<QAction*> actions = baudrateMenu->actions();
for (QAction* action : actions) {
if (baudrate == 0) {
action->setChecked(false);
} else {
bool ok;
int actionBaudrate = action->text().toInt(&ok);
if (ok && actionBaudrate == baudrate) {
action->setChecked(true);
} else {
action->setChecked(false);
}
}
}
}
}
void MainWindow::onStatusUpdate(const QString& status) {
m_statusBarManager->setStatusUpdate(status);
}
void MainWindow::onLastKeyPressed(const QString& key) {
m_statusBarManager->onLastKeyPressed(key);
}
void MainWindow::onLastMouseLocation(const QPoint& location, const QString& mouseEvent) {
m_statusBarManager->onLastMouseLocation(location, mouseEvent);
}
void MainWindow::onSwitchableUsbToggle(const bool isToTarget) {
if (isToTarget) {
qDebug() << "UI Switchable USB to target...";
ui->actionTo_Host->setChecked(false);
ui->actionTo_Target->setChecked(true);
toggleSwitch->setChecked(true);
} else {
qDebug() << "UI Switchable USB to host...";
ui->actionTo_Host->setChecked(true);
ui->actionTo_Target->setChecked(false);
toggleSwitch->setChecked(false);
}
SerialPortManager::getInstance().restartSwitchableUSB();
}
void MainWindow::checkMousePosition()
{
if (!scrollArea || !videoPane) return;
QPoint mousePos = mapFromGlobal(QCursor::pos());
QRect viewRect = scrollArea->viewport()->rect();
int deltaX = 0;
int deltaY = 0;
// Calculate the distance from the edge
int leftDistance = mousePos.x() - viewRect.left();
int rightDistance = viewRect.right() - mousePos.x();
int topDistance = mousePos.y() - viewRect.top();
int bottomDistance = viewRect.bottom() - mousePos.y();
// Adjust the scroll speed based on the distance from the edge
if (leftDistance <= edgeThreshold) {
deltaX = -maxScrollSpeed * (edgeThreshold - leftDistance) / edgeThreshold;
} else if (rightDistance <= edgeThreshold) {
deltaX = maxScrollSpeed * (edgeThreshold - rightDistance) / edgeThreshold;
}
if (topDistance <= edgeThreshold) {
deltaY = -maxScrollSpeed * (edgeThreshold - topDistance) / edgeThreshold;
} else if (bottomDistance <= edgeThreshold) {
deltaY = maxScrollSpeed * (edgeThreshold - bottomDistance) / edgeThreshold;
}
if (deltaX != 0 || deltaY != 0) {
scrollArea->horizontalScrollBar()->setValue(scrollArea->horizontalScrollBar()->value() + deltaX);
scrollArea->verticalScrollBar()->setValue(scrollArea->verticalScrollBar()->value() + deltaY);
}
}
void MainWindow::onVideoSettingsChanged(int width, int height) {
int newWidth = width + 1;
int newHeight = height + 1;
// Resize the window
resize(newWidth, newHeight);
// Optionally, you might want to center the window on the screen
QScreen *screen = this->screen();
QRect availableGeometry = screen->availableGeometry();
// QRect screenGeometry = QApplication::primaryScreen()->geometry();
int x = (availableGeometry.width() - newWidth) / 2;
int y = (availableGeometry.height() - newHeight) / 2;
move(x, y);
}
void MainWindow::onResolutionsUpdated(int input_width, int input_height, float input_fps, int capture_width, int capture_height, int capture_fps)
{
m_statusBarManager->setInputResolution(input_width, input_height, input_fps);
m_statusBarManager->setCaptureResolution(capture_width, capture_height, capture_fps);
}
void MainWindow::showScriptTool()
{
qDebug() << "showScriptTool called"; // Add debug output
ScriptTool *scriptTool = new ScriptTool(this);
scriptTool->setAttribute(Qt::WA_DeleteOnClose);
// Connect the syntaxTreeReady signal to the handleSyntaxTree slot
connect(scriptTool, &ScriptTool::syntaxTreeReady, this, &MainWindow::handleSyntaxTree);
scriptTool->show(); // Change exec() to show() for non-modal dialog
}
// run the sematic analyzer
void MainWindow::handleSyntaxTree(std::shared_ptr<ASTNode> syntaxTree) {
// Handle the received syntaxTree here
qCDebug(log_ui_mainwindow) << "Received syntaxTree in MainWindow";
// Process the syntaxTree as needed
qCDebug(log_ui_mainwindow) << syntaxTree.get();
taskmanager->addTask([this, syntaxTree]() {
semanticAnalyzer->analyze(syntaxTree.get());
});
}
MainWindow::~MainWindow()
{
qCDebug(log_ui_mainwindow) << "MainWindow destructor called";
// Stop all camera operations
stop();
// Delete UI
if (ui) {
delete ui;
ui = nullptr;
}
qCDebug(log_ui_mainwindow) << "MainWindow destroyed successfully";
}
bool MainWindow::CheckDeviceAccess(uint16_t vid, uint16_t pid) {
libusb_context *context;
int result = libusb_init(&context);
if (result < 0) return false;
libusb_device_handle *handle = libusb_open_device_with_vid_pid(context, vid, pid);
if (!handle) {
qDebug() << "Failed to open device: " << libusb_error_name(result);
libusb_close(handle);
libusb_exit(context);
return false;
}
int r = libusb_claim_interface(handle, 0);
if (r != LIBUSB_SUCCESS && r != LIBUSB_ERROR_BUSY) {
qDebug() << "Failed to claim interface: " << libusb_error_name(r);
libusb_close(handle);
libusb_exit(context);
return false;
}
return true;
libusb_exit(context);
}
void MainWindow::onToolbarVisibilityChanged(bool visible) {
// Prevent repaints during animation
setUpdatesEnabled(false);
// Block signals during update to prevent recursive calls
blockSignals(true);
// Update icon
bool isVisible = toolbarManager->getToolbar()->isVisible();
QString iconPath = isVisible ? ":/images/keyboard-down.svg" : ":/images/keyboard-up.svg";
ui->virtualKeyboardButton->setIcon(QIcon(iconPath)); // Create QIcon from the path
// Use QTimer to delay the video pane repositioning
QTimer::singleShot(0, this, &MainWindow::animateVideoPane);
}
void MainWindow::centerVideoPane(){
if (this->width() > videoPane->width()){
int horizontalOffset = (this->width() - videoPane->width()) / 2;
scrollArea->move(horizontalOffset, scrollArea->y());
}
}
void MainWindow::animateVideoPane() {
if (!videoPane || !scrollArea) {
setUpdatesEnabled(true);
blockSignals(false);
return;
}
// Get toolbar visibility and window state
bool isToolbarVisible = toolbarManager->getToolbar()->isVisible();
bool isMaximized = windowState() & Qt::WindowMaximized;
// Calculate content height based on toolbar visibility
int contentHeight = this->height() - ui->statusbar->height() - ui->menubar->height();
int contentWidth;
double aspect_ratio = static_cast<double>(video_width) / video_height;
if (isToolbarVisible) {
contentHeight -= toolbarManager->getToolbar()->height();
contentWidth = static_cast<int>(contentHeight * aspect_ratio);
qCDebug(log_ui_mainwindow) << "toolbarHeigth" << toolbarManager->getToolbar()->height() << "content height" <<contentHeight << "content width" << contentWidth;
}else{
contentHeight = this->height() - ui->statusbar->height() - ui->menubar->height();
contentWidth = static_cast<int>(contentHeight * aspect_ratio);
}
// If window is not maximized and toolbar is invisible, resize the panes
videoPane->setMinimumSize(contentWidth, contentHeight);
videoPane->resize(contentWidth, contentHeight);
scrollArea->resize(contentWidth, contentHeight);
if (this->width() > videoPane->width()) {
// Calculate new position
int horizontalOffset = (this->width() - videoPane->width()) / 2;
// Also animate the scrollArea
QPropertyAnimation *scrollAnimation = new QPropertyAnimation(scrollArea, "pos");
scrollAnimation->setDuration(150);
scrollAnimation->setStartValue(scrollArea->pos());
scrollAnimation->setEndValue(QPoint(horizontalOffset, scrollArea->y()));
scrollAnimation->setEasingCurve(QEasingCurve::OutCubic);
// Create animation group
QParallelAnimationGroup *group = new QParallelAnimationGroup(this);
group->addAnimation(scrollAnimation);
// Cleanup after animation
connect(group, &QParallelAnimationGroup::finished, this, [this]() {
setUpdatesEnabled(true);
blockSignals(false);
update();
});
group->start(QAbstractAnimation::DeleteWhenStopped);
} else {
setUpdatesEnabled(true);
blockSignals(false);
update();
}
}
void MainWindow::changeKeyboardLayout(const QString& layout) {
// Pass the layout name directly to HostManager
HostManager::getInstance().setKeyboardLayout(layout);
}
void MainWindow::initializeKeyboardLayouts() {
// Fetch available layouts from KeyboardLayoutManager
QStringList layouts = KeyboardLayoutManager::getInstance().getAvailableLayouts();
qCDebug(log_ui_mainwindow) << "Available layouts:" << layouts;
// Clear existing items in the combo box
ui->keyboardLayoutComboBox->clear();
// Add fetched layouts to the combo box
ui->keyboardLayoutComboBox->addItems(layouts);
// Set US QWERTY as default layout if it exists
QString defaultLayout = "US QWERTY";
if (layouts.contains(defaultLayout)) {
changeKeyboardLayout(defaultLayout);
ui->keyboardLayoutComboBox->setCurrentText(defaultLayout);
} else if (!layouts.isEmpty()) {
// Fallback to the first available layout if US QWERTY is not found
changeKeyboardLayout(layouts.first());
}
}
|