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"
|
2018-08-20 15:20:02 +00:00
|
|
|
#endif
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "modules/battery.hpp"
|
|
|
|
#include "modules/cpu.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "modules/idle_inhibitor.hpp"
|
|
|
|
#include "modules/memory.hpp"
|
2018-10-25 17:12:28 +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
|
|
|
|
#include "modules/mpd.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"
|
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);
|
|
|
|
IModule* makeModule(const std::string& name) const;
|
|
|
|
|
|
|
|
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
|