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