2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:47:42 +00:00

SplitView updates; work on FileBrowser

This commit is contained in:
Jack Andersen
2015-12-21 15:33:27 -10:00
parent af56be4ac1
commit b00635e09e
9 changed files with 261 additions and 59 deletions

View File

@@ -143,13 +143,13 @@ void TextField::mouseMove(const boo::SWindowCoord& coord)
void TextField::mouseEnter(const boo::SWindowCoord& coord)
{
setHover();
rootView().window()->setCursor(boo::EMouseCursor::IBeam);
rootView().setTextFieldHover(true);
}
void TextField::mouseLeave(const boo::SWindowCoord& coord)
{
setInactive();
rootView().window()->setCursor(boo::EMouseCursor::Pointer);
rootView().setTextFieldHover(false);
}
void TextField::charKeyDown(unsigned long charCode, boo::EModifierKey mods, bool isRepeat)