deskflow/src/lib/gui/StringUtils.h

27 lines
579 B
C

/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2024 Symless Ltd.
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#include <QString>
/**
* @brief Useful for environment variables that have string boolean values.
*/
inline bool strToTrue(const QString &str)
{
return str.toLower() == "true" || str == "1";
}
inline QString trimEnd(const QString &str)
{
QString result = str;
while (!result.isEmpty() && result.at(result.size() - 1).isSpace()) {
result.chop(1);
}
return result;
}