mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 05:46:48 +08:00
17 lines
497 B
C++
17 lines
497 B
C++
#include "FullScreenDetector.h"
|
|
|
|
using namespace WallpaperEngine;
|
|
using namespace WallpaperEngine::Render::Drivers::Detectors;
|
|
|
|
FullScreenDetector::FullScreenDetector (Application::ApplicationContext& appContext) :
|
|
m_applicationContext (appContext) {}
|
|
|
|
Application::ApplicationContext& FullScreenDetector::getApplicationContext () const {
|
|
return this->m_applicationContext;
|
|
}
|
|
|
|
bool FullScreenDetector::anythingFullscreen () const {
|
|
return false;
|
|
}
|
|
|
|
void FullScreenDetector::reset () {} |