SHAPER 9.16.0
XGUI_QtEvents.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef XGUI_QTEVENTS_H_
21#define XGUI_QTEVENTS_H_
22
23#include <XGUI.h>
24
25#include <ModelAPI_ResultPart.h>
26#include <Events_Message.h>
27
28#include <QEvent>
29#include <QString>
30
35class XGUI_EXPORT PostponeMessageQtEvent : public QEvent
36{
37 public:
39 static QEvent::Type PostponeMessageQtEventType;
40
43 PostponeMessageQtEvent(const std::shared_ptr<Events_Message>& theMessage)
44 : QEvent(PostponeMessageQtEventType),
45 myMessage(theMessage)
46 {
47 }
48
50 static QEvent::Type type()
51 {
52 return PostponeMessageQtEventType;
53 }
54
56 std::shared_ptr<Events_Message> postponedMessage();
57
58 private:
60 std::shared_ptr<Events_Message> myMessage;
61};
62
63#endif /* XGUI_QEVENTS_H_ */
Class of event to send application events in multi thread environment.
Definition: XGUI_QtEvents.h:36
static QEvent::Type PostponeMessageQtEventType
An event type.
Definition: XGUI_QtEvents.h:39
PostponeMessageQtEvent(const std::shared_ptr< Events_Message > &theMessage)
Constructor.
Definition: XGUI_QtEvents.h:43
static QEvent::Type type()
Returns type of the event.
Definition: XGUI_QtEvents.h:50