gta5view/MapLocationDialog.h

74 lines
2.1 KiB
C
Raw Normal View History

2017-10-09 08:35:48 +02:00
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
2021-02-15 23:12:44 +01:00
* Copyright (C) 2017-2021 Syping
2017-10-09 08:35:48 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#ifndef MAPLOCATIONDIALOG_H
#define MAPLOCATIONDIALOG_H
2017-10-09 08:35:48 +02:00
#include <QDialog>
#include <QMouseEvent>
2017-10-09 08:35:48 +02:00
namespace Ui {
class MapLocationDialog;
2017-10-09 08:35:48 +02:00
}
class MapLocationDialog : public QDialog
2017-10-09 08:35:48 +02:00
{
Q_OBJECT
public:
explicit MapLocationDialog(double x, double y, QWidget *parent = 0);
2017-10-09 08:35:48 +02:00
void drawPointOnMap(double x, double y);
2021-02-15 23:12:44 +01:00
void setCayoPerico(bool isCayoPerico);
bool propUpdated();
double getXpos();
double getYpos();
~MapLocationDialog();
protected:
void paintEvent(QPaintEvent *ev);
void mouseMoveEvent(QMouseEvent *ev);
2021-02-26 19:59:05 +01:00
void mousePressEvent(QMouseEvent *ev);
void mouseReleaseEvent(QMouseEvent *ev);
2021-02-26 19:59:05 +01:00
void wheelEvent(QWheelEvent *ev);
private slots:
void on_cmdApply_clicked();
2021-02-26 19:59:05 +01:00
void on_cmdDone_clicked();
void on_cmdClose_clicked();
void on_cmdChange_clicked();
void on_cmdRevert_clicked();
2020-10-11 17:46:45 +02:00
void updatePosFromEvent(double x, double y);
2017-10-09 08:35:48 +02:00
private:
2021-02-26 19:59:05 +01:00
int zoomPercent;
double xpos_old;
double ypos_old;
double xpos_new;
double ypos_new;
2021-02-26 19:59:05 +01:00
bool dragStart;
bool propUpdate;
bool changeMode;
2021-02-15 23:12:44 +01:00
bool p_isCayoPerico;
2021-02-26 19:59:05 +01:00
QImage mapImage;
QPointF dragPosition;
QPointF mapDiffPosition;
Ui::MapLocationDialog *ui;
2017-10-09 08:35:48 +02:00
};
#endif // MAPLOCATIONDIALOG_H