scan: log: flip switches to r/o etc.
[abby.git] / src / formatdlg.h
blob2cfbd4f6e8e935d8640a1a2f82e9a4b034b13efc
1 /*
2 * abby Copyright (C) 2009 Toni Gundogdu.
3 * This file is part of abby.
5 * abby is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * abby is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef formatdlg_h
19 #define formatdlg_h
21 #include "ui_formatdlg.h"
23 class QDialog;
24 class QSettings;
26 typedef QMap<QString,QString> QStringMap;
28 class FormatDialog : public QDialog, public Ui::formatDialog {
29 Q_OBJECT
30 public:
31 FormatDialog(QWidget *parent);
32 public:
33 void resetHosts();
34 void parseHosts(const QStringMap& hosts);
35 void saveCurrent();
36 void writeSettings();
37 const QString getFormatSetting(const QString& url) const;
38 private:
39 void readSettings();
40 void readFormatSettings();
41 void writeFormatSettings(QSettings& s);
42 void updateFormats();
43 private slots:
44 void onHostChanged(const QString& host);
45 private:
46 QMap<QString, int> selN;
47 QStringMap hosts, sel;
48 QString lastHost;
51 #endif