boo/lib/x11/ApplicationWayland.hpp

54 lines
1.7 KiB
C++
Raw Normal View History

2015-08-18 19:40:26 +00:00
#ifndef APPLICATION_UNIX_CPP
2015-05-06 00:50:57 +00:00
#error This file may only be included from CApplicationUnix.cpp
#endif
2015-08-18 22:43:30 +00:00
#include "boo/IApplication.hpp"
2015-05-06 00:50:57 +00:00
2015-05-13 22:21:13 +00:00
#include <dbus/dbus.h>
2015-10-28 01:47:55 +00:00
DBusConnection* RegisterDBus(const char* appName, bool& isFirst);
2015-05-13 22:21:13 +00:00
2018-12-08 05:17:51 +00:00
namespace boo {
2017-11-13 07:19:49 +00:00
std::shared_ptr<IWindow> _WindowWaylandNew(std::string_view title);
2015-05-13 22:21:13 +00:00
2018-12-08 05:17:51 +00:00
class ApplicationWayland final : public IApplication {
IApplicationCallback& m_callback;
const std::string m_uniqueName;
const std::string m_friendlyName;
const std::string m_pname;
const std::vector<std::string> m_args;
bool m_singleInstance;
void _deletedWindow(IWindow* window) override { (void)window; }
2018-12-08 05:17:51 +00:00
2015-05-06 00:50:57 +00:00
public:
2018-12-08 05:17:51 +00:00
ApplicationWayland(IApplicationCallback& callback, std::string_view uniqueName, std::string_view friendlyName,
std::string_view pname, const std::vector<std::string>& args, std::string_view gfxApi,
uint32_t samples, uint32_t anisotropy, bool deepColor, bool singleInstance)
: m_callback(callback)
, m_uniqueName(uniqueName)
, m_friendlyName(friendlyName)
, m_pname(pname)
, m_args(args)
, m_singleInstance(singleInstance) {
(void)m_callback;
(void)m_singleInstance;
}
EPlatformType getPlatformType() const override { return EPlatformType::Wayland; }
2018-12-08 05:17:51 +00:00
int run() override { return 0; }
2015-05-09 05:33:48 +00:00
std::string_view getUniqueName() const override { return m_uniqueName; }
2015-05-13 22:21:13 +00:00
std::string_view getFriendlyName() const override { return m_friendlyName; }
2018-12-08 05:17:51 +00:00
std::string_view getProcessName() const override { return m_pname; }
2018-12-08 05:17:51 +00:00
const std::vector<std::string>& getArgs() const override { return m_args; }
2018-12-08 05:17:51 +00:00
std::shared_ptr<IWindow> newWindow(std::string_view title) override { return _WindowWaylandNew(title); }
2015-05-06 00:50:57 +00:00
};
2018-12-08 05:17:51 +00:00
} // namespace boo