Version: 9.15.0
SUIT_Desktop.h
Go to the documentation of this file.
1
// Copyright (C) 2007-2025 CEA, EDF, OPEN CASCADE
2
//
3
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5
//
6
// This library is free software; you can redistribute it and/or
7
// modify it under the terms of the GNU Lesser General Public
8
// License as published by the Free Software Foundation; either
9
// version 2.1 of the License, or (at your option) any later version.
10
//
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
// Lesser General Public License for more details.
15
//
16
// You should have received a copy of the GNU Lesser General Public
17
// License along with this library; if not, write to the Free Software
18
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
//
20
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
//
22
23
#ifndef SUIT_DESKTOP_H
24
#define SUIT_DESKTOP_H
25
26
#include "
SUIT.h
"
27
28
#include <QList>
29
#include <QEvent>
30
31
#include <
QtxMainWindow.h
>
32
33
class
QMovie;
34
35
class
QtxLogoMgr
;
36
class
QtxActionMenuMgr
;
37
class
QtxActionToolMgr
;
38
39
class
SUIT_ViewWindow
;
40
46
class
SUIT_EXPORT
SUIT_Desktop
:
public
QtxMainWindow
47
{
48
Q_OBJECT
49
50
class
ReparentEvent
;
51
52
enum
{ Reparent = QEvent::User };
53
54
public
:
55
SUIT_Desktop
();
56
virtual
~
SUIT_Desktop
();
57
58
QtxActionMenuMgr
* menuMgr()
const
;
59
QtxActionToolMgr
* toolMgr()
const
;
60
QtxLogoMgr
* logoMgr()
const
;
61
62
virtual
SUIT_ViewWindow
*
activeWindow
()
const
= 0;
63
virtual
void
setActiveWindow(
SUIT_ViewWindow
*);
64
virtual
QList<SUIT_ViewWindow*>
windows
()
const
= 0;
65
66
int
logoCount()
const
;
67
68
void
logoClear();
69
void
logoRemove(
const
QString& );
70
void
logoInsert(
const
QString&, QMovie*,
const
int
= -1 );
71
void
logoInsert(
const
QString&,
const
QPixmap&,
const
int
= -1 );
72
73
void
emitActivated();
74
void
emitMessage(
const
QString& );
75
76
signals:
77
void
activated
();
78
void
deactivated
();
79
// void moved();
80
void
windowActivated
(
SUIT_ViewWindow
* );
81
void
closing
(
SUIT_Desktop
*, QCloseEvent* );
82
void
message
(
const
QString& );
83
84
protected
:
85
virtual
bool
event
(
QEvent
* );
86
virtual
void
customEvent(
QEvent
* );
87
virtual
void
closeEvent( QCloseEvent* );
88
virtual
void
childEvent( QChildEvent* );
89
90
virtual
void
addWindow
(
QWidget
* ) = 0;
91
92
private
:
93
QtxActionMenuMgr
*
myMenuMgr
;
94
QtxActionToolMgr
*
myToolMgr
;
95
QtxLogoMgr
*
myLogoMgr
;
96
};
97
98
#endif
QtxMainWindow.h
SUIT.h
SUIT_EXPORT
#define SUIT_EXPORT
Definition:
SUIT.h:36
QEvent
QList
QWidget
QtxActionMenuMgr
Main menu actions manager.
Definition:
QtxActionMenuMgr.h:43
QtxActionToolMgr
Toolbar actions manager.
Definition:
QtxActionToolMgr.h:44
QtxLogoMgr
Provides a way to install logo pictures to the application main window.
Definition:
QtxLogoMgr.h:43
QtxMainWindow
Enhanced main window which supports dockable menubar and status bar plus geometry saving/restoring.
Definition:
QtxMainWindow.h:35
QtxMainWindow::event
virtual bool event(QEvent *)
Definition:
QtxMainWindow.cxx:569
SUIT_Desktop::ReparentEvent
Definition:
SUIT_Desktop.cxx:43
SUIT_Desktop
Definition:
SUIT_Desktop.h:47
SUIT_Desktop::message
void message(const QString &)
SUIT_Desktop::activeWindow
virtual SUIT_ViewWindow * activeWindow() const =0
SUIT_Desktop::closing
void closing(SUIT_Desktop *, QCloseEvent *)
SUIT_Desktop::windowActivated
void windowActivated(SUIT_ViewWindow *)
SUIT_Desktop::windows
virtual QList< SUIT_ViewWindow * > windows() const =0
SUIT_Desktop::myMenuMgr
QtxActionMenuMgr * myMenuMgr
Definition:
SUIT_Desktop.h:93
SUIT_Desktop::activated
void activated()
SUIT_Desktop::myLogoMgr
QtxLogoMgr * myLogoMgr
Definition:
SUIT_Desktop.h:95
SUIT_Desktop::addWindow
virtual void addWindow(QWidget *)=0
SUIT_Desktop::myToolMgr
QtxActionToolMgr * myToolMgr
Definition:
SUIT_Desktop.h:94
SUIT_Desktop::deactivated
void deactivated()
SUIT_ViewWindow
Definition:
SUIT_ViewWindow.h:42
src
SUIT
SUIT_Desktop.h
Copyright © 2007-2025 CEA, EDF, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS