mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
127 lines
4.0 KiB
C++
127 lines
4.0 KiB
C++
//##################################################################################################
|
|
//
|
|
// Custom Visualization Core library
|
|
// Copyright (C) 2011-2013 Ceetron AS
|
|
//
|
|
// This library may be used under the terms of either the GNU General Public License or
|
|
// the GNU Lesser General Public License as follows:
|
|
//
|
|
// GNU General Public License Usage
|
|
// This library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <<http://www.gnu.org/licenses/gpl.html>>
|
|
// for more details.
|
|
//
|
|
// GNU Lesser General Public License Usage
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU Lesser General Public License at <<http://www.gnu.org/licenses/lgpl-2.1.html>>
|
|
// for more details.
|
|
//
|
|
//##################################################################################################
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "cafPdmUiFieldEditorHandle.h"
|
|
#include "cafPdmUiObjectEditorHandle.h"
|
|
|
|
#include <QWidget>
|
|
#include <QPointer>
|
|
#include <QAbstractItemModel>
|
|
|
|
class QTableView;
|
|
|
|
namespace caf
|
|
{
|
|
class PdmUiFieldEditorHandle;
|
|
class PdmUiItem;
|
|
class PdmGuardedObjects;
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
class PdmUiListViewEditorAttribute : public PdmUiEditorAttribute
|
|
{
|
|
public:
|
|
PdmUiListViewEditorAttribute()
|
|
{
|
|
}
|
|
|
|
public:
|
|
QStringList fieldNames;
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
class UiListViewModelPdm : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
UiListViewModelPdm(QObject* parent);
|
|
|
|
void setPdmData(PdmGuardedObjects* objectGroup, const QString& configName);
|
|
|
|
// Qt overrides
|
|
virtual int rowCount( const QModelIndex &parent = QModelIndex( ) ) const;
|
|
virtual int columnCount( const QModelIndex &parent = QModelIndex( ) ) const;
|
|
virtual QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const;
|
|
virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
|
|
|
|
private:
|
|
void computeColumnCount();
|
|
|
|
private:
|
|
PdmGuardedObjects* m_pdmObjectGroup;
|
|
QString m_configName;
|
|
PdmUiListViewEditorAttribute m_editorAttribute;
|
|
int m_columnCount;
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
class PdmUiListViewEditor : public PdmUiObjectEditorHandle
|
|
{
|
|
public:
|
|
PdmUiListViewEditor();
|
|
~PdmUiListViewEditor();
|
|
|
|
protected:
|
|
virtual QWidget* createWidget(QWidget* parent);
|
|
virtual void configureAndUpdateUi(const QString& uiConfigName);
|
|
|
|
private:
|
|
QPointer<QWidget> m_mainWidget;
|
|
QLayout* m_layout;
|
|
|
|
QTableView* m_tableView;
|
|
UiListViewModelPdm* m_tableModelPdm;
|
|
};
|
|
|
|
|
|
|
|
} // end namespace caf
|