0031570: Samples - add Qt samples similar to standard MFC samples
[occt.git] / samples / qt / OCCTOverview / src / TranslateDialog.cxx
1 // Copyright (c) 2020 OPEN CASCADE SAS
2 //
3 // This file is part of the examples of the Open CASCADE Technology software library.
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in all
13 // copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
21
22 #include "TranslateDialog.h"
23
24 #include <Standard_WarningsDisable.hxx>
25 #include <QGridLayout>
26 #include <Standard_WarningsRestore.hxx>
27
28 TranslateDialog::TranslateDialog(QWidget* parent, Qt::WindowFlags flags, bool modal)
29 : QFileDialog(parent, flags)
30 {
31   setOption(QFileDialog::DontUseNativeDialog);
32   setModal(modal);
33
34   QGridLayout* grid = ::qobject_cast<QGridLayout*>(layout());
35
36   if (grid)
37   {
38     QVBoxLayout *vbox = new QVBoxLayout;
39
40     QWidget* paramGroup = new QWidget(this);
41     paramGroup->setLayout(vbox);
42
43     myBox = new QComboBox(paramGroup);
44     vbox->addWidget(myBox);
45
46     int row = grid->rowCount();
47     grid->addWidget(paramGroup, row, 1, 1, 3); // make combobox occupy 1 row and 3 columns starting from 1
48   }
49 }
50
51 TranslateDialog::~TranslateDialog()
52 {
53 }
54
55 int TranslateDialog::getMode() const
56 {
57   if (myBox->currentIndex() < 0 || myBox->currentIndex() > (int)myList.count() - 1)
58   {
59     return -1;
60   }
61   else
62   {
63     return myList.at(myBox->currentIndex());
64   }
65 }
66
67 void TranslateDialog::setMode(const int mode)
68 {
69   int idx = myList.indexOf(mode);
70   if (idx >= 0)
71   {
72     myBox->setCurrentIndex(idx);
73   }
74 }
75
76 void TranslateDialog::addMode(const int mode, const QString& name)
77 {
78   myBox->show();
79   myBox->addItem(name);
80   myList.append(mode);
81   myBox->updateGeometry();
82   updateGeometry();
83 }
84
85 void TranslateDialog::clear()
86 {
87   myList.clear();
88   myBox->clear();
89   myBox->hide();
90   myBox->updateGeometry();
91   updateGeometry();
92 }
93
94 QListView* TranslateDialog::findListView(const QObjectList & childList)
95 {
96   QListView* listView = 0;
97   for (int i = 0, n = childList.count(); i < n && !listView; i++)
98   {
99     listView = qobject_cast<QListView*>(childList.at(i));
100     if (!listView && childList.at(i))
101     {
102       listView = findListView(childList.at(i)->children());
103     }
104   }
105   return listView;
106 }
107
108 void TranslateDialog::showEvent(QShowEvent* event)
109 {
110   QFileDialog::showEvent(event);
111   QListView* aListView = findListView(children());
112   aListView->setViewMode(QListView::ListMode);
113 }