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