Merge pull request #2937 from alebastr/factory-includes
refactor: move all module includes to factory.cpp
This commit is contained in:
commit
ce5a1cf2f9
|
@ -1,114 +1,13 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
#if defined(HAVE_CHRONO_TIMEZONES) || defined(HAVE_LIBDATE)
|
|
||||||
#include "modules/clock.hpp"
|
#include <AModule.hpp>
|
||||||
#else
|
|
||||||
#include "modules/simpleclock.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_SWAY
|
|
||||||
#include "modules/sway/language.hpp"
|
|
||||||
#include "modules/sway/mode.hpp"
|
|
||||||
#include "modules/sway/scratchpad.hpp"
|
|
||||||
#include "modules/sway/window.hpp"
|
|
||||||
#include "modules/sway/workspaces.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_WLR_TASKBAR
|
|
||||||
#include "modules/wlr/taskbar.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_WLR_WORKSPACES
|
|
||||||
#include "modules/wlr/workspace_manager.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_RIVER
|
|
||||||
#include "modules/river/layout.hpp"
|
|
||||||
#include "modules/river/mode.hpp"
|
|
||||||
#include "modules/river/tags.hpp"
|
|
||||||
#include "modules/river/window.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_DWL
|
|
||||||
#include "modules/dwl/tags.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_HYPRLAND
|
|
||||||
#include "modules/hyprland/backend.hpp"
|
|
||||||
#include "modules/hyprland/language.hpp"
|
|
||||||
#include "modules/hyprland/submap.hpp"
|
|
||||||
#include "modules/hyprland/window.hpp"
|
|
||||||
#include "modules/hyprland/workspaces.hpp"
|
|
||||||
#endif
|
|
||||||
#if defined(__FreeBSD__) || defined(__linux__)
|
|
||||||
#include "modules/battery.hpp"
|
|
||||||
#endif
|
|
||||||
#if defined(HAVE_CPU_LINUX) || defined(HAVE_CPU_BSD)
|
|
||||||
#include "modules/cpu.hpp"
|
|
||||||
#include "modules/cpu_frequency.hpp"
|
|
||||||
#include "modules/cpu_usage.hpp"
|
|
||||||
#include "modules/load.hpp"
|
|
||||||
#endif
|
|
||||||
#include "modules/idle_inhibitor.hpp"
|
|
||||||
#if defined(HAVE_MEMORY_LINUX) || defined(HAVE_MEMORY_BSD)
|
|
||||||
#include "modules/memory.hpp"
|
|
||||||
#endif
|
|
||||||
#include "modules/disk.hpp"
|
|
||||||
#ifdef HAVE_DBUSMENU
|
|
||||||
#include "modules/sni/tray.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_MPRIS
|
|
||||||
#include "modules/mpris/mpris.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBNL
|
|
||||||
#include "modules/network.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBUDEV
|
|
||||||
#include "modules/backlight.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBEVDEV
|
|
||||||
#include "modules/keyboard_state.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_GAMEMODE
|
|
||||||
#include "modules/gamemode.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_UPOWER
|
|
||||||
#include "modules/upower/upower.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_PIPEWIRE
|
|
||||||
#include "modules/privacy/privacy.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBPULSE
|
|
||||||
#include "modules/pulseaudio.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBMPDCLIENT
|
|
||||||
#include "modules/mpd/mpd.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBSNDIO
|
|
||||||
#include "modules/sndio.hpp"
|
|
||||||
#endif
|
|
||||||
#if defined(__linux__)
|
|
||||||
#include "modules/bluetooth.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LOGIND_INHIBITOR
|
|
||||||
#include "modules/inhibitor.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBJACK
|
|
||||||
#include "modules/jack.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBWIREPLUMBER
|
|
||||||
#include "modules/wireplumber.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_LIBCAVA
|
|
||||||
#include "modules/cava.hpp"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_SYSTEMD_MONITOR
|
|
||||||
#include "modules/systemd_failed_units.hpp"
|
|
||||||
#endif
|
|
||||||
#include "bar.hpp"
|
|
||||||
#include "modules/cffi.hpp"
|
|
||||||
#include "modules/custom.hpp"
|
|
||||||
#include "modules/image.hpp"
|
|
||||||
#include "modules/temperature.hpp"
|
|
||||||
#include "modules/user.hpp"
|
|
||||||
|
|
||||||
namespace waybar {
|
namespace waybar {
|
||||||
|
|
||||||
|
class Bar;
|
||||||
|
|
||||||
class Factory {
|
class Factory {
|
||||||
public:
|
public:
|
||||||
Factory(const Bar& bar, const Json::Value& config);
|
Factory(const Bar& bar, const Json::Value& config);
|
||||||
|
|
106
src/factory.cpp
106
src/factory.cpp
|
@ -1,12 +1,112 @@
|
||||||
#include "factory.hpp"
|
#include "factory.hpp"
|
||||||
|
|
||||||
#ifdef HAVE_LIBPULSE
|
#include "bar.hpp"
|
||||||
#include "modules/pulseaudio_slider.hpp"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
#if defined(HAVE_CHRONO_TIMEZONES) || defined(HAVE_LIBDATE)
|
||||||
|
#include "modules/clock.hpp"
|
||||||
|
#else
|
||||||
|
#include "modules/simpleclock.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_SWAY
|
||||||
|
#include "modules/sway/language.hpp"
|
||||||
|
#include "modules/sway/mode.hpp"
|
||||||
|
#include "modules/sway/scratchpad.hpp"
|
||||||
|
#include "modules/sway/window.hpp"
|
||||||
|
#include "modules/sway/workspaces.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_WLR_TASKBAR
|
||||||
|
#include "modules/wlr/taskbar.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_WLR_WORKSPACES
|
||||||
|
#include "modules/wlr/workspace_manager.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_RIVER
|
||||||
|
#include "modules/river/layout.hpp"
|
||||||
|
#include "modules/river/mode.hpp"
|
||||||
|
#include "modules/river/tags.hpp"
|
||||||
|
#include "modules/river/window.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_DWL
|
||||||
|
#include "modules/dwl/tags.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_HYPRLAND
|
||||||
|
#include "modules/hyprland/language.hpp"
|
||||||
|
#include "modules/hyprland/submap.hpp"
|
||||||
|
#include "modules/hyprland/window.hpp"
|
||||||
|
#include "modules/hyprland/workspaces.hpp"
|
||||||
|
#endif
|
||||||
|
#if defined(__FreeBSD__) || defined(__linux__)
|
||||||
|
#include "modules/battery.hpp"
|
||||||
|
#endif
|
||||||
|
#if defined(HAVE_CPU_LINUX) || defined(HAVE_CPU_BSD)
|
||||||
|
#include "modules/cpu.hpp"
|
||||||
|
#include "modules/cpu_frequency.hpp"
|
||||||
|
#include "modules/cpu_usage.hpp"
|
||||||
|
#include "modules/load.hpp"
|
||||||
|
#endif
|
||||||
|
#include "modules/idle_inhibitor.hpp"
|
||||||
|
#if defined(HAVE_MEMORY_LINUX) || defined(HAVE_MEMORY_BSD)
|
||||||
|
#include "modules/memory.hpp"
|
||||||
|
#endif
|
||||||
|
#include "modules/disk.hpp"
|
||||||
|
#ifdef HAVE_DBUSMENU
|
||||||
|
#include "modules/sni/tray.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_MPRIS
|
||||||
|
#include "modules/mpris/mpris.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBNL
|
||||||
|
#include "modules/network.hpp"
|
||||||
|
#endif
|
||||||
#ifdef HAVE_LIBUDEV
|
#ifdef HAVE_LIBUDEV
|
||||||
|
#include "modules/backlight.hpp"
|
||||||
#include "modules/backlight_slider.hpp"
|
#include "modules/backlight_slider.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_LIBEVDEV
|
||||||
|
#include "modules/keyboard_state.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_GAMEMODE
|
||||||
|
#include "modules/gamemode.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_UPOWER
|
||||||
|
#include "modules/upower/upower.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_PIPEWIRE
|
||||||
|
#include "modules/privacy/privacy.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBPULSE
|
||||||
|
#include "modules/pulseaudio.hpp"
|
||||||
|
#include "modules/pulseaudio_slider.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBMPDCLIENT
|
||||||
|
#include "modules/mpd/mpd.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBSNDIO
|
||||||
|
#include "modules/sndio.hpp"
|
||||||
|
#endif
|
||||||
|
#if defined(__linux__)
|
||||||
|
#include "modules/bluetooth.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LOGIND_INHIBITOR
|
||||||
|
#include "modules/inhibitor.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBJACK
|
||||||
|
#include "modules/jack.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBWIREPLUMBER
|
||||||
|
#include "modules/wireplumber.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_LIBCAVA
|
||||||
|
#include "modules/cava.hpp"
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_SYSTEMD_MONITOR
|
||||||
|
#include "modules/systemd_failed_units.hpp"
|
||||||
|
#endif
|
||||||
|
#include "modules/cffi.hpp"
|
||||||
|
#include "modules/custom.hpp"
|
||||||
|
#include "modules/image.hpp"
|
||||||
|
#include "modules/temperature.hpp"
|
||||||
|
#include "modules/user.hpp"
|
||||||
|
|
||||||
waybar::Factory::Factory(const Bar& bar, const Json::Value& config) : bar_(bar), config_(config) {}
|
waybar::Factory::Factory(const Bar& bar, const Json::Value& config) : bar_(bar), config_(config) {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue