mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
mobile-widgets: remove setTimeThreshold from system
Use qPrefLocationService::set_time_threshold and remove from qmlprefs.cpp and qmlmanager.cpp Remark: mobile UI shows time in minutes, while it is stored (and calculated) in seconds. Therefore a /60 when reading and *60 when setting. Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
504e912512
commit
51bc41b517
5 changed files with 3 additions and 34 deletions
|
@ -293,11 +293,10 @@ Kirigami.ScrollablePage {
|
|||
|
||||
Controls.TextField {
|
||||
id: timeThreshold
|
||||
text: prefs.timeThreshold
|
||||
text: PrefLocationService.time_threshold / 60
|
||||
Layout.preferredWidth: gridWidth * 0.25
|
||||
onEditingFinished: {
|
||||
prefs.timeThreshold = timeThreshold.text
|
||||
manager.savePreferences()
|
||||
PrefLocationService.time_threshold = timeThreshold.text * 60
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -406,7 +406,6 @@ void QMLManager::finishSetup()
|
|||
appendTextToLog(tr("no cloud credentials"));
|
||||
setStartPageText(RED_FONT + tr("Please enter valid cloud credentials.") + END_FONT);
|
||||
}
|
||||
QMLPrefs::instance()->setTimeThreshold(qPrefLocationService::time_threshold() / 60);
|
||||
}
|
||||
|
||||
QMLManager::~QMLManager()
|
||||
|
@ -423,11 +422,6 @@ QMLManager *QMLManager::instance()
|
|||
return m_instance;
|
||||
}
|
||||
|
||||
void QMLManager::savePreferences()
|
||||
{
|
||||
qPrefLocationService::set_time_threshold(QMLPrefs::instance()->timeThreshold() * 60);
|
||||
}
|
||||
|
||||
#define CLOUDURL QString(prefs.cloud_base_url)
|
||||
#define CLOUDREDIRECTURL CLOUDURL + "/cgi-bin/redirect.pl"
|
||||
|
||||
|
|
|
@ -146,7 +146,6 @@ public:
|
|||
public slots:
|
||||
void appInitialized();
|
||||
void applicationStateChanged(Qt::ApplicationState state);
|
||||
void savePreferences();
|
||||
void saveCloudCredentials();
|
||||
void tryRetrieveDataFromBackend();
|
||||
void handleError(QNetworkReply::NetworkError nError);
|
||||
|
|
|
@ -12,8 +12,7 @@ QMLPrefs *QMLPrefs::m_instance = NULL;
|
|||
QMLPrefs::QMLPrefs() :
|
||||
m_credentialStatus(qPrefCloudStorage::CS_UNKNOWN),
|
||||
m_oldStatus(qPrefCloudStorage::CS_UNKNOWN),
|
||||
m_showPin(false),
|
||||
m_timeThreshold(60)
|
||||
m_showPin(false)
|
||||
{
|
||||
// This strange construct is needed because QMLEngine calls new and that
|
||||
// cannot be overwritten
|
||||
|
@ -109,18 +108,6 @@ void QMLPrefs::setShowPin(bool enable)
|
|||
emit showPinChanged();
|
||||
}
|
||||
|
||||
int QMLPrefs::timeThreshold() const
|
||||
{
|
||||
return m_timeThreshold;
|
||||
}
|
||||
|
||||
void QMLPrefs::setTimeThreshold(int time)
|
||||
{
|
||||
m_timeThreshold = time;
|
||||
GpsLocation::instance()->setGpsTimeThreshold(m_timeThreshold * 60);
|
||||
emit timeThresholdChanged();
|
||||
}
|
||||
|
||||
const QString QMLPrefs::theme() const
|
||||
{
|
||||
return qPrefDisplay::theme();
|
||||
|
|
|
@ -37,11 +37,6 @@ class QMLPrefs : public QObject {
|
|||
READ theme
|
||||
WRITE setTheme
|
||||
NOTIFY themeChanged)
|
||||
Q_PROPERTY(int timeThreshold
|
||||
MEMBER m_timeThreshold
|
||||
WRITE setTimeThreshold
|
||||
NOTIFY timeThresholdChanged)
|
||||
|
||||
public:
|
||||
QMLPrefs();
|
||||
~QMLPrefs();
|
||||
|
@ -66,9 +61,6 @@ public:
|
|||
bool showPin() const;
|
||||
void setShowPin(bool enable);
|
||||
|
||||
int timeThreshold() const;
|
||||
void setTimeThreshold(int time);
|
||||
|
||||
const QString theme() const;
|
||||
void setTheme(QString theme);
|
||||
|
||||
|
@ -84,7 +76,6 @@ private:
|
|||
static QMLPrefs *m_instance;
|
||||
qPrefCloudStorage::cloud_status m_oldStatus;
|
||||
bool m_showPin;
|
||||
int m_timeThreshold;
|
||||
|
||||
signals:
|
||||
void cloudPasswordChanged();
|
||||
|
@ -94,7 +85,6 @@ signals:
|
|||
void oldStatusChanged();
|
||||
void showPinChanged();
|
||||
void themeChanged();
|
||||
void timeThresholdChanged();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue