本文整理汇总了C++中UIManager::Button2Up方法的典型用法代码示例。如果您正苦于以下问题:C++ UIManager::Button2Up方法的具体用法?C++ UIManager::Button2Up怎么用?C++ UIManager::Button2Up使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIManager
的用法示例。
在下文中一共展示了UIManager::Button2Up方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MouseUp
// ---------------------------------------------------------------------
//! Called when user releases a mouse button.
// ---------------------------------------------------------------------
void BeSkinView::MouseUp(
BPoint where //!< location of the cursor
)
{
if (0 == lastPressedMouseButton)
{
return;
}
UIManager* uiManager = getUIManager();
ASSERT(NULL != uiManager);
if (NULL != uiManager)
{
if (1 == lastPressedMouseButton)
{
uiManager->Button1Up();
}
else if (2 == lastPressedMouseButton)
{
uiManager->Button2Up();
}
}
lastPressedMouseButton = 0;
}
示例2: getUIManager
// ---------------------------------------------------------------------
LRESULT WinSkinWindow::onRButtonUp(
HWND hWnd, //!< ウィンドウハンドル
UINT uMsg, //!< WM_RBUTTONUP
WPARAM wParam, //!< 様々な仮想キーが押されているかどうのフラグ
LPARAM lParam //!< 下位ワードがマウスカーソルの X 座標、上位ワードが Y 座標
)
{
base::wndProc(hWnd, uMsg, wParam, lParam);
mousePosition.x = GET_X_LPARAM(lParam);
mousePosition.y = GET_Y_LPARAM(lParam);
mousePositionAvailable = true;
UIManager* uiManager = getUIManager();
ASSERT(NULL != uiManager);
if (NULL != uiManager)
{
uiManager->Button2Up();
}
return 0;
}