KonvergoWindow.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. #include "KonvergoWindow.h"
  2. #include <QTimer>
  3. #include <QJsonObject>
  4. #include <QScreen>
  5. #include <QQuickItem>
  6. #include <QGuiApplication>
  7. #include "input/InputKeyboard.h"
  8. #include "settings/SettingsComponent.h"
  9. #include "settings/SettingsSection.h"
  10. #include "system/SystemComponent.h"
  11. #include "player/PlayerComponent.h"
  12. #include "player/PlayerQuickItem.h"
  13. #include "display/DisplayComponent.h"
  14. #include "QsLog.h"
  15. #include "utils/Utils.h"
  16. #include "Globals.h"
  17. #include "EventFilter.h"
  18. ///////////////////////////////////////////////////////////////////////////////////////////////////
  19. KonvergoWindow::KonvergoWindow(QWindow* parent) : QQuickWindow(parent), m_debugLayer(false), m_lastScale(1.0), m_ignoreFullscreenSettingsChange(0)
  20. {
  21. // NSWindowCollectionBehaviorFullScreenPrimary is only set on OSX if Qt::WindowFullscreenButtonHint is set on the window.
  22. setFlags(flags() | Qt::WindowFullscreenButtonHint);
  23. m_infoTimer = new QTimer(this);
  24. m_infoTimer->setInterval(1000);
  25. installEventFilter(new EventFilter(this));
  26. connect(m_infoTimer, &QTimer::timeout, this, &KonvergoWindow::updateDebugInfo);
  27. InputComponent::Get().registerHostCommand("close", this, "close");
  28. InputComponent::Get().registerHostCommand("toggleDebug", this, "toggleDebug");
  29. InputComponent::Get().registerHostCommand("reload", this, "reloadWeb");
  30. InputComponent::Get().registerHostCommand("fullscreen", this, "toggleFullscreen");
  31. #ifdef TARGET_RPI
  32. // On RPI, we use dispmanx layering - the video is on a layer below Konvergo,
  33. // and during playback the Konvergo window is partially transparent. The OSD
  34. // will be visible on top of the video as part of the Konvergo window.
  35. setColor(QColor("transparent"));
  36. #else
  37. setColor(QColor("#111111"));
  38. #endif
  39. QRect loadedGeo = loadGeometry();
  40. notifyScale(loadedGeo.size());
  41. connect(SettingsComponent::Get().getSection(SETTINGS_SECTION_MAIN), &SettingsSection::valuesUpdated,
  42. this, &KonvergoWindow::updateMainSectionSettings);
  43. connect(this, &KonvergoWindow::visibilityChanged,
  44. this, &KonvergoWindow::onVisibilityChanged);
  45. connect(this, &KonvergoWindow::enableVideoWindowSignal,
  46. this, &KonvergoWindow::enableVideoWindow, Qt::QueuedConnection);
  47. connect(&PlayerComponent::Get(), &PlayerComponent::windowVisible,
  48. this, &KonvergoWindow::playerWindowVisible);
  49. // this is using old syntax because ... reasons. QQuickCloseEvent is not public class
  50. connect(this, SIGNAL(closing(QQuickCloseEvent*)), this, SLOT(closingWindow()));
  51. connect(qApp, &QCoreApplication::aboutToQuit, this, &KonvergoWindow::closingWindow);
  52. #ifdef KONVERGO_OPENELEC
  53. setVisibility(QWindow::FullScreen);
  54. #else
  55. updateWindowState(false);
  56. #endif
  57. emit enableVideoWindowSignal();
  58. }
  59. /////////////////////////////////////////////////////////////////////////////////////////
  60. void KonvergoWindow::closingWindow()
  61. {
  62. if (!SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "fullscreen").toBool())
  63. saveGeometry();
  64. qApp->quit();
  65. }
  66. ///////////////////////////////////////////////////////////////////////////////////////////////////
  67. KonvergoWindow::~KonvergoWindow()
  68. {
  69. DisplayComponent::Get().setApplicationWindow(nullptr);
  70. }
  71. ///////////////////////////////////////////////////////////////////////////////////////////////////
  72. bool KonvergoWindow::fitsInScreens(const QRect& rc)
  73. {
  74. for(QScreen *screen : QGuiApplication::screens())
  75. {
  76. if (screen->virtualGeometry().contains(rc))
  77. return true;
  78. }
  79. return false;
  80. }
  81. ///////////////////////////////////////////////////////////////////////////////////////////////////
  82. void KonvergoWindow::saveGeometry()
  83. {
  84. QRect rc = geometry();
  85. // lets make sure we are not saving something craycray
  86. if (rc.size().width() < windowMinSize().width() || rc.size().height() < windowMinSize().height())
  87. return;
  88. if (!fitsInScreens(rc))
  89. return;
  90. QVariantMap map = {{"x", rc.x()}, {"y", rc.y()},
  91. {"width", rc.width()}, {"height", rc.height()}};
  92. SettingsComponent::Get().setValue(SETTINGS_SECTION_STATE, "geometry", map);
  93. SettingsComponent::Get().setValue(SETTINGS_SECTION_STATE, "lastUsedScreen", screen()->name());
  94. }
  95. ///////////////////////////////////////////////////////////////////////////////////////////////////
  96. QRect KonvergoWindow::loadGeometry()
  97. {
  98. QRect rc = loadGeometryRect();
  99. QScreen* myScreen = loadLastScreen();
  100. if (!myScreen)
  101. myScreen = screen();
  102. QRect nsize = rc;
  103. if (SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "fullscreen").toBool())
  104. {
  105. QLOG_DEBUG() << "Load FullScreen geo...";
  106. // On OSX we need to set the geometry to the size we want when we
  107. // return from fullscreen otherwise when we exit fullscreen it
  108. // will stay small or big. On Windows we need to set it to max
  109. // resolution for the screen (i.e. fullscreen) otherwise it will
  110. // just scale the webcontent to the minimum size we have defined
  111. //
  112. #ifndef Q_OS_MAC
  113. nsize = myScreen->geometry();
  114. #endif
  115. setGeometry(nsize);
  116. setScreen(myScreen);
  117. }
  118. else
  119. {
  120. setGeometry(nsize);
  121. saveGeometry();
  122. }
  123. return nsize;
  124. }
  125. ///////////////////////////////////////////////////////////////////////////////////////////////////
  126. QRect KonvergoWindow::loadGeometryRect()
  127. {
  128. // if we dont have anything, default to 720p in the middle of the screen
  129. QRect defaultRect = QRect((screen()->geometry().width() - webUISize().width()) / 2,
  130. (screen()->geometry().height() - webUISize().height()) / 2,
  131. webUISize().width(), webUISize().height());
  132. QVariantMap map = SettingsComponent::Get().value(SETTINGS_SECTION_STATE, "geometry").toMap();
  133. if (map.isEmpty())
  134. return defaultRect;
  135. QRect rc(map["x"].toInt(), map["y"].toInt(), map["width"].toInt(), map["height"].toInt());
  136. QLOG_DEBUG() << "Restoring geo:" << rc;
  137. if (!rc.isValid() || rc.isEmpty())
  138. {
  139. QLOG_DEBUG() << "Geo bad, going for defaults";
  140. return defaultRect;
  141. }
  142. QSize minsz = windowMinSize();
  143. // Clamp to min size if we have really small values in there
  144. if (rc.size().width() < minsz.width())
  145. rc.setWidth(minsz.width());
  146. if (rc.size().height() < minsz.height())
  147. rc.setHeight(minsz.height());
  148. // also make sure we are not putting windows outside the screen somewhere
  149. if (!fitsInScreens(rc))
  150. {
  151. QLOG_DEBUG() << "Could not fit stored geo into current screens";
  152. return defaultRect;
  153. }
  154. return rc;
  155. }
  156. ///////////////////////////////////////////////////////////////////////////////////////////////////
  157. void KonvergoWindow::enableVideoWindow()
  158. {
  159. PlayerComponent::Get().setWindow(this);
  160. DisplayComponent::Get().setApplicationWindow(this);
  161. }
  162. ///////////////////////////////////////////////////////////////////////////////////////////////////
  163. void KonvergoWindow::setFullScreen(bool enable)
  164. {
  165. QLOG_DEBUG() << "setting fullscreen = " << enable;
  166. SettingsComponent::Get().setValue(SETTINGS_SECTION_MAIN, "fullscreen", enable);
  167. }
  168. ///////////////////////////////////////////////////////////////////////////////////////////////////
  169. void KonvergoWindow::setAlwaysOnTop(bool enable)
  170. {
  171. QLOG_DEBUG() << "setting always on top = " << enable;
  172. // Update the settings value.
  173. SettingsComponent::Get().setValue(SETTINGS_SECTION_MAIN, "alwaysOnTop", enable);
  174. }
  175. ///////////////////////////////////////////////////////////////////////////////////////////////////
  176. void KonvergoWindow::playerWindowVisible(bool visible)
  177. {
  178. // adjust webengineview transparecy depending on player visibility
  179. QQuickItem *web = findChild<QQuickItem *>("web");
  180. if (web)
  181. web->setProperty("backgroundColor", visible ? "transparent" : "#111111");
  182. }
  183. ///////////////////////////////////////////////////////////////////////////////////////////////////
  184. void KonvergoWindow::updateMainSectionSettings(const QVariantMap& values)
  185. {
  186. if (m_ignoreFullscreenSettingsChange > 0)
  187. return;
  188. // update mouse visibility if needed
  189. if (values.find("disablemouse") != values.end())
  190. {
  191. SystemComponent::Get().setCursorVisibility(!SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "disablemouse").toBool());
  192. }
  193. if (values.contains("alwaysOnTop") || values.contains("fullscreen"))
  194. {
  195. InputComponent::Get().cancelAutoRepeat();
  196. updateWindowState();
  197. }
  198. }
  199. ///////////////////////////////////////////////////////////////////////////////////////////////////
  200. void KonvergoWindow::updateWindowState(bool saveGeo)
  201. {
  202. if (SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "fullscreen").toBool() || SystemComponent::Get().isOpenELEC())
  203. {
  204. // if we were go from windowed to fullscreen
  205. // we want to store our current windowed position
  206. if (!isFullScreen() && saveGeo)
  207. saveGeometry();
  208. setVisibility(QWindow::FullScreen);
  209. }
  210. else
  211. {
  212. setVisibility(QWindow::Windowed);
  213. loadGeometry();
  214. Qt::WindowFlags forceOnTopFlags = Qt::WindowStaysOnTopHint;
  215. #ifdef Q_WS_X11
  216. forceOnTopFlags = forceOnTopFlags | Qt::X11BypassWindowManagerHint;
  217. #endif
  218. if (SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "alwaysOnTop").toBool())
  219. setFlags(flags() | forceOnTopFlags);
  220. else
  221. setFlags(flags() &~ forceOnTopFlags);
  222. }
  223. }
  224. ///////////////////////////////////////////////////////////////////////////////////////////////////
  225. class ScopedDecrementer {
  226. Q_DISABLE_COPY(ScopedDecrementer)
  227. int* m_value;
  228. public:
  229. ScopedDecrementer(int* value) : m_value(value) {}
  230. ~ScopedDecrementer() { (*m_value)--; }
  231. };
  232. ///////////////////////////////////////////////////////////////////////////////////////////////////
  233. void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
  234. {
  235. QLOG_DEBUG() << (visibility == QWindow::FullScreen ? "FullScreen" : "Windowed") << "visbility set to " << visibility;
  236. if (visibility == QWindow::Windowed)
  237. loadGeometry();
  238. if (visibility == QWindow::FullScreen || visibility == QWindow::Windowed) {
  239. m_ignoreFullscreenSettingsChange++;
  240. ScopedDecrementer decrement(&m_ignoreFullscreenSettingsChange);
  241. bool fs = visibility == QWindow::FullScreen;
  242. SettingsComponent::Get().setValue(SETTINGS_SECTION_MAIN, "fullscreen", fs);
  243. }
  244. notifyScale(size());
  245. }
  246. /////////////////////////////////////////////////////////////////////////////////////////
  247. void KonvergoWindow::focusOutEvent(QFocusEvent * ev)
  248. {
  249. #ifdef Q_OS_WIN32
  250. // Do this to workaround DWM compositor bugs with fullscreened OpenGL applications.
  251. // The compositor will not properly redraw anything when focusing other windows.
  252. if (visibility() == QWindow::FullScreen && SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "minimizeOnDefocus").toBool())
  253. {
  254. QLOG_DEBUG() << "minimizing window";
  255. showMinimized();
  256. }
  257. #endif
  258. }
  259. /////////////////////////////////////////////////////////////////////////////////////////
  260. void KonvergoWindow::RegisterClass()
  261. {
  262. qmlRegisterType<KonvergoWindow>("Konvergo", 1, 0, "KonvergoWindow");
  263. }
  264. /////////////////////////////////////////////////////////////////////////////////////////
  265. void KonvergoWindow::onScreenCountChanged(int newCount)
  266. {
  267. updateWindowState(false);
  268. }
  269. /////////////////////////////////////////////////////////////////////////////////////////
  270. void KonvergoWindow::updateDebugInfo()
  271. {
  272. if (m_systemDebugInfo.size() == 0)
  273. m_systemDebugInfo = SystemComponent::Get().debugInformation();
  274. m_debugInfo = m_systemDebugInfo;
  275. m_debugInfo += DisplayComponent::Get().debugInformation();
  276. PlayerQuickItem* video = findChild<PlayerQuickItem*>("video");
  277. if (video)
  278. m_debugInfo += video->debugInfo();
  279. m_videoInfo = PlayerComponent::Get().videoInformation();
  280. emit debugInfoChanged();
  281. }
  282. /////////////////////////////////////////////////////////////////////////////////////////
  283. void KonvergoWindow::toggleDebug()
  284. {
  285. if (property("showDebugLayer").toBool())
  286. {
  287. m_infoTimer->stop();
  288. setProperty("showDebugLayer", false);
  289. }
  290. else
  291. {
  292. m_infoTimer->start();
  293. updateDebugInfo();
  294. setProperty("showDebugLayer", true);
  295. }
  296. }
  297. /////////////////////////////////////////////////////////////////////////////////////////
  298. void KonvergoWindow::notifyScale(const QSize& size)
  299. {
  300. qreal scale = CalculateScale(size);
  301. if (scale != m_lastScale)
  302. {
  303. QLOG_DEBUG() << "windowScale updated to:" << scale << "webscale:" << CalculateWebScale(size, devicePixelRatio());
  304. m_lastScale = scale;
  305. emit SystemComponent::Get().scaleChanged(CalculateWebScale(size, devicePixelRatio()));
  306. }
  307. emit webScaleChanged();
  308. }
  309. /////////////////////////////////////////////////////////////////////////////////////////
  310. void KonvergoWindow::resizeEvent(QResizeEvent* event)
  311. {
  312. QLOG_DEBUG() << "resize event:" << event->size();
  313. // This next block should never really be needed in a prefect world...
  314. // Unfortunatly this is an imperfect world and on windows sometimes what
  315. // would happen on startup is that we got a resize event that would make
  316. // the window much smaller than fullscreen.
  317. //
  318. if (isFullScreen())
  319. {
  320. QSize fsSize = screen()->size();
  321. if (event->size().width() < fsSize.width() || event->size().height() < fsSize.height())
  322. {
  323. QLOG_DEBUG() << "Ignoring resize event when in fullscreen...";
  324. return;
  325. }
  326. }
  327. notifyScale(event->size());
  328. QQuickWindow::resizeEvent(event);
  329. }
  330. /////////////////////////////////////////////////////////////////////////////////////////
  331. #define ROUND(x) (qRound(x * 1000) / 1000.0)
  332. /////////////////////////////////////////////////////////////////////////////////////////
  333. qreal KonvergoWindow::CalculateScale(const QSize& size)
  334. {
  335. qreal horizontalScale = (qreal)size.width() / (qreal)WEBUI_SIZE.width();
  336. qreal verticalScale = (qreal)size.height() / (qreal)WEBUI_SIZE.height();
  337. return ROUND(qMin(horizontalScale, verticalScale));
  338. }
  339. /////////////////////////////////////////////////////////////////////////////////////////
  340. qreal KonvergoWindow::CalculateWebScale(const QSize& size, qreal devicePixelRatio)
  341. {
  342. qreal horizontalScale = (qreal)size.width() / (qreal)WEBUI_SIZE.width();
  343. qreal verticalScale = (qreal)size.height() / (qreal)WEBUI_SIZE.height();
  344. qreal minScale = qMin(horizontalScale, qMin(verticalScale, (qreal)(WEBUI_MAX_HEIGHT / devicePixelRatio) / (qreal)WEBUI_SIZE.height()));
  345. qreal minWinScale = 240.0 / (qreal)WEBUI_SIZE.height();
  346. return ROUND(qMax(minWinScale, minScale));
  347. }
  348. /////////////////////////////////////////////////////////////////////////////////////////
  349. QScreen* KonvergoWindow::loadLastScreen()
  350. {
  351. QString screenName = SettingsComponent::Get().value(SETTINGS_SECTION_STATE, "lastUsedScreen").toString();
  352. if (screenName.isEmpty())
  353. return nullptr;
  354. for (QScreen* scr : QGuiApplication::screens())
  355. {
  356. if (scr->name() == screenName)
  357. return scr;
  358. }
  359. QLOG_DEBUG() << "Tried to find screen:" << screenName << "but it was not present";
  360. return nullptr;
  361. }