1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of the Qt Linguist of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
16 **
17 ** GNU General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU
19 ** General Public License version 3 as published by the Free Software
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21 ** included in the packaging of this file. Please review the following
22 ** information to ensure the GNU General Public License requirements will
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24 **
25 ** $QT_END_LICENSE$
26 **
27 ****************************************************************************/
28 
29 #ifndef BATCHTRANSLATIONDIALOG_H
30 #define BATCHTRANSLATIONDIALOG_H
31 
32 #include "ui_batchtranslation.h"
33 #include "phrase.h"
34 
35 #include <QtWidgets/QDialog>
36 #include <QtGui/QStandardItemModel>
37 
38 QT_BEGIN_NAMESPACE
39 
40 class MultiDataModel;
41 
42 class CheckableListModel : public QStandardItemModel
43 {
44 public:
45     CheckableListModel(QObject *parent = 0);
46     virtual Qt::ItemFlags flags(const QModelIndex &index) const;
47 };
48 
49 class BatchTranslationDialog : public QDialog
50 {
51     Q_OBJECT
52 public:
53     BatchTranslationDialog(MultiDataModel *model, QWidget *w = 0);
54     void setPhraseBooks(const QList<PhraseBook *> &phrasebooks, int modelIndex);
55 
56 signals:
57     void finished();
58 
59 private slots:
60     void startTranslation();
61     void movePhraseBookUp();
62     void movePhraseBookDown();
63 
64 private:
65     Ui::BatchTranslationDialog m_ui;
66     CheckableListModel m_model;
67     MultiDataModel *m_dataModel;
68     QList<PhraseBook *> m_phrasebooks;
69     int m_modelIndex;
70 };
71 
72 QT_END_NAMESPACE
73 
74 #endif // BATCHTRANSLATIONDIALOG_H
75