2013-03-15 13:11:33 +00:00
|
|
|
namespace phoenix {
|
|
|
|
|
|
|
|
struct pLineEdit : public pWidget {
|
2013-05-02 11:25:45 +00:00
|
|
|
LineEdit& lineEdit;
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
void setEditable(bool editable);
|
2013-05-02 11:25:45 +00:00
|
|
|
void setText(const string& text);
|
2013-03-15 13:11:33 +00:00
|
|
|
string text();
|
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
pLineEdit(LineEdit& lineEdit) : pWidget(lineEdit), lineEdit(lineEdit) {}
|
2013-03-15 13:11:33 +00:00
|
|
|
void constructor();
|
2013-03-21 12:59:01 +00:00
|
|
|
void destructor();
|
2013-03-15 13:11:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|