MessageDefinitionLoader.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright (C) 2015 by Ralf Kaestner *
3  * ralf.kaestner@gmail.com *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the Lesser GNU General Public License as published by*
7  * the Free Software Foundation; either version 3 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * Lesser GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the Lesser GNU General Public License *
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17  ******************************************************************************/
18 
19 #ifndef RQT_MULTIPLOT_MESSAGE_DEFINITION_LOADER_H
20 #define RQT_MULTIPLOT_MESSAGE_DEFINITION_LOADER_H
21 
22 #include <QMutex>
23 #include <QObject>
24 #include <QString>
25 #include <QThread>
26 
27 #include <variant_topic_tools/MessageDefinition.h>
28 
29 namespace rqt_multiplot {
31  public QObject {
32  Q_OBJECT
33  public:
34  MessageDefinitionLoader(QObject* parent = 0);
36 
37  QString getType() const;
38  variant_topic_tools::MessageDefinition getDefinition() const;
39  QString getError() const;
40  bool isLoading() const;
41 
42  void load(const QString& type);
43  void wait();
44 
45  signals:
46  void loadingStarted();
47  void loadingFinished();
48  void loadingFailed(const QString& error);
49 
50  private:
51  class Impl :
52  public QThread {
53  public:
54  Impl(QObject* parent = 0);
55  virtual ~Impl();
56 
57  void run();
58 
59  mutable QMutex mutex_;
60  QString type_;
61  variant_topic_tools::MessageDefinition definition_;
62  QString error_;
63  };
64 
66 
67  private slots:
68  void threadStarted();
69  void threadFinished();
70  };
71 };
72 
73 #endif
variant_topic_tools::MessageDefinition getDefinition() const
void loadingFailed(const QString &error)
variant_topic_tools::MessageDefinition definition_


rqt_multiplot
Author(s): Ralf Kaestner
autogenerated on Wed Jul 10 2019 03:49:44