mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 11:25:59 +01:00
14 lines
No EOL
556 B
C++
14 lines
No EOL
556 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&);
|
|
int getWorkspaceIDFromString(const std::string&, std::string&);
|
|
|
|
float getPlusMinusKeywordResult(std::string in, float relative); |