QGC.h 656 Bytes
Newer Older
1
2
3
#ifndef QGC_H
#define QGC_H

4
#include <QDateTime>
5
6
7
8
#include <QColor>

namespace QGC
{
9
10
11
    const QColor colorCyan(55, 154, 195);
    const QColor colorRed(154, 20, 20);
    const QColor colorGreen(20, 200, 20);
12
13
    const QColor colorYellow(255, 255, 0);
    const QColor colorDarkYellow(180, 180, 0);
14
    const QColor colorBackground("#050508");
15

pixhawk's avatar
pixhawk committed
16
17
    /** @brief Get the current ground time in microseconds */
    quint64 groundTimeUsecs();
pixhawk's avatar
pixhawk committed
18
    int applicationVersion();
19
20
21

    const QString APPNAME = "QGROUNDCONTROL";
    const QString COMPANYNAME = "OPENMAV";
pixhawk's avatar
pixhawk committed
22
    const int APPLICATIONVERSION = 80; // 0.8.0
23
24
}

25
26
#define QGC_EVENTLOOP_DEBUG 0

27
#endif // QGC_H