mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
25 lines
366 B
C++
25 lines
366 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <QtWidgets/QDialog>
|
|
|
|
class Framework;
|
|
|
|
namespace qt
|
|
{
|
|
class PreferencesDialog : public QDialog
|
|
{
|
|
typedef QDialog base_t;
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PreferencesDialog(QWidget * parent, Framework & framework);
|
|
};
|
|
} // namespace qt
|
|
|
|
#ifdef BUILD_DESIGNER
|
|
extern std::string const kEnabledAutoRegenGeomIndex;
|
|
#endif
|