UASMessageView.h 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009 - 2011 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

24 25 26 27 28 29 30 31 32
#ifndef QGCMESSAGEVIEW_H
#define QGCMESSAGEVIEW_H

#include <QWidget>
#include <UASInterface.h>
#include <QVBoxLayout>
#include <QAction>
#include "QGCUnconnectedInfoWidget.h"

33
class UASMessage;
34 35
class QGCToolBar;

36
namespace Ui {
37
class UASMessageView;
38 39
}

40
// Message View base class
41
class UASMessageView : public QWidget
42 43 44 45
{
    Q_OBJECT
    
public:
46 47 48
    explicit UASMessageView(QWidget *parent = 0);
    virtual ~UASMessageView();
    Ui::UASMessageView* ui() { return _ui; }
49
private:
50
    Ui::UASMessageView* _ui;
51
};
52

53
// Message View Widget (used in the Info View tabbed Widget)
54
class UASMessageViewWidget : public UASMessageView
55 56 57
{
    Q_OBJECT
public:
58 59
    explicit UASMessageViewWidget(QWidget *parent = 0);
    ~UASMessageViewWidget();
60
public slots:
61
    void handleTextMessage(UASMessage* message);
62
    void clearMessages();
63 64 65
private:
    QGCUnconnectedInfoWidget* _unconnectedWidget;
};
66

67
// Roll down Message View
68
class UASMessageViewRollDown : public UASMessageView
69 70 71
{
    Q_OBJECT
public:
72 73
    explicit UASMessageViewRollDown(QWidget *parent, QGCToolBar* toolBar);
    ~UASMessageViewRollDown();
74
public slots:
75
    void handleTextMessage(UASMessage* message);
76
protected:
77
    void leaveEvent(QEvent* event);
78
private:
79
    QGCToolBar* _toolBar;
80 81 82
};

#endif // QGCMESSAGEVIEW_H