-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgsgeorefconfigdialog.h
39 lines (32 loc) · 1.38 KB
/
qgsgeorefconfigdialog.h
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
/***************************************************************************
qgsgeorefconfigdialog.h
--------------------------------------
Date : 14-Feb-2010
Copyright : (C) 2010 by Jack R, Maxim Dubinin (GIS-Lab)
Email : sim@gis-lab.info
***************************************************************************
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
/* $Id$ */
#ifndef QGSGEOREFCONFIGDIALOG_H
#define QGSGEOREFCONFIGDIALOG_H
#include "ui_qgsgeorefconfigdialogbase.h"
class QgsGeorefConfigDialog : public QDialog, private Ui::QgsGeorefConfigDialogBase {
Q_OBJECT
public:
QgsGeorefConfigDialog(QWidget *parent = 0);
protected:
void changeEvent(QEvent *e);
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
void readSettings();
void writeSettings();
};
#endif // QGSGEOREFCONFIGDIALOG_H