UASMessageView.h 2.16 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
namespace Ui {
36
class UASMessageView;
37 38
}

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

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

66
// Roll down Message View
67
class UASMessageViewRollDown : public UASMessageView
68 69 70
{
    Q_OBJECT
public:
dogmaphobic's avatar
dogmaphobic committed
71
    explicit UASMessageViewRollDown(QWidget *parent);
72
    ~UASMessageViewRollDown();
dogmaphobic's avatar
dogmaphobic committed
73 74
signals:
    void closeWindow();
75
public slots:
76
    void handleTextMessage(UASMessage* message);
77
protected:
78
    void leaveEvent(QEvent* event);
79 80 81
};

#endif // QGCMESSAGEVIEW_H