annotate Applications/Qt/QStoneMainWindow.cpp @ 285:3c190e2bb3af am-2

refactoring: ApplicationRunner + app hierarchy
author am@osimis.io
date Tue, 28 Aug 2018 15:26:46 +0200
parents 829163c6efc1
children 87376a645ee1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
280
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
1 /**
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
2 * Stone of Orthanc
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
6 *
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
7 * This program is free software: you can redistribute it and/or
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
8 * modify it under the terms of the GNU Affero General Public License
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
9 * as published by the Free Software Foundation, either version 3 of
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
10 * the License, or (at your option) any later version.
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
11 *
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful, but
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
15 * Affero General Public License for more details.
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
16 *
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
17 * You should have received a copy of the GNU Affero General Public License
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
19 **/
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
20
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
21 #include "QStoneMainWindow.h"
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
22
285
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
23 namespace OrthancStone
280
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
24 {
285
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
25
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
26 QStoneMainWindow::QStoneMainWindow(BasicNativeApplicationContext& context, QWidget *parent) :
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
27 QMainWindow(parent),
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
28 context_(context)
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
29 {
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
30 }
280
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
31
285
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
32 void QStoneMainWindow::SetCentralStoneWidget(QCairoWidget *centralWidget)
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
33 {
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
34 cairoCentralWidget_ = centralWidget;
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
35 cairoCentralWidget_->SetContext(context_);
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
36 }
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
37
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
38 QStoneMainWindow::~QStoneMainWindow()
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
39 {
3c190e2bb3af refactoring: ApplicationRunner + app hierarchy
am@osimis.io
parents: 280
diff changeset
40 }
280
829163c6efc1 split MainWindow into a generic one and one specific to these samples
am@osimis.io
parents:
diff changeset
41 }