a5161bf433f52d7b1e8b8dc385532874ce2eeb00
[mdictionary] / src / plugins / stardict / StarDictLoadDialog.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary 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.
9
10     mDictionary 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.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21 /*! \file XdxfLoadDialog.h
22 */
23 //Created by Mateusz Półrola
24
25 #ifndef XDXFLOADDIALOG_H
26 #define XDXFLOADDIALOG_H
27
28 #include <QDialog>
29 #include <QtGui>
30 #include "../../include/settings.h"
31
32 //! Displays dialog which allows user to add new xdxf dictionary
33 class XdxfLoadDialog : public QDialog {
34     Q_OBJECT
35 public:
36     explicit XdxfLoadDialog(QWidget *parent = 0);
37
38     /*! Displays dialog and returns settings of new dictionary
39         \return Settings object containing new dictionary settings or 0 (NULL) in
40         case user cancels dialog
41     */
42     static Settings* getSettings(QWidget *parent);
43
44     //! Returns dictionary file path chosen by user
45     QString dicitonaryFilePath();
46
47     //! Returns if user wants to cache dictionary
48     bool generateCache();
49
50 signals:
51
52 public slots:
53
54 private Q_SLOTS:
55     void selectFile();
56     void addDictionary();
57     void setGenerateCache(bool);
58     void setAccents(bool);
59
60 private:
61     QPushButton* addButton;
62     QPushButton* browseButton;
63     QLabel* browseLabel;
64     QCheckBox* cacheCheckBox;
65     QCheckBox* accentsCheckBox;
66     QVBoxLayout* verticalLayout;
67     QVBoxLayout* browseLayout;
68     QHBoxLayout* cacheLayout;
69     QString _dicitonaryFilePath;
70     bool _generateCache;
71     bool lastAccents;
72
73 };
74
75 #endif // XDXFLOADDIALOG_H