Auto status change to "Under Review"
@@ -1,104 +1,104 | |||
|
1 | 1 | /*------------------------------------------------------------------------------ |
|
2 | 2 | -- This file is a part of the QLop Software |
|
3 | 3 | -- Copyright (C) 2015, Plasma Physics Laboratory - CNRS |
|
4 | 4 | -- |
|
5 | 5 | -- This program is free software; you can redistribute it and/or modify |
|
6 | 6 | -- it under the terms of the GNU General Public License as published by |
|
7 | 7 | -- the Free Software Foundation; either version 2 of the License, or |
|
8 | 8 | -- (at your option) any later version. |
|
9 | 9 | -- |
|
10 | 10 | -- This program is distributed in the hope that it will be useful, |
|
11 | 11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 | 12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 | 13 | -- GNU General Public License for more details. |
|
14 | 14 | -- |
|
15 | 15 | -- You should have received a copy of the GNU General Public License |
|
16 | 16 | -- along with this program; if not, write to the Free Software |
|
17 | 17 | -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
18 | 18 | -------------------------------------------------------------------------------*/ |
|
19 | 19 | /*-- Author : Alexis Jeandet |
|
20 | 20 | -- Mail : alexis.jeandet@member.fsf.org |
|
21 | 21 | ----------------------------------------------------------------------------*/ |
|
22 | 22 | #include "mainwindow.h" |
|
23 | 23 | #include "ui_mainwindow.h" |
|
24 | 24 | #include <QAction> |
|
25 | 25 | #include <QDate> |
|
26 | 26 | #include <QDateTime> |
|
27 | 27 | #include <QDir> |
|
28 | 28 | #include <QFileDialog> |
|
29 | #include <omp.h> | |
|
29 | //#include <omp.h> | |
|
30 | 30 | //#include <network/filedownloader.h> |
|
31 | 31 | //#include <qlopdatabase.h> |
|
32 | 32 | //#include <qlopsettings.h> |
|
33 | 33 | //#include <qlopgui.h> |
|
34 | 34 | //#include <spacedata.h> |
|
35 | 35 | //#include "qlopcore.h" |
|
36 | 36 | //#include "qlopcodecmanager.h" |
|
37 | 37 | //#include "cdfcodec.h" |
|
38 | 38 | //#include "amdatxtcodec.h" |
|
39 | 39 | //#include <qlopplotmanager.h> |
|
40 | 40 | |
|
41 | 41 | |
|
42 | 42 | MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) |
|
43 | 43 | { |
|
44 | 44 | ui->setupUi(this); |
|
45 | 45 | /* QLopGUI::registerMenuBar(menuBar()); |
|
46 | 46 | this->setWindowIcon(QIcon(":/sciqlopLOGO.svg")); |
|
47 | 47 | this->m_progressWidget = new QWidget(); |
|
48 | 48 | this->m_progressLayout = new QVBoxLayout(this->m_progressWidget); |
|
49 | 49 | this->m_progressWidget->setLayout(this->m_progressLayout); |
|
50 | 50 | this->m_progressWidget->setWindowModality(Qt::WindowModal); |
|
51 | 51 | m_progressThreadIds = (int*) malloc(OMP_THREADS*sizeof(int)); |
|
52 | 52 | for(int i=0;i<OMP_THREADS;i++) |
|
53 | 53 | { |
|
54 | 54 | this->m_progress.append(new QProgressBar(this->m_progressWidget)); |
|
55 | 55 | this->m_progress.last()->setMinimum(0); |
|
56 | 56 | this->m_progress.last()->setMaximum(100); |
|
57 | 57 | this->m_progressLayout->addWidget(this->m_progress.last()); |
|
58 | 58 | this->m_progressWidget->hide(); |
|
59 | 59 | this->m_progressThreadIds[i] = -1; |
|
60 | 60 | } |
|
61 | 61 | this->m_progressWidget->setWindowTitle("Loading File"); |
|
62 | 62 | const QList<QLopService*>ServicesToLoad=QList<QLopService*>() |
|
63 | 63 | << QLopCore::self() |
|
64 | 64 | << QLopPlotManager::self() |
|
65 | 65 | << QLopCodecManager::self() |
|
66 | 66 | << FileDownloader::self() |
|
67 | 67 | << QLopDataBase::self() |
|
68 | 68 | << SpaceData::self(); |
|
69 | 69 | |
|
70 | 70 | CDFCodec::registerToManager(); |
|
71 | 71 | AMDATXTCodec::registerToManager(); |
|
72 | 72 | |
|
73 | 73 | |
|
74 | 74 | for(int i=0;i<ServicesToLoad.count();i++) |
|
75 | 75 | { |
|
76 | 76 | qDebug()<<ServicesToLoad.at(i)->serviceName(); |
|
77 | 77 | ServicesToLoad.at(i)->initialize(); //must be called before getGUI |
|
78 | 78 | QDockWidget* wdgt=ServicesToLoad.at(i)->getGUI(); |
|
79 | 79 | if(wdgt) |
|
80 | 80 | { |
|
81 | 81 | wdgt->setAllowedAreas(Qt::AllDockWidgetAreas); |
|
82 | 82 | this->addDockWidget(Qt::TopDockWidgetArea,wdgt); |
|
83 | 83 | } |
|
84 | 84 | PythonQt::self()->getMainModule().addObject(ServicesToLoad.at(i)->serviceName(),(QObject*)ServicesToLoad.at(i)); |
|
85 | 85 | }*/ |
|
86 | 86 | } |
|
87 | 87 | |
|
88 | 88 | MainWindow::~MainWindow() |
|
89 | 89 | { |
|
90 | 90 | delete ui; |
|
91 | 91 | } |
|
92 | 92 | |
|
93 | 93 | |
|
94 | 94 | void MainWindow::changeEvent(QEvent *e) |
|
95 | 95 | { |
|
96 | 96 | QMainWindow::changeEvent(e); |
|
97 | 97 | switch (e->type()) { |
|
98 | 98 | case QEvent::LanguageChange: |
|
99 | 99 | ui->retranslateUi(this); |
|
100 | 100 | break; |
|
101 | 101 | default: |
|
102 | 102 | break; |
|
103 | 103 | } |
|
104 | 104 | } |
General Comments 3
ok
You need to be logged in to leave comments.
Login now