polybar-dwm/src/components
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
..
bar.cpp New Tag Parser (#2303) 2020-12-17 20:37:28 +01:00
builder.cpp New Tag Parser (#2303) 2020-12-17 20:37:28 +01:00
command_line.cpp refactor(clang-tidy): Apply fixes 2017-01-24 08:01:04 +01:00
config.cpp fix(config): Don't treat an empty value as invalid (#2315) 2020-12-18 23:33:03 +01:00
config_parser.cpp config: Better error messages when opening files 2020-11-26 21:06:35 +01:00
controller.cpp module: Implement action router (#2336) 2021-01-04 10:25:52 +01:00
ipc.cpp ipc: Remove unused global setting 2019-11-01 11:12:40 +01:00
logger.cpp fix(logger): Wrong conversion function called 2020-12-12 01:43:12 +01:00
renderer.cpp New Tag Parser (#2303) 2020-12-17 20:37:28 +01:00
screen.cpp logger: Downgrade some warning messages 2020-04-22 00:38:31 +02:00
taskqueue.cpp wip: Window autohide 2016-12-21 04:50:43 +01:00