2018-08-09 10:05:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <json/json.h>
|
|
|
|
#include "modules/clock.hpp"
|
2018-08-20 15:20:02 +00:00
|
|
|
#ifdef HAVE_SWAY
|
2018-10-30 12:39:30 +00:00
|
|
|
#include "modules/sway/mode.hpp"
|
2018-08-15 18:17:17 +00:00
|
|
|
#include "modules/sway/window.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "modules/sway/workspaces.hpp"
|
2020-10-10 16:09:18 +00:00
|
|
|
#include "modules/sway/language.hpp"
|
2018-08-20 15:20:02 +00:00
|
|
|
#endif
|
2020-05-30 10:07:38 +00:00
|
|
|
#ifdef HAVE_WLR
|
|
|
|
#include "modules/wlr/taskbar.hpp"
|
|
|
|
#endif
|
2020-06-06 13:41:37 +00:00
|
|
|
#ifdef HAVE_RIVER
|
|
|
|
#include "modules/river/tags.hpp"
|
|
|
|
#endif
|
2019-08-09 09:52:16 +00:00
|
|
|
#if defined(__linux__) && !defined(NO_FILESYSTEM)
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "modules/battery.hpp"
|
2019-05-12 17:53:14 +00:00
|
|
|
#endif
|
2019-08-11 13:10:37 +00:00
|
|
|
#if defined(HAVE_CPU_LINUX) || defined(HAVE_CPU_BSD)
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "modules/cpu.hpp"
|
2019-08-11 13:10:37 +00:00
|
|
|
#endif
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "modules/idle_inhibitor.hpp"
|
2019-08-09 10:40:33 +00:00
|
|
|
#if defined(HAVE_MEMORY_LINUX) || defined(HAVE_MEMORY_BSD)
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "modules/memory.hpp"
|
2019-08-09 10:40:33 +00:00
|
|
|
#endif
|
2019-09-23 20:25:54 +00:00
|
|
|
#include "modules/disk.hpp"
|
2019-08-11 15:23:37 +00:00
|
|
|
#ifdef HAVE_DBUSMENU
|
2018-08-29 18:36:39 +00:00
|
|
|
#include "modules/sni/tray.hpp"
|
2018-10-25 17:12:28 +00:00
|
|
|
#endif
|
2018-08-20 15:20:02 +00:00
|
|
|
#ifdef HAVE_LIBNL
|
2018-08-09 14:38:24 +00:00
|
|
|
#include "modules/network.hpp"
|
2018-08-20 15:20:02 +00:00
|
|
|
#endif
|
2019-02-19 04:11:18 +00:00
|
|
|
#ifdef HAVE_LIBUDEV
|
|
|
|
#include "modules/backlight.hpp"
|
|
|
|
#endif
|
2018-08-20 15:20:02 +00:00
|
|
|
#ifdef HAVE_LIBPULSE
|
2018-08-09 21:55:38 +00:00
|
|
|
#include "modules/pulseaudio.hpp"
|
2018-08-20 15:20:02 +00:00
|
|
|
#endif
|
2019-04-16 14:34:37 +00:00
|
|
|
#ifdef HAVE_LIBMPDCLIENT
|
2020-10-04 05:01:51 +00:00
|
|
|
#include "modules/mpd/mpd.hpp"
|
2019-04-16 14:34:37 +00:00
|
|
|
#endif
|
2020-09-06 17:44:13 +00:00
|
|
|
#ifdef HAVE_LIBSNDIO
|
|
|
|
#include "modules/sndio.hpp"
|
|
|
|
#endif
|
2019-04-18 15:43:16 +00:00
|
|
|
#include "bar.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "modules/custom.hpp"
|
|
|
|
#include "modules/temperature.hpp"
|
2019-08-09 09:52:16 +00:00
|
|
|
#if defined(__linux__)
|
2020-08-14 18:59:30 +00:00
|
|
|
# ifdef WANT_RFKILL
|
|
|
|
# include "modules/bluetooth.hpp"
|
|
|
|
# endif
|
2019-08-09 09:52:16 +00:00
|
|
|
#endif
|
2018-08-09 10:05:48 +00:00
|
|
|
|
|
|
|
namespace waybar {
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
class Factory {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Factory(const Bar& bar, const Json::Value& config);
|
2019-06-15 12:57:52 +00:00
|
|
|
AModule* makeModule(const std::string& name) const;
|
2019-04-18 15:52:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const Bar& bar_;
|
|
|
|
const Json::Value& config_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-09 10:05:48 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar
|