-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControlPanel.cpp
48 lines (36 loc) · 924 Bytes
/
ControlPanel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <QtGui>
#include <math.h>
#include "GameInfo.h"
#include "ControlPanel.h"
ControlPanel::ControlPanel(GameInfo *info, QWidget *parent)
: QWidget(parent)
{
Info = info;
}
ControlPanel::~ControlPanel()
{
}
QSize ControlPanel::minimumSizeHint() const
{
return QSize(100, 100);
}
QSize ControlPanel::sizeHint() const
{
return QSize(1400, 200);
}
void ControlPanel::paintEvent(QPaintEvent * /* event */)
{
}
void ControlPanel::mousePressEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton) {} // Start select (position_on_screen + view_position)
else if (event->buttons() & Qt::RightButton) {} // Send order
}
void ControlPanel::mouseReleaseEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton) {} // End select (position_on_screen + view_position)
else if (event->buttons() & Qt::RightButton) {} /// Order sended
}
void ControlPanel::mouseMoveEvent(QMouseEvent *event)
{
}