UASMessageView.h 2.37 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
#ifndef QGCMESSAGEVIEW_H
#define QGCMESSAGEVIEW_H

#include <QWidget>
#include <UASInterface.h>
#include <QVBoxLayout>
#include <QAction>
31

32
#include "QGCUnconnectedInfoWidget.h"
33
#include "UASMessageHandler.h"
34

35
class UASMessage;
36

37
namespace Ui {
38
class UASMessageView;
39 40
}

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

51
private:
52
    Ui::UASMessageView* _ui;
53
};
54

55
// Message View Widget (used in the Info View tabbed Widget)
56
class UASMessageViewWidget : public UASMessageView
57 58
{
    Q_OBJECT
59

60
public:
61
    explicit UASMessageViewWidget(UASMessageHandler* uasMessageHandler, QWidget *parent = 0);
62
    ~UASMessageViewWidget();
63

64
public slots:
65
    void handleTextMessage(UASMessage* message);
66
    void clearMessages();
67

68
private:
69 70
    QGCUnconnectedInfoWidget*   _unconnectedWidget;
    UASMessageHandler*          _uasMessageHandler;
71
};
72

73
// Roll down Message View
74
class UASMessageViewRollDown : public UASMessageView
75 76 77
{
    Q_OBJECT
public:
78
    explicit UASMessageViewRollDown(UASMessageHandler* uasMessageHandler, QWidget *parent);
79
    ~UASMessageViewRollDown();
80

dogmaphobic's avatar
dogmaphobic committed
81 82
signals:
    void closeWindow();
83

84
public slots:
85
    void handleTextMessage(UASMessage* message);
86

87
protected:
88
    void leaveEvent(QEvent* event);
89 90 91

private:
    UASMessageHandler*  _uasMessageHandler;
92 93 94
};

#endif // QGCMESSAGEVIEW_H