mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-07 13:03:54 +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
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <QtWidgets/QStyledItemDelegate>
|
|
|
|
class QAbstractItemModel;
|
|
class QComboBox;
|
|
class QTableView;
|
|
class QWidget;
|
|
|
|
namespace traffxml
|
|
{
|
|
class ComboBoxDelegate : public QStyledItemDelegate
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ComboBoxDelegate(QObject * parent = 0);
|
|
|
|
QWidget * createEditor(QWidget * parent, QStyleOptionViewItem const & option,
|
|
QModelIndex const & index) const Q_DECL_OVERRIDE;
|
|
|
|
void setEditorData(QWidget * editor, QModelIndex const & index) const Q_DECL_OVERRIDE;
|
|
|
|
void setModelData(QWidget * editor, QAbstractItemModel * model,
|
|
QModelIndex const & index) const Q_DECL_OVERRIDE;
|
|
|
|
void updateEditorGeometry(QWidget * editor, QStyleOptionViewItem const & option,
|
|
QModelIndex const & index) const Q_DECL_OVERRIDE;
|
|
};
|
|
|
|
class TrafficPanel : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TrafficPanel(QAbstractItemModel * trafficModel, QWidget * parent);
|
|
|
|
private:
|
|
void CreateTable(QAbstractItemModel * trafficModel);
|
|
void FillTable();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
// void OnCheckBoxClicked(int row, int state);
|
|
|
|
private:
|
|
QTableView * m_table = Q_NULLPTR;
|
|
};
|
|
} // namespace traffxml
|