btop/src/btop_draw.hpp
aristocratos 5d4e2ce182 Loads...
2021-07-21 03:17:34 +02:00

72 lines
2.4 KiB
C++

/* Copyright 2021 Aristocratos (jakob@qvantnet.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
indent = tab
tab-size = 4
*/
#pragma once
#include <string>
#include <vector>
#include <robin_hood.h>
#include <deque>
using std::string, std::vector, robin_hood::unordered_flat_map, std::deque;
namespace Draw {
//* Create a box and return as a string
string createBox(int x, int y, int width, int height, string line_color="", bool fill=false, string title="", string title2="", int num=0);
//* Class holding a percentage meter
class Meter {
string color_gradient;
int width = 0;
bool invert = false;
vector<string> cache;
public:
//* Set meter options
void operator()(int width, string color_gradient, bool invert = false);
//* Return a string representation of the meter with given value
string operator()(int value);
};
//* Class holding a percentage graph
class Graph {
string out, color_gradient, symbol = "default";
int width = 0, height = 0;
long long last = 0, max_value = 0, offset = 0;
bool current = true, no_zero = false, invert = false, tty_mode = false;
unordered_flat_map<bool, vector<string>> graphs = { {true, {}}, {false, {}}};
//* Create two representations of the graph to switch between to represent two values for each braille character
void _create(const deque<long long>& data, int data_offset);
public:
//* Set graph options and initialize with data
void operator()(int width, int height, string color_gradient, const deque<long long>& data, string symbol="default", bool invert=false, bool no_zero=false, long long max_value=0, long long offset=0);
//* Add last value from back of <data> and return string representation of graph
string& operator()(const deque<long long>& data, bool data_same=false);
//* Return string representation of graph
string& operator()();
};
//* Calculate sizes of boxes, draw outlines and save to enabled boxes namespaces
void calcSizes();
}