polybar-dwm/include/modules/date.hpp
2017-09-15 14:13:35 +02:00

46 lines
943 B
C++

#pragma once
#include "modules/meta/input_handler.hpp"
#include "modules/meta/timer_module.hpp"
#include <iostream>
#include <iomanip>
#include <ctime>
POLYBAR_NS
namespace modules {
class date_module : public timer_module<date_module>, public input_handler {
public:
explicit date_module(const bar_settings&, string);
bool update();
bool build(builder* builder, const string& tag) const;
protected:
bool input(string&& cmd);
private:
static constexpr auto TAG_LABEL = "<label>";
static constexpr auto EVENT_TOGGLE = "datetoggle";
// @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;
std::atomic<bool> m_toggled{false};
void set_stream_locale(std::stringstream &stream);
};
}
POLYBAR_NS_END