- Timestamp:
- Sep 28, 2016, 11:45:41 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 165 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/FlairGCS/CMakeLists.txt
r45 r88 3 3 include($ENV{FLAIR_ROOT}/flair-dev/cmake-modules/GlobalCmakeFlair.cmake) 4 4 5 SET(PROJECT_SOURCE_FILES 6 src/Manager.cpp 7 src/ConnectionLayout.cpp 8 src/main.cpp 9 src/UdtSocket.cpp 10 src/DataPlot1D.cpp 11 src/DataPlot2D.cpp 12 src/RangeFinderPlot.cpp 13 src/Picture.cpp 14 src/DataRemote.cpp 15 src/file_ui.cpp 16 src/FormLayout.cpp 17 src/Vector3DSpinBox.cpp 18 src/DoubleSpinBox.cpp 19 src/SpinBox.cpp 20 src/CheckBox.cpp 21 src/ComboBox.cpp 22 src/Tab.cpp 23 src/TabWidget.cpp 24 src/GroupBox.cpp 25 src/GridLayout.cpp 26 src/Layout.cpp 27 src/PushButton.cpp 28 src/TextEdit.cpp 29 src/Label.cpp 30 src/Map.cpp 31 src/mapwidget.cpp 32 src/Landmark.cpp 33 src/XmlWidget.cpp 34 ) 5 execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion 6 OUTPUT_VARIABLE GCC_VERSION) 7 8 if (GCC_VERSION VERSION_GREATER 4.3 OR GCC_VERSION VERSION_EQUAL 4.3) 9 if (GCC_VERSION VERSION_GREATER 4.7 OR GCC_VERSION VERSION_EQUAL 4.7) 10 ADD_DEFINITIONS("-std=c++11") 11 else() 12 ADD_DEFINITIONS("-std=c++0x") 13 endif() 14 else() 15 message(STATUS "GCC version < 4.3, c+11 is not supported!") 16 endif() 17 18 FILE(GLOB PROJECT_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp") 35 19 36 20 SET(FILES_TO_MOC … … 51 35 src/XmlWidget.h 52 36 src/ConnectionLayout.h 37 src/ListWidget.h 53 38 ) 54 39 -
trunk/tools/FlairGCS/src/Layout.cpp
r15 r88 22 22 #include <QGeoCoordinate> 23 23 #include <QGridLayout> 24 #include "ListWidget.h" 25 #include <QStringList> 24 26 25 27 Layout::Layout(QWidget *parent, XmlWidget *xml, QString name, QString type) … … 248 250 widget = new Label(this, row, col, name); 249 251 } 252 if (type == "ListWidget") { 253 // Parse the item list 254 QStringList items; 255 int count = 0; 256 while (dom.hasAttribute("item" + QString::number(count))) { 257 QString item = dom.attribute("item" + QString::number(count)); 258 items.append(item); 259 count++; 260 } 261 widget = new ListWidget(this, row, col, name, items); 262 } 250 263 251 264 if (widget != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.