mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
352 B
C++
17 lines
352 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pTextEdit : public pWidget {
|
||
|
TextEdit &textEdit;
|
||
|
|
||
|
void setCursorPosition(unsigned position);
|
||
|
void setEditable(bool editable);
|
||
|
void setText(const string &text);
|
||
|
void setWordWrap(bool wordWrap);
|
||
|
string text();
|
||
|
|
||
|
pTextEdit(TextEdit &textEdit) : pWidget(textEdit), textEdit(textEdit) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|