mirror of
https://github.com/vale981/Hyprland
synced 2025-03-15 15:06:41 -04:00
13 lines
No EOL
492 B
C++
13 lines
No EOL
492 B
C++
#pragma once
|
|
|
|
#include "../includes.hpp"
|
|
|
|
void addWLSignal(wl_signal*, wl_listener*, void* pOwner, std::string ownerString);
|
|
void wlr_signal_emit_safe(struct wl_signal *signal, void *data);
|
|
std::string getFormat(const char *fmt, ...); // Basically Debug::log to a string
|
|
void scaleBox(wlr_box*, float);
|
|
std::string removeBeginEndSpacesTabs(std::string);
|
|
bool isNumber(const std::string&);
|
|
bool isDirection(const std::string&);
|
|
|
|
float getPlusMinusKeywordResult(std::string in, float relative); |