2016-10-10 09:49:46 +10:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 Alexander Drozdov.
|
|
|
|
|
** Contact: adrozdoff@gmail.com
|
|
|
|
|
**
|
|
|
|
|
** This file is part of CMakeProjectManager2 plugin.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-09-14 15:18:50 +02:00
|
|
|
#include <QComboBox>
|
2016-10-10 09:49:46 +10:00
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
|
|
2017-09-14 15:18:50 +02:00
|
|
|
#include <utils/fileutils.h>
|
|
|
|
|
|
2016-10-10 09:49:46 +10:00
|
|
|
namespace CMakeProjectManager {
|
|
|
|
|
|
|
|
|
|
class ConfigModelItemDelegate : public QStyledItemDelegate
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2017-09-14 15:18:50 +02:00
|
|
|
|
2016-10-10 09:49:46 +10:00
|
|
|
public:
|
2019-05-28 13:49:26 +02:00
|
|
|
ConfigModelItemDelegate(const Utils::FilePath &base, QObject *parent = nullptr);
|
2017-09-14 15:18:50 +02:00
|
|
|
|
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
|
|
|
|
|
const QModelIndex &index) const final;
|
|
|
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const final;
|
|
|
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model,
|
|
|
|
|
const QModelIndex &index) const final;
|
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const final;
|
2016-10-10 09:49:46 +10:00
|
|
|
|
2017-09-14 15:18:50 +02:00
|
|
|
private:
|
2019-05-28 13:49:26 +02:00
|
|
|
Utils::FilePath m_base;
|
2017-09-14 15:18:50 +02:00
|
|
|
QComboBox m_measurement;
|
2016-10-10 09:49:46 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace CMakeProjectManager
|