本文整理汇总了C++中UIManager::MouseMove方法的典型用法代码示例。如果您正苦于以下问题:C++ UIManager::MouseMove方法的具体用法?C++ UIManager::MouseMove怎么用?C++ UIManager::MouseMove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UIManager
的用法示例。
在下文中一共展示了UIManager::MouseMove方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MouseMoved
// ---------------------------------------------------------------------
//! Called when user moves the mouse cursor.
// ---------------------------------------------------------------------
void BeSkinView::MouseMoved(
BPoint where, //!< location of the cursor
uint32 code, //!< enter or exit view, inside or outside view
const BMessage *a_message //!< message if user is dragging
)
{
UIManager* uiManager = getUIManager();
ASSERT(NULL != uiManager);
if (NULL != uiManager)
{
uiManager->MouseMove();
}
}
示例2: onMouseMove
// ---------------------------------------------------------------------
LRESULT WinSkinWindow::onMouseMove(
HWND hWnd, //!< ウィンドウハンドル
UINT uMsg, //!< WM_MOUSEMOVE
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->MouseMove();
}
return 0;
}