2011-04-30 13:12:15 +00:00
|
|
|
Geometry pLineEdit::minimumGeometry() {
|
|
|
|
Font &font = this->font();
|
|
|
|
Geometry geometry = font.geometry(lineEdit.state.text);
|
|
|
|
return { 0, 0, geometry.width + 12, geometry.height + 12 };
|
|
|
|
}
|
|
|
|
|
2011-02-27 09:11:01 +00:00
|
|
|
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()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void pLineEdit::onActivate() {
|
|
|
|
if(lineEdit.onActivate) lineEdit.onActivate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void pLineEdit::onChange() {
|
|
|
|
lineEdit.state.text = text();
|
|
|
|
if(lineEdit.onChange) lineEdit.onChange();
|
|
|
|
}
|