diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2014-05-06 15:54:57 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2014-05-06 15:54:57 +0200 |
| commit | 6a1e6120c4efc46f1d192b0e5fabc06b780113cc (patch) | |
| tree | 96966eb5723f60f225a6359777743ba540ed0534 /qt_adapter.hpp | |
| parent | 7f6f356e4498cf545209f4cb9ee5588d898ebb51 (diff) | |
| download | generic-gui-6a1e6120c4efc46f1d192b0e5fabc06b780113cc.tar.gz generic-gui-6a1e6120c4efc46f1d192b0e5fabc06b780113cc.tar.bz2 generic-gui-6a1e6120c4efc46f1d192b0e5fabc06b780113cc.zip | |
Made fusion model interface strict and the API now bypasses the QtAdapter and instantiates widgets with models instead of adapters
Diffstat (limited to 'qt_adapter.hpp')
| -rw-r--r-- | qt_adapter.hpp | 66 |
1 files changed, 46 insertions, 20 deletions
diff --git a/qt_adapter.hpp b/qt_adapter.hpp index c0aba79..dea660f 100644 --- a/qt_adapter.hpp +++ b/qt_adapter.hpp @@ -33,16 +33,28 @@ struct QtModelType<std::map<std::string, V>> typedef QAbstractTableModel type; }; -template <typename T, typename U> +template <typename T, typename Q> +struct QtAdapter : public Q { + + typedef void view; + + QtAdapter(std::shared_ptr<T>) + {} +}; + +template <typename T> +struct AdapterType; + +template <typename T, typename Model> struct QtWidget : public T { GuiItemDelegate delegate; - std::shared_ptr<U> model; + std::shared_ptr<typename AdapterType<Model>::type> model; - QtWidget(std::shared_ptr<U> model, QWidget* parent = nullptr) + QtWidget(std::shared_ptr<Model> model, QWidget* parent = nullptr) : T(parent) , delegate() - , model(model) + , model(std::make_shared<typename AdapterType<Model>::type>(model)) { T::setModel(this->model.get()); T::setItemDelegate(&delegate); @@ -50,20 +62,11 @@ struct QtWidget : public T { } }; -template <typename T, typename Q> -struct QtAdapter : public Q { - - typedef void view; - - QtAdapter(std::shared_ptr<T>) - {} -}; - template <typename T> struct QtAdapter<T, QAbstractTableModel> : public QAbstractTableModel { typedef QTableView view; - typedef QtWidget<view, QtAdapter<T, QAbstractTableModel>> widget; + typedef QtWidget<view, T> widget; std::shared_ptr<T> model; @@ -102,18 +105,42 @@ struct QtAdapter<T, QAbstractTableModel> : public QAbstractTableModel return to_qvariant<typename T::row_type>(model->get_cell(index.row(), index.column()), index.column()); } + template <bool b> + typename std::enable_if<b, QVariant>::type get_key(int section) const + { + return QVariant(QString::fromStdString(model->key(section))); + } + + template <bool b> + typename std::enable_if<!b, QVariant>::type get_key(int section) const + { + return QVariant(); + } + + template <bool b> + typename std::enable_if<b, QVariant>::type get_field_name(int section) const + { + return QVariant(QString::fromStdString(model->field_name(section))); + } + + template <bool b> + typename std::enable_if<!b, QVariant>::type get_field_name(int section) const + { + return QVariant(); + } + virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override { if(role != Qt::DisplayRole) { return QVariant(); } - if(orientation == Qt::Horizontal && T::has_header_h) { - return QVariant(QString::fromStdString(model->field_name(section))); + if(orientation == Qt::Horizontal) { + return get_field_name<T::has_header_h>(section); } - if(orientation == Qt::Vertical && T::has_header_v) { - return QVariant(QString::fromStdString(model->key(section))); + if(orientation == Qt::Vertical) { + return get_key<T::has_header_v>(section); } return QVariant(); @@ -134,7 +161,6 @@ struct WidgetType { template <typename Model> std::shared_ptr<typename WidgetType<Model>::type> make_qt_widget(std::shared_ptr<Model> x) { - auto adapter_ptr = std::make_shared<typename AdapterType<Model>::type>(x); - auto widget_ptr = std::make_shared<typename WidgetType<Model>::type>(adapter_ptr); + auto widget_ptr = std::make_shared<typename WidgetType<Model>::type>(x); return widget_ptr; } |
