2017-10-09 08:35:48 +02:00
|
|
|
/*****************************************************************************
|
2018-05-24 22:32:00 +02:00
|
|
|
* gta5view Grand Theft Auto V Profile Viewer
|
2017-10-09 08:35:48 +02:00
|
|
|
* Copyright (C) 2017 Syping
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2017-11-12 15:58:59 +01:00
|
|
|
#ifndef MAPLOCATIONDIALOG_H
|
|
|
|
#define MAPLOCATIONDIALOG_H
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
#include <QDialog>
|
2017-11-12 15:58:59 +01:00
|
|
|
#include <QMouseEvent>
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
2017-11-12 15:58:59 +01:00
|
|
|
class MapLocationDialog;
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
2017-11-12 15:58:59 +01:00
|
|
|
class MapLocationDialog : public QDialog
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-11-12 15:58:59 +01:00
|
|
|
explicit MapLocationDialog(double x, double y, QWidget *parent = 0);
|
2017-10-09 08:35:48 +02:00
|
|
|
void drawPointOnMap(double x, double y);
|
2017-11-12 15:58:59 +01:00
|
|
|
bool propUpdated();
|
|
|
|
double getXpos();
|
|
|
|
double getYpos();
|
|
|
|
~MapLocationDialog();
|
|
|
|
|
|
|
|
protected:
|
2020-08-25 12:52:45 +02:00
|
|
|
void paintEvent(QPaintEvent *ev);
|
2017-11-12 15:58:59 +01:00
|
|
|
void mouseMoveEvent(QMouseEvent *ev);
|
|
|
|
void mouseReleaseEvent(QMouseEvent *ev);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_cmdDone_clicked();
|
|
|
|
void on_cmdApply_clicked();
|
|
|
|
void on_cmdChange_clicked();
|
|
|
|
void on_cmdRevert_clicked();
|
|
|
|
void updatePosFromEvent(int x, int y);
|
|
|
|
void on_cmdClose_clicked();
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
private:
|
2017-11-12 15:58:59 +01:00
|
|
|
double xpos_old;
|
|
|
|
double ypos_old;
|
|
|
|
double xpos_new;
|
|
|
|
double ypos_new;
|
|
|
|
bool propUpdate;
|
|
|
|
bool changeMode;
|
2017-11-22 14:59:40 +01:00
|
|
|
Ui::MapLocationDialog *ui;
|
2017-10-09 08:35:48 +02:00
|
|
|
};
|
|
|
|
|
2017-11-12 15:58:59 +01:00
|
|
|
#endif // MAPLOCATIONDIALOG_H
|