mirror of https://github.com/bsnes-emu/bsnes.git
50 lines
1.1 KiB
C++
Executable File
50 lines
1.1 KiB
C++
Executable File
namespace phoenix {
|
|
|
|
Size pLineEdit::minimumSize() {
|
|
Size size = pFont::size(qtWidget->font(), lineEdit.state.text);
|
|
return {size.width + 12, size.height + 12};
|
|
}
|
|
|
|
void pLineEdit::setEditable(bool editable) {
|
|
qtLineEdit->setReadOnly(!editable);
|
|
}
|
|
|
|
void pLineEdit::setText(const string& text) {
|
|
qtLineEdit->setText(QString::fromUtf8(text));
|
|
}
|
|
|
|
string pLineEdit::text() {
|
|
return qtLineEdit->text().toUtf8().constData();
|
|
}
|
|
|
|
void pLineEdit::constructor() {
|
|
qtWidget = qtLineEdit = new QLineEdit;
|
|
connect(qtLineEdit, SIGNAL(returnPressed()), SLOT(onActivate()));
|
|
connect(qtLineEdit, SIGNAL(textEdited(const QString&)), SLOT(onChange()));
|
|
|
|
pWidget::synchronizeState();
|
|
setEditable(lineEdit.state.editable);
|
|
setText(lineEdit.state.text);
|
|
}
|
|
|
|
void pLineEdit::destructor() {
|
|
delete qtLineEdit;
|
|
qtWidget = qtLineEdit = nullptr;
|
|
}
|
|
|
|
void pLineEdit::orphan() {
|
|
destructor();
|
|
constructor();
|
|
}
|
|
|
|
void pLineEdit::onActivate() {
|
|
if(lineEdit.onActivate) lineEdit.onActivate();
|
|
}
|
|
|
|
void pLineEdit::onChange() {
|
|
lineEdit.state.text = text();
|
|
if(lineEdit.onChange) lineEdit.onChange();
|
|
}
|
|
|
|
}
|