2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "drawtypes/animation.hpp"
|
|
|
|
#include "drawtypes/bar.hpp"
|
|
|
|
#include "drawtypes/icon.hpp"
|
|
|
|
#include "drawtypes/label.hpp"
|
|
|
|
#include "drawtypes/ramp.hpp"
|
|
|
|
|
|
|
|
#define DEFAULT_SPACING -1
|
|
|
|
|
|
|
|
class Lemonbuddy;
|
|
|
|
|
|
|
|
class Builder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Alignment {
|
|
|
|
ALIGN_NONE,
|
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
ALIGN_RIGHT,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string output;
|
|
|
|
bool lazy_closing = true;
|
|
|
|
|
|
|
|
Alignment alignment = ALIGN_NONE;
|
|
|
|
|
|
|
|
// counters
|
|
|
|
int A = 0, B = 0, F = 0, T = 0, U = 0, o = 0, u = 0;
|
|
|
|
int T_value = 1;
|
|
|
|
std::string B_value = "", F_value = "", U_value = "";
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void tag_open(char tag, std::string value);
|
2016-05-19 10:41:06 -04:00
|
|
|
void tag_close(char tag);
|
|
|
|
|
|
|
|
void align_left();
|
|
|
|
void align_center();
|
|
|
|
void align_right();
|
|
|
|
|
|
|
|
public:
|
2016-05-30 23:58:58 -04:00
|
|
|
explicit Builder(bool lazy_closing = true) : lazy_closing(lazy_closing){}
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
void set_lazy_closing(bool mode) { this->lazy_closing = mode; }
|
|
|
|
|
|
|
|
std::string flush();
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void append(std::string node);
|
|
|
|
void append_module_output(Alignment alignment, std::string module_output, bool margin_left = true, bool margin_right = true);
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void node(std::string str, bool add_space = false);
|
|
|
|
void node(std::string str, int font_index, bool add_space = false);
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
void node(drawtypes::Bar *bar, float percentage, bool add_space = false);
|
|
|
|
void node(std::unique_ptr<drawtypes::Bar> &bar, float percentage, bool add_space = false);
|
|
|
|
|
|
|
|
void node(drawtypes::Label *label, bool add_space = false);
|
|
|
|
void node(std::unique_ptr<drawtypes::Label> &label, bool add_space = false);
|
|
|
|
|
|
|
|
void node(drawtypes::Icon *icon, bool add_space = false);
|
|
|
|
void node(std::unique_ptr<drawtypes::Icon> &icon, bool add_space = false);
|
|
|
|
|
|
|
|
void node(drawtypes::Ramp *ramp, float percentage, bool add_space = false);
|
|
|
|
void node(std::unique_ptr<drawtypes::Ramp> &ramp, float percentage, bool add_space = false);
|
|
|
|
|
|
|
|
void node(drawtypes::Animation *animation, bool add_space = false);
|
|
|
|
void node(std::unique_ptr<drawtypes::Animation> &animation, bool add_space = false);
|
|
|
|
|
|
|
|
void offset(int pixels = 0);
|
|
|
|
void space(int width = DEFAULT_SPACING);
|
|
|
|
void remove_trailing_space(int width = DEFAULT_SPACING);
|
|
|
|
|
|
|
|
void font(int index);
|
|
|
|
void font_close(bool force = false);
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void background(std::string color);
|
2016-05-19 10:41:06 -04:00
|
|
|
void background_close(bool force = false);
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void color(std::string color);
|
|
|
|
void color_alpha(std::string alpha);
|
2016-05-19 10:41:06 -04:00
|
|
|
void color_close(bool force = false);
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void line_color(std::string color);
|
2016-05-19 10:41:06 -04:00
|
|
|
void line_color_close(bool force = false);
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void overline(std::string color = "");
|
2016-05-19 10:41:06 -04:00
|
|
|
void overline_close(bool force = false);
|
|
|
|
|
2016-06-20 21:59:43 -04:00
|
|
|
void underline(std::string color = "");
|
2016-05-19 10:41:06 -04:00
|
|
|
void underline_close(bool force = false);
|
|
|
|
|
2016-05-30 23:58:58 -04:00
|
|
|
// void invert();
|
2016-05-19 10:41:06 -04:00
|
|
|
|
|
|
|
void cmd(int button, std::string action, bool condition = true);
|
|
|
|
void cmd_close(bool force = false);
|
|
|
|
};
|