mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-05 20:23:48 +00:00
# Conflicts: # CMakeLists.txt # android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java # android/sdk/src/main/cpp/app/organicmaps/sdk/Framework.hpp # android/sdk/src/main/cpp/app/organicmaps/sdk/OrganicMaps.cpp # android/sdk/src/main/cpp/app/organicmaps/sdk/util/Config.cpp # libs/indexer/data_source.hpp # libs/indexer/feature.hpp # libs/indexer/ftypes_matcher.hpp # libs/map/framework.cpp # libs/map/traffic_manager.cpp # libs/routing/absent_regions_finder.cpp # libs/routing/edge_estimator.hpp # libs/routing/index_router.cpp # libs/routing/index_router.hpp # libs/routing/routing_session.hpp # libs/routing_common/num_mwm_id.hpp # libs/traffic/traffic_info.cpp # qt/mainwindow.hpp # qt/preferences_dialog.cpp # tools/openlr/helpers.hpp # tools/openlr/openlr_decoder.cpp # tools/openlr/openlr_decoder.hpp # tools/openlr/openlr_stat/openlr_stat.cpp # tools/openlr/router.hpp # tools/openlr/score_candidate_paths_getter.cpp # tools/openlr/score_candidate_paths_getter.hpp # xcode/CoMaps.xcworkspace/contents.xcworkspacedata
78 lines
1.4 KiB
C++
78 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "base/string_utils.hpp"
|
|
|
|
#include <string>
|
|
|
|
#include <QMainWindow>
|
|
|
|
class Framework;
|
|
class QHBoxLayout;
|
|
|
|
namespace traffxml
|
|
{
|
|
class MapWidget;
|
|
class TrafficModel;
|
|
class WebView;
|
|
}
|
|
|
|
namespace df
|
|
{
|
|
class DrapeApi;
|
|
}
|
|
|
|
class QDockWidget;
|
|
|
|
namespace traffxml
|
|
{
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(Framework & framework);
|
|
|
|
private:
|
|
void CreateTrafficPanel();
|
|
void DestroyTrafficPanel();
|
|
|
|
/**
|
|
* Called when the user requests to open a sample file.
|
|
*/
|
|
void OnOpenTrafficSample();
|
|
|
|
/**
|
|
* Called when the user requests to purge expired messages.
|
|
*/
|
|
void OnPurgeExpiredMessages();
|
|
|
|
/**
|
|
* Called when the user requests to clear the cache.
|
|
*/
|
|
void OnClearCache();
|
|
void OnCloseTrafficSample();
|
|
void OnSaveTrafficSample();
|
|
void OnPathEditingStop();
|
|
|
|
Framework & m_framework;
|
|
|
|
traffxml::TrafficModel * m_trafficModel = nullptr;
|
|
QDockWidget * m_dockWidget = nullptr;
|
|
|
|
#ifdef openlr_obsolete
|
|
QAction * m_goldifyMatchedPathAction = nullptr;
|
|
#endif
|
|
QAction * m_saveTrafficSampleAction = nullptr;
|
|
QAction * m_closeTrafficSampleAction = nullptr;
|
|
#ifdef openlr_obsolete
|
|
QAction * m_startEditingAction = nullptr;
|
|
QAction * m_commitPathAction = nullptr;
|
|
QAction * m_cancelPathAction = nullptr;
|
|
QAction * m_ignorePathAction = nullptr;
|
|
#endif
|
|
|
|
traffxml::MapWidget * m_mapWidget = nullptr;
|
|
QHBoxLayout * m_layout = nullptr;
|
|
};
|
|
} // namespace traffxml
|