Changeset 48 in flair-src for branches/mavlink/tools/FlairGCS


Ignore:
Timestamp:
07/26/16 17:07:17 (8 years ago)
Author:
Thomas Fuhrmann
Message:

Add ListWidget

Location:
branches/mavlink/tools/FlairGCS
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/mavlink/tools/FlairGCS/CMakeLists.txt

    r40 r48  
    3232        src/Landmark.cpp
    3333        src/XmlWidget.cpp
     34        src/ListWidget.cpp
    3435)
    3536
     
    5152        src/XmlWidget.h
    5253        src/ConnectionLayout.h
     54        src/ListWidget.h
    5355)
    5456
  • branches/mavlink/tools/FlairGCS/src/Layout.cpp

    r15 r48  
    2222#include <QGeoCoordinate>
    2323#include <QGridLayout>
     24#include "ListWidget.h"
    2425
    2526Layout::Layout(QWidget *parent, XmlWidget *xml, QString name, QString type)
     
    248249    widget = new Label(this, row, col, name);
    249250  }
     251  if (type == "ListWidget") {
     252    widget = new ListWidget(this, row, col, name);
     253  }
    250254
    251255  if (widget != NULL) {
Note: See TracChangeset for help on using the changeset viewer.