1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
11 | **
|
---|
12 | ** "Redistribution and use in source and binary forms, with or without
|
---|
13 | ** modification, are permitted provided that the following conditions are
|
---|
14 | ** met:
|
---|
15 | ** * Redistributions of source code must retain the above copyright
|
---|
16 | ** notice, this list of conditions and the following disclaimer.
|
---|
17 | ** * Redistributions in binary form must reproduce the above copyright
|
---|
18 | ** notice, this list of conditions and the following disclaimer in
|
---|
19 | ** the documentation and/or other materials provided with the
|
---|
20 | ** distribution.
|
---|
21 | ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
---|
22 | ** the names of its contributors may be used to endorse or promote
|
---|
23 | ** products derived from this software without specific prior written
|
---|
24 | ** permission.
|
---|
25 | **
|
---|
26 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
27 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
28 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
29 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
30 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
31 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
32 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
33 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
34 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
35 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
36 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
---|
37 | ** $QT_END_LICENSE$
|
---|
38 | **
|
---|
39 | ****************************************************************************/
|
---|
40 |
|
---|
41 | #include <QtGui>
|
---|
42 |
|
---|
43 | #include "languagechooser.h"
|
---|
44 | #include "mainwindow.h"
|
---|
45 |
|
---|
46 | #ifdef Q_WS_MAC
|
---|
47 | QT_BEGIN_NAMESPACE
|
---|
48 | extern void qt_mac_set_menubar_merge(bool merge);
|
---|
49 | QT_END_NAMESPACE
|
---|
50 | #endif
|
---|
51 |
|
---|
52 | LanguageChooser::LanguageChooser(QWidget *parent)
|
---|
53 | : QDialog(parent, Qt::WindowStaysOnTopHint)
|
---|
54 | {
|
---|
55 | groupBox = new QGroupBox("Languages");
|
---|
56 |
|
---|
57 | QGridLayout *groupBoxLayout = new QGridLayout;
|
---|
58 |
|
---|
59 | QStringList qmFiles = findQmFiles();
|
---|
60 | for (int i = 0; i < qmFiles.size(); ++i) {
|
---|
61 | QCheckBox *checkBox = new QCheckBox(languageName(qmFiles[i]));
|
---|
62 | qmFileForCheckBoxMap.insert(checkBox, qmFiles[i]);
|
---|
63 | connect(checkBox, SIGNAL(toggled(bool)), this, SLOT(checkBoxToggled()));
|
---|
64 | groupBoxLayout->addWidget(checkBox, i / 2, i % 2);
|
---|
65 | }
|
---|
66 | groupBox->setLayout(groupBoxLayout);
|
---|
67 |
|
---|
68 | buttonBox = new QDialogButtonBox;
|
---|
69 |
|
---|
70 | showAllButton = buttonBox->addButton("Show All",
|
---|
71 | QDialogButtonBox::ActionRole);
|
---|
72 | hideAllButton = buttonBox->addButton("Hide All",
|
---|
73 | QDialogButtonBox::ActionRole);
|
---|
74 |
|
---|
75 | connect(showAllButton, SIGNAL(clicked()), this, SLOT(showAll()));
|
---|
76 | connect(hideAllButton, SIGNAL(clicked()), this, SLOT(hideAll()));
|
---|
77 |
|
---|
78 | QVBoxLayout *mainLayout = new QVBoxLayout;
|
---|
79 | mainLayout->addWidget(groupBox);
|
---|
80 | mainLayout->addWidget(buttonBox);
|
---|
81 | setLayout(mainLayout);
|
---|
82 |
|
---|
83 | #ifdef Q_WS_MAC
|
---|
84 | qt_mac_set_menubar_merge(false);
|
---|
85 | #endif
|
---|
86 |
|
---|
87 | setWindowTitle("I18N");
|
---|
88 | }
|
---|
89 |
|
---|
90 | bool LanguageChooser::eventFilter(QObject *object, QEvent *event)
|
---|
91 | {
|
---|
92 | if (event->type() == QEvent::Close) {
|
---|
93 | MainWindow *window = qobject_cast<MainWindow *>(object);
|
---|
94 | if (window) {
|
---|
95 | QCheckBox *checkBox = mainWindowForCheckBoxMap.key(window);
|
---|
96 | if (checkBox)
|
---|
97 | checkBox->setChecked(false);
|
---|
98 | }
|
---|
99 | }
|
---|
100 | return QWidget::eventFilter(object, event);
|
---|
101 | }
|
---|
102 |
|
---|
103 | void LanguageChooser::closeEvent(QCloseEvent * /* event */)
|
---|
104 | {
|
---|
105 | qApp->quit();
|
---|
106 | }
|
---|
107 |
|
---|
108 | void LanguageChooser::checkBoxToggled()
|
---|
109 | {
|
---|
110 | QCheckBox *checkBox = qobject_cast<QCheckBox *>(sender());
|
---|
111 | MainWindow *window = mainWindowForCheckBoxMap[checkBox];
|
---|
112 | if (!window) {
|
---|
113 | QTranslator translator;
|
---|
114 | translator.load(qmFileForCheckBoxMap[checkBox]);
|
---|
115 | qApp->installTranslator(&translator);
|
---|
116 |
|
---|
117 | window = new MainWindow;
|
---|
118 | window->setPalette(colorForLanguage(checkBox->text()));
|
---|
119 |
|
---|
120 | window->installEventFilter(this);
|
---|
121 | mainWindowForCheckBoxMap.insert(checkBox, window);
|
---|
122 | }
|
---|
123 | window->setVisible(checkBox->isChecked());
|
---|
124 | }
|
---|
125 |
|
---|
126 | void LanguageChooser::showAll()
|
---|
127 | {
|
---|
128 | foreach (QCheckBox *checkBox, qmFileForCheckBoxMap.keys())
|
---|
129 | checkBox->setChecked(true);
|
---|
130 | }
|
---|
131 |
|
---|
132 | void LanguageChooser::hideAll()
|
---|
133 | {
|
---|
134 | foreach (QCheckBox *checkBox, qmFileForCheckBoxMap.keys())
|
---|
135 | checkBox->setChecked(false);
|
---|
136 | }
|
---|
137 |
|
---|
138 | QStringList LanguageChooser::findQmFiles()
|
---|
139 | {
|
---|
140 | QDir dir(":/translations");
|
---|
141 | QStringList fileNames = dir.entryList(QStringList("*.qm"), QDir::Files,
|
---|
142 | QDir::Name);
|
---|
143 | QMutableStringListIterator i(fileNames);
|
---|
144 | while (i.hasNext()) {
|
---|
145 | i.next();
|
---|
146 | i.setValue(dir.filePath(i.value()));
|
---|
147 | }
|
---|
148 | return fileNames;
|
---|
149 | }
|
---|
150 |
|
---|
151 | QString LanguageChooser::languageName(const QString &qmFile)
|
---|
152 | {
|
---|
153 | QTranslator translator;
|
---|
154 | translator.load(qmFile);
|
---|
155 |
|
---|
156 | return translator.translate("MainWindow", "English");
|
---|
157 | }
|
---|
158 |
|
---|
159 | QColor LanguageChooser::colorForLanguage(const QString &language)
|
---|
160 | {
|
---|
161 | uint hashValue = qHash(language);
|
---|
162 | int red = 156 + (hashValue & 0x3F);
|
---|
163 | int green = 156 + ((hashValue >> 6) & 0x3F);
|
---|
164 | int blue = 156 + ((hashValue >> 12) & 0x3F);
|
---|
165 | return QColor(red, green, blue);
|
---|
166 | }
|
---|