cocos2d-x中如何获取当前鼠标的坐标?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cocos2d-x中如何获取当前鼠标的坐标?相关的知识,希望对你有一定的参考价值。
参考技术A 先添加触屏事件然后在ccTouchEnded方法里
CCPoint endPoint = pTouch->getLocation();
就可以了 参考技术B 鼠标位置和触控位置是一样的,详见触控。
http://codingnow.cn/cocos2d-x/783.html本回答被提问者采纳
QT中如何获取QTableView当前行的坐标
因为需要不是用鼠标来点击的,而是用键盘操作的,所以需要获得当前qtableview中被选中那行的坐标,但是在QTableView中没有发现这类方法,有其他的办法获取吗?或者本来就没有办法获取
参考技术A The method selectionModel() return a QItemSelectionModel.You can use QItemSelectionModel class to check/change/other selection(s)
Example:
QItemSelectionModel *select = yourTableview->selectionModel();
select->hasSelection() //check if has selection
select->selectedRows() // return selected row(s)
select->selectedColumns() // return selected column(s)
Example:
QModelIndexList indexList = yourTableView->selectionModel()->selectedIndexes();
int row;
foreach (QModelIndex index, indexList)
row = index.row();
....
追问
但是我要的是坐标QPoint
以上是关于cocos2d-x中如何获取当前鼠标的坐标?的主要内容,如果未能解决你的问题,请参考以下文章