1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-03 04:33:30 -05:00
polybar/include/modules/date.hpp
Michael Carlberg 39d3f61497 refactor(core): Clean-up
- use "#pragma once" instead of the regular include guard
- fix errors and warnings reported by cppcheck
2016-06-02 01:32:06 +02:00

30 lines
598 B
C++

#pragma once
#include "modules/base.hpp"
namespace modules
{
DefineModule(DateModule, TimerModule)
{
static constexpr auto TAG_DATE = "<date>";
static constexpr auto EVENT_TOGGLE = "datetoggle";
std::unique_ptr<Builder> builder;
std::string date;
std::string date_detailed;
char date_str[256] = {};
bool detailed = false;
public:
explicit DateModule(const std::string& name);
bool update();
bool build(Builder *builder, const std::string& tag);
std::string get_output();
bool handle_command(const std::string& cmd);
};
}