Home
last modified time | relevance | path

Searched refs:CursorColliding (Results 1 – 14 of 14) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/demo/demowin/
Ddemowin_combo_box.cpp40 if (CursorColliding(this->x, this->y, this->width, this->height)) in CursorOver()
56 …if (CursorColliding(this->x, this->y + this->height / 2 + this->height * visibleCount / 2, this->w… in CursorOver()
61 …if (CursorColliding(this->x, this->y - this->height / 2 - this->height * visibleCount / 2, this->w… in CursorOver()
175 …if (CursorColliding(this->x - widthOffset, this->y - (this->height / 2 + this->height * visibleCou… in Update()
204 …if (CursorColliding(this->x, this->y - (this->height / 2 + this->height * visibleCount / 2) * flip… in Update()
230 if (CursorColliding(this->x, this->y, this->width, this->height)) in Update()
Ddemowin_double_combo_box.cpp32 if (CursorColliding(this->x, this->y, this->width, this->height)) in CursorOver()
50 …if (CursorColliding(this->x, this->y - (this->height / 2 + this->height * visibleCount / 2) * flip… in CursorOver()
66 …if (CursorColliding(this->x + this->width / 2, this->y + this->height / 2 - this->height * visible… in CursorOver()
202 …if (CursorColliding(this->x + this->width / 2 - widthOffset, this->y + this->height / 2 - this->he… in Update()
231 …if (CursorColliding(this->x + this->width / 2, this->y + this->height / 2 - this->height * visible… in Update()
317 …if (CursorColliding(this->x - widthOffset, this->y - (this->height / 2 + this->height * visibleCou… in Update()
358 …else if (this->over1 >= 0 && CursorColliding(this->x + this->width / 2 - widthOffset, this->y - (t… in Update()
373 …if (overSecond || CursorColliding(this->x, this->y - (this->height / 2 + this->height * visibleCou… in Update()
404 if (CursorColliding(this->x, this->y, this->width, this->height)) in Update()
Ddemowin_button.cpp39 if (CursorColliding(this->x, this->y, this->width, this->height)) in Update()
Ddemowin_held_button.cpp42 if (CursorColliding(this->x, this->y, this->width, this->height)) in Update()
Ddemowin_scroll_bar.cpp72 if (CursorColliding(this->x, this->y + offY, this->width, this->subHeight)) in Update()
Ddemowin_tab_window.cpp86 if (canUpdate && menu->CursorColliding(0, -height / 2, GetWidth(), height)) in PreUpdate()
Ddemowin_slider_bar.cpp109 if (CursorColliding(this->x + x, this->y, this->height, this->height)) in Update()
Ddemowin_slider_bar_float.cpp109 if (CursorColliding(this->x + x, this->y, this->height, this->height)) in Update()
Ddemowin_manager.cpp163 …if (peripheral->CursorColliding(window, window->GetWidth() / 2 - CLOSEBUTTON_X, window->GetTop() +… in UpdateCloseButton()
309 …overHandle[windowOrder[i]] = peripheral->CursorColliding(window, window->x - window->GetX(), windo… in Update()
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_peripheral.h62 …bool CursorColliding(Window* window, float x, float y, float width, float height, bool ignoreBound…
78 bool CursorColliding(float x, float y, float width, float height) in CursorColliding() function
/CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/
Ddemowin_peripheral.h62 …bool CursorColliding(Window* window, float x, float y, float width, float height, bool ignoreBound…
78 bool CursorColliding(float x, float y, float width, float height) in CursorColliding() function
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/
Ddemowin.h227 bool CursorColliding(float x, float y, float width, float height, bool ignoreBounds = false)
228 … {return window->manager->peripheral->CursorColliding(window, x, y, width, height, ignoreBounds);}
/CafeSDK-2.12.13-1/system/include/cafe/demo/
Ddemowin.h227 bool CursorColliding(float x, float y, float width, float height, bool ignoreBounds = false)
228 … {return window->manager->peripheral->CursorColliding(window, x, y, width, height, ignoreBounds);}
/CafeSDK-2.12.13-1/system/src/lib/demo/
Ddemowin.cpp286 …if (manager->peripheral->CursorColliding(this->GetX(), this->GetTop() - this->GetHeight() / 2, thi… in CursorOver()