mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
3e853e37a5
Remove the "Show unused cylinders" checkbox (Profile tab) and the "Set default cylinder" qTextEdit box (General tab) and put them in a separate and new Equipment tab. This sounds like a simple task but, as can be seen from the files changed, was actually a complex matter. Adapt the existing test programs (General and TechDetails) for creating a test program that tests parts of the Equipment tab. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
49 lines
1.3 KiB
CMake
49 lines
1.3 KiB
CMake
# the profile widget
|
|
include_directories(.
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
)
|
|
|
|
set(SUBSURFACE_PREFERENCES_UI
|
|
preferences_defaults.ui
|
|
preferences_graph.ui
|
|
preferences_network.ui
|
|
preferences_cloud.ui
|
|
preferences_units.ui
|
|
preferences_georeference.ui
|
|
preferences_language.ui
|
|
preferences_equipment.ui
|
|
)
|
|
|
|
qt5_wrap_ui(SUBSURFACE_PREFERENCES_UI_HDRS ${SUBSURFACE_PREFERENCES_UI})
|
|
|
|
source_group("Subsurface Interface Files" FILES ${SUBSURFACE_PREFERENCES_UI})
|
|
|
|
set(SUBSURFACE_PREFERENCES_LIB_SRCS
|
|
abstractpreferenceswidget.cpp
|
|
abstractpreferenceswidget.h
|
|
preferences_defaults.cpp
|
|
preferences_defaults.h
|
|
preferences_equipment.cpp
|
|
preferences_equipment.h
|
|
preferences_georeference.cpp
|
|
preferences_georeference.h
|
|
preferences_graph.cpp
|
|
preferences_graph.h
|
|
preferences_language.cpp
|
|
preferences_language.h
|
|
preferences_network.cpp
|
|
preferences_network.h
|
|
preferences_cloud.cpp
|
|
preferences_cloud.h
|
|
preferences_units.cpp
|
|
preferences_units.h
|
|
preferencesdialog.cpp
|
|
preferencesdialog.h
|
|
)
|
|
|
|
source_group("Subsurface Preferences" FILES ${SUBSURFACE_PREFERENCES_LIB_SRCS})
|
|
|
|
add_library(subsurface_desktop_preferences STATIC ${SUBSURFACE_PREFERENCES_LIB_SRCS} ${SUBSURFACE_PREFERENCES_UI_HDRS})
|
|
target_link_libraries(subsurface_desktop_preferences ${QT_LIBRARIES})
|
|
|