2012-06-26 16:10:41 +02:00
|
|
|
//##################################################################################################
|
|
|
|
|
//
|
|
|
|
|
// Custom Visualization Core library
|
2013-09-20 15:22:29 +02:00
|
|
|
// 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.
|
2012-06-26 16:10:41 +02:00
|
|
|
//
|
|
|
|
|
//##################################################################################################
|
|
|
|
|
|
|
|
|
|
#include "cafPdmUiDefaultObjectEditor.h"
|
|
|
|
|
|
2018-01-11 13:49:42 +01:00
|
|
|
#include "cafFilePath.h"
|
2017-09-13 07:30:06 +02:00
|
|
|
#include "cafPdmField.h"
|
2015-07-29 14:19:43 +02:00
|
|
|
#include "cafPdmProxyValueField.h"
|
|
|
|
|
#include "cafPdmUiCheckBoxEditor.h"
|
2017-09-11 15:26:22 +02:00
|
|
|
#include "cafPdmUiDateEditor.h"
|
2015-07-29 14:19:43 +02:00
|
|
|
#include "cafPdmUiFieldEditorHandle.h"
|
2018-01-11 13:49:42 +01:00
|
|
|
#include "cafPdmUiFilePathEditor.h"
|
2012-06-26 16:10:41 +02:00
|
|
|
#include "cafPdmUiLineEditor.h"
|
2012-09-18 15:21:04 +02:00
|
|
|
#include "cafPdmUiListEditor.h"
|
2020-06-19 07:53:59 +02:00
|
|
|
#include "cafPdmUiTimeEditor.h"
|
2012-09-18 15:21:04 +02:00
|
|
|
|
2017-09-11 15:26:22 +02:00
|
|
|
#include <QGridLayout>
|
2012-06-26 16:10:41 +02:00
|
|
|
|
|
|
|
|
namespace caf
|
|
|
|
|
{
|
|
|
|
|
// Register default field editor for selected types
|
2020-06-19 07:53:59 +02:00
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiCheckBoxEditor, bool );
|
|
|
|
|
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiLineEditor, QString );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiDateEditor, QDate );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiDateEditor, QDateTime );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiTimeEditor, QTime );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiLineEditor, int );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiLineEditor, double );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiLineEditor, float );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiLineEditor, quint64 );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiListEditor, std::vector<QString> );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiListEditor, std::vector<int> );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiListEditor, std::vector<unsigned int> );
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiListEditor, std::vector<float> );
|
|
|
|
|
|
|
|
|
|
CAF_PDM_UI_REGISTER_DEFAULT_FIELD_EDITOR( PdmUiFilePathEditor, FilePath );
|
2018-11-02 14:04:29 +01:00
|
|
|
|
2012-09-18 15:21:04 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
///
|
2012-09-18 15:21:04 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2018-11-02 14:04:29 +01:00
|
|
|
PdmUiDefaultObjectEditor::PdmUiDefaultObjectEditor()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-18 15:21:04 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
///
|
2012-09-18 15:21:04 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2018-11-02 14:04:29 +01:00
|
|
|
PdmUiDefaultObjectEditor::~PdmUiDefaultObjectEditor()
|
|
|
|
|
{
|
|
|
|
|
}
|
2012-06-26 16:10:41 +02:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
///
|
2012-06-26 16:10:41 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
QWidget* PdmUiDefaultObjectEditor::createWidget( QWidget* parent )
|
2012-06-26 16:10:41 +02:00
|
|
|
{
|
2020-06-19 07:53:59 +02:00
|
|
|
QWidget* widget = new QWidget( parent );
|
|
|
|
|
widget->setObjectName( "ObjectEditor" );
|
2017-09-11 15:26:22 +02:00
|
|
|
return widget;
|
2012-06-26 16:10:41 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-11 15:31:20 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
///
|
2016-10-11 15:31:20 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-06-19 07:53:59 +02:00
|
|
|
void PdmUiDefaultObjectEditor::recursivelyConfigureAndUpdateTopLevelUiOrdering( const PdmUiOrdering& topLevelUiOrdering,
|
|
|
|
|
const QString& uiConfigName )
|
2016-10-11 15:31:20 +02:00
|
|
|
{
|
2020-06-19 07:53:59 +02:00
|
|
|
CAF_ASSERT( this->widget() );
|
2017-09-12 10:18:40 +02:00
|
|
|
|
2020-06-19 07:53:59 +02:00
|
|
|
recursivelyConfigureAndUpdateUiOrderingInNewGridLayout( topLevelUiOrdering, this->widget(), uiConfigName );
|
2016-10-11 15:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
2012-06-26 16:10:41 +02:00
|
|
|
} // end namespace caf
|