Files
Waybar/include/factory.hpp
T

119 lines
2.8 KiB
C++
Raw Normal View History

2018-08-09 12:05:48 +02:00
#pragma once
#include <json/json.h>
#if defined(HAVE_CHRONO_TIMEZONES) || defined(HAVE_LIBDATE)
2018-08-09 12:05:48 +02:00
#include "modules/clock.hpp"
#else
#include "modules/simpleclock.hpp"
#endif
2018-08-20 17:20:02 +02:00
#ifdef HAVE_SWAY
2022-04-06 08:37:19 +02:00
#include "modules/sway/language.hpp"
2018-10-30 13:39:30 +01:00
#include "modules/sway/mode.hpp"
2022-08-29 04:55:48 +08:00
#include "modules/sway/scratchpad.hpp"
2018-08-15 20:17:17 +02:00
#include "modules/sway/window.hpp"
2019-04-18 17:52:00 +02:00
#include "modules/sway/workspaces.hpp"
2018-08-20 17:20:02 +02:00
#endif
#ifdef HAVE_WLR
#include "modules/wlr/taskbar.hpp"
2020-08-05 23:10:08 +03:00
#include "modules/wlr/workspace_manager.hpp"
#endif
2020-06-06 15:41:37 +02:00
#ifdef HAVE_RIVER
2023-04-03 09:41:24 +02:00
#include "modules/river/layout.hpp"
2022-05-31 20:28:09 +00:00
#include "modules/river/mode.hpp"
2020-06-06 15:41:37 +02:00
#include "modules/river/tags.hpp"
2022-05-19 15:20:04 -04:00
#include "modules/river/window.hpp"
2020-06-06 15:41:37 +02:00
#endif
2023-04-11 04:50:21 +03:00
#ifdef HAVE_DWL
#include "modules/dwl/tags.hpp"
#endif
2022-07-01 12:46:28 +02:00
#ifdef HAVE_HYPRLAND
#include "modules/hyprland/backend.hpp"
2022-08-18 18:00:27 +02:00
#include "modules/hyprland/language.hpp"
2022-12-21 01:45:57 +01:00
#include "modules/hyprland/submap.hpp"
2023-01-04 16:26:50 +01:00
#include "modules/hyprland/window.hpp"
2023-06-28 02:52:01 +03:00
#include "modules/hyprland/workspaces.hpp"
2022-07-01 12:46:28 +02:00
#endif
2024-02-16 15:29:32 -08:00
#if defined(__FreeBSD__) || defined(__linux__)
2018-08-09 12:05:48 +02:00
#include "modules/battery.hpp"
2019-05-12 19:53:14 +02:00
#endif
2019-08-11 13:10:37 +00:00
#if defined(HAVE_CPU_LINUX) || defined(HAVE_CPU_BSD)
2018-08-09 12:05:48 +02:00
#include "modules/cpu.hpp"
2022-12-21 17:45:53 +01:00
#include "modules/cpu_frequency.hpp"
2022-12-21 17:47:06 +01:00
#include "modules/cpu_usage.hpp"
2022-12-21 17:44:11 +01:00
#include "modules/load.hpp"
2019-08-11 13:10:37 +00:00
#endif
2019-04-18 17:52:00 +02: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 17:52:00 +02:00
#include "modules/memory.hpp"
2019-08-09 10:40:33 +00:00
#endif
2019-09-23 22:25:54 +02:00
#include "modules/disk.hpp"
2019-08-11 15:23:37 +00:00
#ifdef HAVE_DBUSMENU
2018-08-29 20:36:39 +02:00
#include "modules/sni/tray.hpp"
2018-10-25 19:12:28 +02:00
#endif
2021-11-01 19:17:29 +01:00
#ifdef HAVE_MPRIS
#include "modules/mpris/mpris.hpp"
#endif
2018-08-20 17:20:02 +02:00
#ifdef HAVE_LIBNL
2018-08-09 16:38:24 +02:00
#include "modules/network.hpp"
2018-08-20 17:20:02 +02:00
#endif
#ifdef HAVE_LIBUDEV
#include "modules/backlight.hpp"
#endif
2021-02-07 15:05:11 -05:00
#ifdef HAVE_LIBEVDEV
#include "modules/keyboard_state.hpp"
#endif
2022-05-13 21:30:45 +02:00
#ifdef HAVE_GAMEMODE
#include "modules/gamemode.hpp"
#endif
2022-03-15 17:54:06 +01:00
#ifdef HAVE_UPOWER
2022-03-19 11:34:34 +01:00
#include "modules/upower/upower.hpp"
2022-03-15 17:54:06 +01:00
#endif
2023-10-26 23:08:57 +02:00
#ifdef HAVE_PIPEWIRE
#include "modules/privacy/privacy.hpp"
#endif
2018-08-20 17:20:02 +02:00
#ifdef HAVE_LIBPULSE
2018-08-09 23:55:38 +02:00
#include "modules/pulseaudio.hpp"
2018-08-20 17:20:02 +02:00
#endif
2019-04-16 16:34:37 +02:00
#ifdef HAVE_LIBMPDCLIENT
#include "modules/mpd/mpd.hpp"
2019-04-16 16:34:37 +02:00
#endif
2020-09-06 14:44:13 -03:00
#ifdef HAVE_LIBSNDIO
#include "modules/sndio.hpp"
2019-04-16 16:34:37 +02:00
#endif
2022-05-02 18:11:21 +02:00
#include "modules/bluetooth.hpp"
2024-02-16 23:30:00 -08:00
#ifdef HAVE_LOGIND_INHIBITOR
2022-05-06 17:01:43 +02:00
#include "modules/inhibitor.hpp"
#endif
#ifdef HAVE_LIBJACK
#include "modules/jack.hpp"
#endif
2022-11-16 12:23:12 -08:00
#ifdef HAVE_LIBWIREPLUMBER
#include "modules/wireplumber.hpp"
#endif
2023-04-15 02:36:15 +03:00
#ifdef HAVE_LIBCAVA
#include "modules/cava.hpp"
#endif
2024-01-09 18:05:17 +08:00
#ifdef HAVE_SYSTEMD_MONITOR
#include "modules/systemd_failed_units.hpp"
#endif
#include "bar.hpp"
#include "modules/cffi.hpp"
2019-04-18 17:52:00 +02:00
#include "modules/custom.hpp"
2022-01-16 23:55:13 +00:00
#include "modules/image.hpp"
2019-04-18 17:52:00 +02:00
#include "modules/temperature.hpp"
2022-10-18 09:01:45 +02:00
#include "modules/user.hpp"
2018-08-09 12:05:48 +02:00
namespace waybar {
2018-08-16 14:29:41 +02:00
class Factory {
2019-04-18 17:52:00 +02:00
public:
Factory(const Bar& bar, const Json::Value& config);
2023-10-26 23:08:57 +02:00
AModule* makeModule(const std::string& name, const std::string& pos) const;
2019-04-18 17:52:00 +02:00
private:
2022-04-06 08:37:19 +02:00
const Bar& bar_;
2019-04-18 17:52:00 +02:00
const Json::Value& config_;
2018-08-16 14:29:41 +02:00
};
2018-08-09 12:05:48 +02:00
2019-04-18 17:52:00 +02:00
} // namespace waybar