mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
26be83f893
* 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
49 lines
1,006 B
C++
49 lines
1,006 B
C++
#pragma once
|
|
|
|
#include <ctime>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
|
|
#include "modules/meta/timer_module.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
class date_module : public timer_module<date_module> {
|
|
public:
|
|
explicit date_module(const bar_settings&, string);
|
|
|
|
bool update();
|
|
bool build(builder* builder, const string& tag) const;
|
|
|
|
static constexpr auto TYPE = "internal/date";
|
|
|
|
static constexpr auto EVENT_TOGGLE = "toggle";
|
|
|
|
protected:
|
|
void action_toggle();
|
|
|
|
private:
|
|
static constexpr auto TAG_LABEL = "<label>";
|
|
|
|
// \deprecated: Use <label>
|
|
static constexpr auto TAG_DATE = "<date>";
|
|
|
|
label_t m_label;
|
|
|
|
string m_dateformat;
|
|
string m_dateformat_alt;
|
|
string m_timeformat;
|
|
string m_timeformat_alt;
|
|
|
|
string m_date;
|
|
string m_time;
|
|
|
|
// Single stringstream to be used to gather the results of std::put_time
|
|
std::stringstream datetime_stream;
|
|
|
|
std::atomic<bool> m_toggled{false};
|
|
};
|
|
} // namespace modules
|
|
|
|
POLYBAR_NS_END
|