pqOutputWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: pqOutputWidget.h
5 
6  Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
7  All rights reserved.
8 
9  ParaView is a free software; you can redistribute it and/or modify it
10  under the terms of the ParaView license version 1.2.
11 
12  See License_v1.2.txt for the full ParaView license.
13  A copy of this license can be obtained by contacting
14  Kitware Inc.
15  28 Corporate Drive
16  Clifton Park, NY 12065
17  USA
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 ========================================================================*/
32 #ifndef pqOutputWidget_h
33 #define pqOutputWidget_h
34 
35 #include <QWidget>
36 
37 #include "pqCoreModule.h" // for exports
38 #include <QScopedPointer> // for QScopedPointer.
39 
40 class pqOutputWidget;
41 
43 {
44 class OutputWindow;
45 };
46 
47 Q_DECLARE_METATYPE(QtMsgType)
61 class PQCORE_EXPORT MessageHandler : public QObject
62 {
63  Q_OBJECT
64 public:
65  MessageHandler(QObject* parent = nullptr);
66 
73  static void install(pqOutputWidget* widget);
74 
78  static void handler(QtMsgType type, const QMessageLogContext&, const QString& msg);
79 
83  static void handlerVTK(QtMsgType type, const QString& msg);
84 
85 signals:
86  void message(QtMsgType type, const QString& msg);
87  void showMessage(QString msg, QtMsgType type);
88 
89 private:
90  static MessageHandler* instance();
91 
92 private slots:
93  void displayMessage(QtMsgType type, const QString& msg);
94 };
95 
105 class PQCORE_EXPORT pqOutputWidget : public QWidget
106 {
107  Q_OBJECT
108  typedef QWidget Superclass;
109  Q_PROPERTY(QString settingsKey READ settingsKey WRITE setSettingsKey);
110 
111 public:
112  pqOutputWidget(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
113  ~pqOutputWidget() override;
114 
119  void suppress(const QStringList& substrs);
120 
122 
126  void setSettingsKey(const QString& key);
127  const QString& settingsKey() const;
129 
131 
134  void setFontSize(int fontSize);
136 
137 public slots:
145  bool displayMessage(const QString& message, QtMsgType type = QtInfoMsg);
146 
150  void showFullMessages(bool val);
151 
155  void saveToFile();
156 
160  void clear();
161 
162 signals:
166  void messageDisplayed(const QString& message, int type);
167 
168 protected:
172  virtual bool suppress(const QString& message, QtMsgType type);
173 
177  virtual QString extractSummary(const QString& message, QtMsgType type);
178 
179 private:
180  Q_DISABLE_COPY(pqOutputWidget)
181 
182  class pqInternals;
183  QScopedPointer<pqInternals> Internals;
184  friend class OutputWidgetInternals::OutputWindow;
185 };
186 
187 #endif
type
widget to show Qt and VTK messages.
widget to show Qt and VTK messages.