polybar-dwm/include/modules/date.hpp

51 lines
1023 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include <atomic>
#include <ctime>
#include <iomanip>
#include <iostream>
#include "modules/meta/timer_module.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
namespace modules {
class date_module : public timer_module<date_module> {
2016-06-15 03:32:35 +00:00
public:
explicit date_module(const bar_settings&, string);
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
bool update();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
static constexpr auto TYPE = "internal/date";
static constexpr auto EVENT_TOGGLE = "toggle";
protected:
void action_toggle();
2016-06-15 03:32:35 +00:00
private:
static constexpr auto TAG_LABEL = "<label>";
2016-06-15 03:32:35 +00:00
2022-02-20 20:40:48 +00:00
// @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;
2016-06-15 03:32:35 +00:00
// Single stringstream to be used to gather the results of std::put_time
std::stringstream datetime_stream;
std::atomic<bool> m_toggled{false};
2016-05-19 14:41:06 +00:00
};
} // namespace modules
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END