summaryrefslogtreecommitdiff
path: root/noncore/games/backgammon/backgammonview.cpp
blob: ecbc12b58e6e0196ba8764fa54d92c79e6503e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "backgammonview.h"

BackGammonView::BackGammonView(QCanvas* canvas,QWidget* parent)
    :QCanvasView(canvas,parent)
{
}

BackGammonView::~BackGammonView()
{
}

void BackGammonView::contentsMousePressEvent(QMouseEvent* e)
{
    int x=e->x();
	int y=e->y();
	//emit mousepressed(x,y);
}