mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 09:54:54 -05:00
The "core" macro conditions and actions have been extracted out to the "base" plugin. The library now mostly contains functionality which is required across all plugins and (e.g. definitions for macro segments). The goal is to reduce the complexity and cross-dependencies and group the source files in a better way. This should relsove the "library limit of 65535 objects exceeded" build issue occuring in some Windows build environments.
75 lines
1.8 KiB
C++
75 lines
1.8 KiB
C++
#include "name-dialog.hpp"
|
|
|
|
#include <QVBoxLayout>
|
|
#include <QDialogButtonBox>
|
|
|
|
namespace advss {
|
|
|
|
AdvSSNameDialog::AdvSSNameDialog(QWidget *parent) : QDialog(parent)
|
|
{
|
|
setModal(true);
|
|
setWindowModality(Qt::WindowModality::WindowModal);
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
setFixedWidth(555);
|
|
setMinimumHeight(100);
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
setLayout(layout);
|
|
|
|
label = new QLabel(this);
|
|
layout->addWidget(label);
|
|
label->setText("Set Text");
|
|
|
|
userText = new QLineEdit(this);
|
|
layout->addWidget(userText);
|
|
|
|
QDialogButtonBox *buttonbox = new QDialogButtonBox(
|
|
QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
layout->addWidget(buttonbox);
|
|
buttonbox->setCenterButtons(true);
|
|
connect(buttonbox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
|
connect(buttonbox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
}
|
|
|
|
static bool IsWhitespace(char ch)
|
|
{
|
|
return ch == ' ' || ch == '\t';
|
|
}
|
|
|
|
static void CleanWhitespace(std::string &str)
|
|
{
|
|
while (str.size() && IsWhitespace(str.back()))
|
|
str.erase(str.end() - 1);
|
|
while (str.size() && IsWhitespace(str.front()))
|
|
str.erase(str.begin());
|
|
}
|
|
|
|
bool AdvSSNameDialog::AskForName(QWidget *parent, const QString &title,
|
|
const QString &text,
|
|
std::string &userTextInput,
|
|
const QString &placeHolder, int maxSize,
|
|
bool clean)
|
|
{
|
|
if (maxSize <= 0 || maxSize > 32767) {
|
|
maxSize = 170;
|
|
}
|
|
|
|
AdvSSNameDialog dialog(parent);
|
|
dialog.setWindowTitle(title);
|
|
|
|
dialog.label->setText(text);
|
|
dialog.userText->setMaxLength(maxSize);
|
|
dialog.userText->setText(placeHolder);
|
|
dialog.userText->selectAll();
|
|
|
|
if (dialog.exec() != DialogCode::Accepted) {
|
|
return false;
|
|
}
|
|
userTextInput = dialog.userText->text().toUtf8().constData();
|
|
if (clean) {
|
|
CleanWhitespace(userTextInput);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
} // namespace advss
|