polybar/include/drawtypes/label.hpp

87 lines
2.6 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include <cassert>
2016-06-15 03:32:35 +00:00
#include "common.hpp"
#include "components/config.hpp"
#include "components/types.hpp"
2016-06-15 03:32:35 +00:00
#include "utils/mixins.hpp"
2016-05-19 14:41:06 +00:00
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 drawtypes {
struct token {
string token;
2016-12-31 03:32:11 +00:00
size_t min{0_z};
size_t max{0_z};
string suffix{""s};
bool zpad{false};
};
Use sockets for IPC (#2539) Deprecates not using `polybar-msg` for IPC. Fixes #2532 Closes #2465 Fixes #2504 * Create FIFO specific NamedPipeHandle subclass to PipeHandle * Prototype SocketHandle * Move mainloop up to main.cpp * Pass eventloop to ipc class * Deprecate sending ipc over the named pipe Unfortunately, we can only show the warning in the polybar log and not give the user any feedback because the pipe is one-way * Move eventloop into its own namespace * Prototype ipc socket handling * Remove handles from ipc_client Should be independent from eventloop logic * Remove ipc clients when finished * Add tests for ipc_client decoding * Add callback for complete ipc messages * Remove template param from mixins * Move signal handler to new callback system * Move poll handle to new callback system * Move FSEventHandle to new callback system * Move TimerHandle and AsyncHandle to new callback system * Move PipeHandle to new callback system * Implement socket functionality in new callback system * Correctly reset ipc named pipe handle * Let client close handles in error callback * Wrap client pipe and ipc::client in connection class * Better decoder log messages * Socket path logic * Fix CI warnings * Remove UVHandleGeneric * Fix error when socket folder already exists * Proof of concept message writeback * Restructure ipc files * polybar-msg: Use sockets * polybar-msg: Better syntax for actions * Fix memory leak with fifo After EOF, the pipe wasn't closed and EOF was called all the time, each time allocating a new pipe. * Make polybar-msg compile on its own * Rudimentary writeback for polybar-msg * Fix payload reference going out of scope. * Add IPC documentation * Cleanup polybar-msg code * Specify the v0 ipc message format * Close ipc connection after message * Fix ipc tests * Properly close ipc connections * Fix polybar-msg not working with action string * Write polybar-msg manpage * polybar-msg: Stop using exit() * ipc: Print log message with PID * Add tests for ipc util * polybar-msg: Print PID with success message * ipc: Propagate message errors * Rename ipc::client to ipc::decoder * Rename ipc.cpp to polybar-msg.cpp * ipc: Write encoder function and fix decoder bugs * ipc: Use message format for responses * ipc: Handle wrong message types * ipc: Write back error message if ipc message cannot be processed This only happens for commands and empty actions. Non-empty actions are not immediately executed, but deferred until the next loop iteration. * Remove TODO about deleting runtime directory The socket file is not deleted after socket.close() is called, only after libuv executes the close callback. So we can't just call rmdir because it will probably always fail. * CLeanup WriteRequest * Update manpage authors * Cleanup
2022-01-22 19:35:37 +00:00
class label : public non_copyable_mixin {
2016-06-15 03:32:35 +00:00
public:
rgba m_foreground{};
rgba m_background{};
rgba m_underline{};
rgba m_overline{};
2016-12-15 02:30:41 +00:00
int m_font{0};
side_values m_padding{0U, 0U};
side_values m_margin{0U, 0U};
size_t m_minlen{0};
/*
* If m_ellipsis is true, m_maxlen MUST be larger or equal to the length of
* the ellipsis (3), everything else is a programming error
*
* load_label should take care of this, but be aware, if you are creating
* labels in a different way.
*/
2016-12-31 03:32:11 +00:00
size_t m_maxlen{0_z};
alignment m_alignment{alignment::LEFT};
2016-12-15 02:30:41 +00:00
bool m_ellipsis{true};
explicit label(string text, int font) : m_font(font), m_text(text), m_tokenized(m_text) {}
explicit label(string text, rgba foreground = rgba{}, rgba background = rgba{}, rgba underline = rgba{},
rgba overline = rgba{}, int font = 0, struct side_values padding = {0U, 0U},
struct side_values margin = {0U, 0U}, int minlen = 0, size_t maxlen = 0_z,
alignment label_alignment = alignment::LEFT, bool ellipsis = true, vector<token>&& tokens = {})
: m_foreground(foreground)
2016-06-15 03:32:35 +00:00
, m_background(background)
, m_underline(underline)
, m_overline(overline)
, m_font(font)
, m_padding(padding)
, m_margin(margin)
, m_minlen(minlen)
2016-06-15 03:32:35 +00:00
, m_maxlen(maxlen)
, m_alignment(label_alignment)
, m_ellipsis(ellipsis)
, m_text(text)
, m_tokenized(m_text)
, m_tokens(forward<vector<token>>(tokens)) {
assert(!m_ellipsis || (m_maxlen == 0 || m_maxlen >= 3));
}
2016-11-02 19:22:45 +00:00
string get() const;
operator bool();
label_t clone();
void clear();
2016-11-02 19:22:45 +00:00
void reset_tokens();
void reset_tokens(const string& tokenized);
bool has_token(const string& token) const;
2016-11-25 12:55:15 +00:00
void replace_token(const string& token, string replacement);
2016-11-02 19:22:45 +00:00
void replace_defined_values(const label_t& label);
void copy_undefined(const label_t& label);
2016-10-25 05:10:03 +00:00
private:
2016-12-15 02:30:41 +00:00
string m_text{};
string m_tokenized{};
const vector<token> m_tokens{};
2016-05-19 14:41:06 +00:00
};
2016-12-31 03:32:11 +00:00
label_t load_label(const config& conf, const string& section, string name, bool required = true, string def = ""s);
label_t load_optional_label(const config& conf, string section, string name, string def = ""s);
} // namespace drawtypes
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END