1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2025-04-14 17:33:17 -04:00
polybar/src
Patrick Ziegler 26be83f893
module: Implement action router (#2336)
* module: Implement proof of concept action router

Action implementation inside module becomes much cleaner because each
module just registers action names together with a callback (pointer to
member function) and the action router does the rest.

* Make input function final

This forces all modules to use the action router

* modules: Catch exceptions in action handlers

* Use action router for all modules

* Use action_ prefix for function names

The mpd module's 'stop' action overwrote the base module's stop function
which caused difficult to debug behavior.

To prevent this in the future we now prefix each function that is
responsible for an action with 'action_'

* Cleanup

* actions: Throw exception when re-registering action

Action names are unique inside modules. Unfortunately there is no way to
ensure this statically, the next best thing is to crash the module and
let the user know that this is a bug.

* Formatting

* actions: Ignore data for actions without data

This is the same behavior as before.

* action_router: Write tests
2021-01-04 10:25:52 +01:00
..
adapters feat(net): interface discovery (#2025) 2021-01-03 11:48:15 +01:00
cairo doc: Convert @ to \ doxygen commands 2018-11-04 19:28:27 -08:00
components module: Implement action router (#2336) 2021-01-04 10:25:52 +01:00
drawtypes feat: Warn state for cpu, memory, fs, battery modules (#2199) 2020-12-02 15:55:13 +01:00
events refactor(signals): Avoid reinterpret_cast 2017-01-01 20:31:09 +01:00
modules module: Implement action router (#2336) 2021-01-04 10:25:52 +01:00
tags New Tag Parser (#2303) 2020-12-17 20:37:28 +01:00
utils feat(config): Try to load config.ini (#2324) 2020-12-23 17:52:30 +01:00
x11 feat(xkeyboard): Add variant support to layout label (#2163) 2020-12-19 18:22:27 +01:00
CMakeLists.txt Add cmake files for configuring individual targets 2020-12-24 02:20:38 +01:00
ipc.cpp refactor(cmake): Allow targets to be enabled individually 2020-12-24 02:20:38 +01:00
main.cpp logger: Add default logging level 'notice' 2020-04-22 00:38:31 +02:00
settings.cpp.cmake build: Move all possible variables into settings.cpp 2019-11-01 11:12:40 +01:00