comparison libgui/languages/build_ts/octave-qt/qcolordialog_symbian.cpp @ 31537:5ceb4bfcdb0f stable

add tools and files for updating the gui's language files for translation * libgui/languages/build_ts/README.md: readme for updating language files * libgui/languages/build_ts/octave-qsci: QScintilla source files for languages without translation provided by QScintilla * libgui/languages/build_ts/octave-qt: Qt source files for languages without translation provided by Qt
author Torsten Lilge <ttl-octave@mailbox.org>
date Thu, 24 Nov 2022 06:48:25 +0100
parents
children
comparison
equal deleted inserted replaced
31535:4b80982e0af8 31537:5ceb4bfcdb0f
1 /****************************************************************************
2 **
3 ** Copyright (C) 2015 The Qt Company Ltd.
4 ** Contact: http://www.qt.io/licensing/
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
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 http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://www.qt.io/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 or version 3 as published by the Free
20 ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21 ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22 ** following information to ensure the GNU Lesser General Public License
23 ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25 **
26 ** As a special exception, The Qt Company gives you certain additional
27 ** rights. These rights are described in The Qt Company LGPL Exception
28 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29 **
30 ** GNU General Public License Usage
31 ** Alternatively, this file may be used under the terms of the GNU
32 ** General Public License version 3.0 as published by the Free Software
33 ** Foundation and appearing in the file LICENSE.GPL included in the
34 ** packaging of this file. Please review the following information to
35 ** ensure the GNU General Public License version 3.0 requirements will be
36 ** met: http://www.gnu.org/copyleft/gpl.html.
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qcolordialog_p.h"
43
44 #ifndef QT_NO_COLORDIALOG
45
46
47 #include "qcolor.h"
48 #include "private/qguiplatformplugin_p.h"
49
50 #ifdef Q_WS_S60
51 #include <AknColourSelectionGrid.h>
52 #endif
53
54 #include "private/qt_s60_p.h"
55
56 QT_BEGIN_NAMESPACE
57
58 QColor launchSymbianColorDialog(QColor initial)
59 {
60 QColor currentColor = QColor::Invalid;
61 #ifdef Q_WS_S60
62 QT_TRAP_THROWING(
63 CArrayFixFlat<TRgb>* array = new( ELeave ) CArrayFixFlat<TRgb>(17);
64 CleanupStack::PushL(array);
65 array->AppendL(KRgbBlack);
66 array->AppendL(KRgbDarkGray);
67 array->AppendL(KRgbDarkRed);
68 array->AppendL(KRgbDarkGreen);
69 array->AppendL(KRgbDarkYellow);
70 array->AppendL(KRgbDarkBlue);
71 array->AppendL(KRgbDarkMagenta);
72 array->AppendL(KRgbDarkCyan);
73 array->AppendL(KRgbRed);
74 array->AppendL(KRgbGreen);
75 array->AppendL(KRgbYellow);
76 array->AppendL(KRgbBlue);
77 array->AppendL(KRgbMagenta);
78 array->AppendL(KRgbCyan);
79 array->AppendL(KRgbGray);
80 array->AppendL(KRgbWhite);
81
82 TRgb initialColour(initial.red(), initial.green(), initial.blue(), initial.alpha());
83
84 TBool noneChosen = EFalse; // If true shows the default colour button
85 CAknColourSelectionGrid* colourSelectionGrid =
86 CAknColourSelectionGrid::NewL(array, EFalse, noneChosen, initialColour);
87 CleanupStack::PushL(colourSelectionGrid);
88
89 if (colourSelectionGrid->ExecuteLD()) {
90 currentColor.setRgb(initialColour.Red(), initialColour.Green(),
91 initialColour.Blue(), initialColour.Alpha());
92 }
93 CleanupStack::Pop(colourSelectionGrid);
94 CleanupStack::PopAndDestroy(array);
95 );
96 #endif
97 return currentColor;
98 }
99
100 QColor qtSymbianGetColor(const QColor &initial)
101 {
102 return launchSymbianColorDialog(initial);
103 }
104
105 QT_END_NAMESPACE
106
107 #endif // QT_NO_COLORDIALOG