Fixed bugs in pro file
[mdictionary] / src / plugins / stardict / StarDialog.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
22 /*!
23     \file XdxfDialog.cpp
24     \author Mateusz Półrola <mateusz.polrola@gmail.com>
25 */
26
27 #ifndef STARDIALOG_H
28 #define STARDIALOG_H
29
30 #include <QDialog>
31 #include "../../include/settings.h"
32 #include <QtGui>
33 #include "StarDictPlugin.h"
34
35
36 //! Implementation of stardict plugin's dialogs.
37 /*!
38     This class can create dialogs for adding a new dictionary or changing settings
39      of an existing one, based on dialog type passed to contructor.
40     When adding a new dictionary dialog contains a button to browse file system and
41     select a dictionary file. When changing settings dialog displays basic
42     information about dictionary i. e. name, languages and license info.
43     In both types of dialogs there are comboboxes with "cache" and "remove accents"
44      options. On maemo right next to comboboxes are tool buttons which allow to
45      see more information about these options, on desktop the same information is
46      displayed as a tool tip.
47     All contents of a dialog are in a scroll area.
48 */
49 class StarDialog : public QDialog
50 {
51     Q_OBJECT
52 public:
53     /*!
54       Describes type of dialog. New means that dialog contains widgets to browse
55         file system and select dictionary file. Change means that dialog displays
56      information about dictionary.
57       In both types dialog provides widgets to create or delete cache and remove
58      or keep accents.
59     */
60     enum StarDialogType {New, Change};
61
62     //! Constructor
63     /*!
64         Creates new xdxf dialog
65         \param plugin if created dialog is of type Change it must be set to
66             point to plugin whose settings will be changed
67         \param type describes type of created dialog
68         \param parent parent widget of created dialog
69     */
70     explicit StarDialog(StarDictPlugin* plugin = 0,
71                         StarDialogType type = New,
72                         QWidget* parent = 0);
73
74     //! \returns settings of plugin
75     /*!
76         After acceptance of dialog this method returns plugin's settings based on
77          user's choices in dialog.
78     */
79     Settings* getSettings();
80
81 Q_SIGNALS:
82     //! Requests to show notification
83     void notify(Notify::NotifyType, QString);
84
85 public Q_SLOTS:
86     //! Reimplemented accept method, to check if all necessary fields in
87     //! dialog are correct e. g. dictionary file path
88     //! and saves new settings
89     void accept();
90
91 private Q_SLOTS:
92     //! displays dialog to browse and select file
93     void selectFile();
94     void setAccents(bool);
95
96     #ifdef Q_WS_MAEMO_5
97         //! on maemo shows information about checkboxes
98         void showAccentsInfo();
99     #endif
100
101
102 private:
103     void initializeUI();
104
105     //! saves new settings after acceptance of dialog
106     void saveSettings();
107
108     QLabel* infoLabel;
109     QPushButton* browseButton;
110     QHBoxLayout* browseLayout;
111
112
113     QCheckBox* accentsCheckBox;
114     QHBoxLayout* accentsLayout;
115
116     QString accentsToolTip;
117
118     #ifdef Q_WS_MAEMO_5
119         QToolButton* accentsInfoToolButton;
120     #endif
121
122
123     QPushButton* confirmButton;
124
125     QString _dictionaryFilePath;
126
127     QScrollArea* scrollArea;
128
129     QWidget* widget;
130     QHBoxLayout* layout;
131
132     QVBoxLayout* mainVerticalLayout;
133     bool _accents;
134     bool _lastAccents;
135
136     Settings* _settings;
137
138     StarDictPlugin* plugin;
139     StarDialogType type;
140 };
141
142 #endif // STARDIALOG_H