QGCWaypointEditor.qml 623 Bytes
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9 10 11 12


/**
 * @file
13
 *   @brief QGC Waypoint Editor
dogmaphobic's avatar
dogmaphobic committed
14 15 16
 *   @author Gus Grubba <mavlink@grubba.com>
 */

17 18 19
import QtQuick 2.4

import QGroundControl.Palette 1.0
dogmaphobic's avatar
dogmaphobic committed
20 21

Rectangle {
22
    QGCPalette { id: palette; colorGroupEnabled: true }
dogmaphobic's avatar
dogmaphobic committed
23
    id: root
24 25
    color: palette.window

dogmaphobic's avatar
dogmaphobic committed
26
}