refaktoring
[mdictionary] / src / plugins / xdxf / XdxfLoadDialog.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 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 private Q_SLOTS:
51     void selectFile();
52     void addDictionary();
53     void setGenerateCache(bool);
54     void setAccents(bool);
55
56 private:
57     QPushButton* addButton;
58     QPushButton* browseButton;
59     QLabel* browseLabel;
60     QCheckBox* cacheCheckBox;
61     QCheckBox* accentsCheckBox;
62     QVBoxLayout* verticalLayout;
63     QVBoxLayout* browseLayout;
64     QHBoxLayout* cacheLayout;
65     QString _dicitonaryFilePath;
66     bool _generateCache;
67     bool lastAccents;
68
69 };
70
71 #endif // XDXFLOADDIALOG_H