mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
40 lines
918 B
C
40 lines
918 B
C
|
#ifndef LOCATIONINFORMATION_H
|
||
|
#define LOCATIONINFORMATION_H
|
||
|
|
||
|
#include "ui_locationInformation.h"
|
||
|
#include <stdint.h>
|
||
|
|
||
|
class LocationInformationWidget : public QGroupBox {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
LocationInformationWidget(QWidget *parent = 0);
|
||
|
|
||
|
public slots:
|
||
|
void acceptChanges();
|
||
|
void rejectChanges();
|
||
|
|
||
|
void showEvent(QShowEvent *);
|
||
|
|
||
|
void setLocationId(uint32_t uuid);
|
||
|
void updateGpsCoordinates(void);
|
||
|
void markChangedWidget(QWidget *w);
|
||
|
void enableEdition();
|
||
|
void resetState();
|
||
|
void resetPallete();
|
||
|
|
||
|
void on_diveSiteCoordinates_textChanged(const QString& text);
|
||
|
void on_diveSiteDescription_textChanged(const QString& text);
|
||
|
void on_diveSiteName_textChanged(const QString& text);
|
||
|
void on_diveSiteNotes_textChanged();
|
||
|
signals:
|
||
|
void informationManagementEnded();
|
||
|
|
||
|
private:
|
||
|
struct dive_site *currentDs;
|
||
|
Ui::LocationInformation ui;
|
||
|
bool modified;
|
||
|
QAction *closeAction, *acceptAction, *rejectAction;
|
||
|
};
|
||
|
|
||
|
#endif
|