コード例 #1
0
ファイル: UITexture.cpp プロジェクト: Deamon87/Noggit3Fork
UIFrame *UITexture::processLeftClick(float /*mx*/, float /*my*/)
{
	if (clickFunc)
	{
		clickFunc(this, id);
		return this;
	}
	return 0;
}
コード例 #2
0
ファイル: hgeGUIMenuItem.cpp プロジェクト: spidamoo/sod
bool hgeGUIMenuItem::MouseLButton(bool bDown) {
    if (!bDown) {
        clickFunc(this);
        isPressed = false;
        return true;
    }
    else {
        isPressed = true;
        return false;
    }
}