Updated Italian translation
[quandoparte] / application / settings.h
index a9f0ea4..c855491 100644 (file)
 #ifndef SETTINGS_H
 #define SETTINGS_H
 
+/*
+
+Copyright (C) 2011 Luciano Montanaro <mikelima@cirulla.net>
+
+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.
+
+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; see the file COPYING.  If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.
+
+*/
+
+#include "stationlistproxymodel.h"
 #include <QObject>
+#include <QSettings>
+#include <QString>
+#include <QStringList>
 
 class Settings : public QObject
 {
     Q_OBJECT
+    Q_PROPERTY(QString queryBaseUrl
+               READ queryBaseUrl WRITE setQueryBaseUrl
+               NOTIFY queryBaseUrlChanged)
+    Q_PROPERTY(QStringList recentStations
+               READ recentStations WRITE setRecentStations
+               NOTIFY recentStationsChanged)
+    Q_PROPERTY(QStringList favoriteStations
+               READ favoriteStations WRITE setFavoriteStations
+               NOTIFY favoriteStationsChanged)
+    Q_PROPERTY(int checkingInterval
+               READ checkingInterval WRITE setCheckingInterval
+               NOTIFY checkingIntervalChanged)
+    Q_PROPERTY(bool autoUpdate
+               READ autoUpdate WRITE setAutoUpdate
+               NOTIFY autoUpdateChanged)
+    Q_PROPERTY(bool stationViewPreferred
+               READ stationViewPreferred WRITE setStationViewPreferred
+               NOTIFY stationViewPreferredChanged)
+    Q_PROPERTY(bool showArrivalsPreferred
+               READ showArrivalsPreferred WRITE setShowArrivalsPreferred
+               NOTIFY showArrivalsPreferredChanged)
+    Q_PROPERTY(StationListProxyModel::SortingMode stationListSortingMode
+               READ stationListSortingMode WRITE setStationListSortingMode
+               NOTIFY stationListSortingModeChanged)
+    Q_PROPERTY(bool darkThemePreferred
+               READ darkThemePreferred WRITE setDarkThemePreferred
+               NOTIFY darkThemePreferredChanged)
+    Q_PROPERTY(QString versionString READ versionString CONSTANT)
 public:
     explicit Settings(QObject *parent = 0);
+    ~Settings();
+    Q_INVOKABLE static Settings *instance();
 
-signals:
+    Q_INVOKABLE void save(void);
+
+    QString queryBaseUrl();
+    void setQueryBaseUrl(const QString &url);
+
+    QStringList recentStations();
+    void setRecentStations(const QStringList &stations);
 
-public slots:
+    QStringList favoriteStations();
+    void setFavoriteStations(const QStringList &stations);
 
+    int checkingInterval();
+    void setCheckingInterval(int);
+
+    bool autoUpdate();
+    void setAutoUpdate(bool);
+
+    bool stationViewPreferred();
+    void setStationViewPreferred(bool);
+
+    bool showArrivalsPreferred();
+    void setShowArrivalsPreferred(bool);
+
+    bool darkThemePreferred();
+    void setDarkThemePreferred(bool);
+
+    StationListProxyModel::SortingMode stationListSortingMode();
+    void setStationListSortingMode(StationListProxyModel::SortingMode mode);
+
+    QString versionString(void);
+
+signals:
+    void queryBaseUrlChanged();
+    void recentStationsChanged();
+    void favoriteStationsChanged();
+    void checkingIntervalChanged();
+    void autoUpdateChanged();
+    void stationViewPreferredChanged();
+    void showArrivalsPreferredChanged();
+    void darkThemePreferredChanged();
+    void stationListSortingModeChanged();
 };
 
 #endif // SETTINGS_H