mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Move Profile widget out of desktop-widgets
The reason for that is, even if profile widget is made with qpainter and for that reason it should be a desktop widget, it's being used on the mobile version because of a lack of QML plotting library that is fast and reliable. We discovered that it was faster just to encapsulate our Profile in a QML class and call it directly. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
50ec7200e6
commit
1d6683f3e0
36 changed files with 32 additions and 30 deletions
|
@ -313,6 +313,8 @@ endif()
|
|||
add_subdirectory(translations)
|
||||
add_subdirectory(subsurface-core)
|
||||
add_subdirectory(qt-models)
|
||||
add_subdirectory(profile-widget)
|
||||
add_subdirectory(desktop-widgets)
|
||||
|
||||
if(FBSUPPORT)
|
||||
add_definitions(-DFBSUPPORT)
|
||||
|
@ -338,7 +340,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND NOT ANDROID)
|
|||
set(SUBSURFACE_LINK_LIBRARIES ${SUBSURFACE_LINK_LIBRARIES} -lpthread)
|
||||
endif()
|
||||
|
||||
add_subdirectory(desktop-widgets)
|
||||
|
||||
# create the executables
|
||||
if(SUBSURFACE_MOBILE)
|
||||
|
|
|
@ -75,23 +75,6 @@ endif()
|
|||
|
||||
source_group("Subsurface Interface" FILES ${SUBSURFACE_INTERFACE})
|
||||
|
||||
# the profile widget
|
||||
set(SUBSURFACE_PROFILE_LIB_SRCS
|
||||
profile/profilewidget2.cpp
|
||||
profile/diverectitem.cpp
|
||||
profile/divepixmapitem.cpp
|
||||
profile/divelineitem.cpp
|
||||
profile/divetextitem.cpp
|
||||
profile/animationfunctions.cpp
|
||||
profile/divecartesianaxis.cpp
|
||||
profile/diveprofileitem.cpp
|
||||
profile/diveeventitem.cpp
|
||||
profile/divetooltipitem.cpp
|
||||
profile/ruleritem.cpp
|
||||
profile/tankitem.cpp
|
||||
)
|
||||
source_group("Subsurface Profile" FILES ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
|
||||
# the yearly statistics widget.
|
||||
set(SUBSURFACE_STATISTICS_LIB_SRCS
|
||||
statistics/statisticswidget.cpp
|
||||
|
@ -101,8 +84,6 @@ set(SUBSURFACE_STATISTICS_LIB_SRCS
|
|||
)
|
||||
source_group("Subsurface Statistics" FILES ${SUBSURFACE_STATISTICS_LIB_SRCS})
|
||||
|
||||
add_library(subsurface_profile STATIC ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
target_link_libraries(subsurface_profile ${QT_LIBRARIES})
|
||||
add_library(subsurface_statistics STATIC ${SUBSURFACE_STATISTICS_LIB_SRCS})
|
||||
target_link_libraries(subsurface_statistics ${QT_LIBRARIES})
|
||||
add_library(subsurface_generated_ui STATIC ${SUBSURFACE_UI_HDRS})
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "helpers.h"
|
||||
#include "cylindermodel.h"
|
||||
#include "models.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "diveplannermodel.h"
|
||||
|
||||
#include <QGraphicsSceneMouseEvent>
|
||||
|
@ -328,11 +328,11 @@ PlannerSettingsWidget::PlannerSettingsWidget(QWidget *parent, Qt::WindowFlags f)
|
|||
modeMapper->setMapping(ui.recreational_deco, int(RECREATIONAL));
|
||||
modeMapper->setMapping(ui.buehlmann_deco, int(BUEHLMANN));
|
||||
modeMapper->setMapping(ui.vpmb_deco, int(VPMB));
|
||||
|
||||
|
||||
connect(ui.recreational_deco, SIGNAL(clicked()), modeMapper, SLOT(map()));
|
||||
connect(ui.buehlmann_deco, SIGNAL(clicked()), modeMapper, SLOT(map()));
|
||||
connect(ui.vpmb_deco, SIGNAL(clicked()), modeMapper, SLOT(map()));
|
||||
|
||||
|
||||
connect(ui.lastStop, SIGNAL(toggled(bool)), plannerModel, SLOT(setLastStop6m(bool)));
|
||||
connect(ui.verbatim_plan, SIGNAL(toggled(bool)), plannerModel, SLOT(setVerbatim(bool)));
|
||||
connect(ui.display_duration, SIGNAL(toggled(bool)), plannerModel, SLOT(setDisplayDuration(bool)));
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "diveplannermodel.h"
|
||||
#include "divelistview.h"
|
||||
#include "display.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "diveplanner.h"
|
||||
#include "divesitehelpers.h"
|
||||
#include "cylindermodel.h"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "updatemanager.h"
|
||||
#include "planner.h"
|
||||
#include "filtermodels.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "globe.h"
|
||||
#include "divecomputer.h"
|
||||
#include "maintab.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "cylindermodel.h"
|
||||
#include "models.h"
|
||||
#include "starwidget.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "tankinfomodel.h"
|
||||
#include "weigthsysteminfomodel.h"
|
||||
#include "weightmodel.h"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include <QPainter>
|
||||
#include <QWebElementCollection>
|
||||
#include <QWebElement>
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
|
||||
Printer::Printer(QPaintDevice *paintDevice, print_options *printOptions, template_options *templateOptions, PrintMode printMode)
|
||||
{
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#include <QRect>
|
||||
#include <QPainter>
|
||||
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "printoptions.h"
|
||||
#include "templateedit.h"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "libdivecomputer/parser.h"
|
||||
#include "divelistview.h"
|
||||
#include "display.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "undocommands.h"
|
||||
|
||||
class MinMaxAvgWidgetPrivate {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <QMessageBox>
|
||||
#include <QInputDialog>
|
||||
#include "mainwindow.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profile-widget/profilewidget2.h"
|
||||
#include "pref.h"
|
||||
#include "helpers.h"
|
||||
#include "ui_socialnetworksdialog.h"
|
||||
|
|
19
profile-widget/CMakeLists.txt
Normal file
19
profile-widget/CMakeLists.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
# the profile widget
|
||||
set(SUBSURFACE_PROFILE_LIB_SRCS
|
||||
profilewidget2.cpp
|
||||
diverectitem.cpp
|
||||
divepixmapitem.cpp
|
||||
divelineitem.cpp
|
||||
divetextitem.cpp
|
||||
animationfunctions.cpp
|
||||
divecartesianaxis.cpp
|
||||
diveprofileitem.cpp
|
||||
diveeventitem.cpp
|
||||
divetooltipitem.cpp
|
||||
ruleritem.cpp
|
||||
tankitem.cpp
|
||||
)
|
||||
source_group("Subsurface Profile" FILES ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
|
||||
add_library(subsurface_profile STATIC ${SUBSURFACE_PROFILE_LIB_SRCS})
|
||||
target_link_libraries(subsurface_profile ${QT_LIBRARIES})
|
|
@ -11,7 +11,7 @@
|
|||
#include "libdivecomputer/parser.h"
|
||||
#include "mainwindow.h"
|
||||
#include "maintab.h"
|
||||
#include "profile/profilewidget2.h"
|
||||
#include "profilewidget2.h"
|
||||
#include "diveplanner.h"
|
||||
|
||||
#include <QSettings>
|
|
@ -23,6 +23,7 @@ set(SUBSURFACE_MODELS_LIB_SRCS
|
|||
divesitepicturesmodel.cpp
|
||||
ssrfsortfilterproxymodel.cpp
|
||||
)
|
||||
|
||||
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
||||
add_library(subsurface_models STATIC ${SUBSURFACE_MODELS_LIB_SRCS})
|
||||
target_link_libraries(subsurface_models ${QT_LIBRARIES})
|
Loading…
Reference in a new issue