mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
103 lines
3.5 KiB
C++
103 lines
3.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2016 Statoil ASA
|
|
//
|
|
// ResInsight 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.
|
|
//
|
|
// ResInsight 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmChildArrayField.h"
|
|
#include "cafAppEnum.h"
|
|
|
|
#include <QString>
|
|
#include <QDateTime>
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimSummaryTimeAxisProperties : public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
|
|
enum AxisTitlePositionType
|
|
{
|
|
AXIS_TITLE_CENTER,
|
|
AXIS_TITLE_END
|
|
};
|
|
|
|
enum TimeModeType
|
|
{
|
|
DATE,
|
|
TIME_FROM_SIMULATION_START
|
|
};
|
|
|
|
enum TimeUnitType
|
|
{
|
|
SECONDS,
|
|
MINUTES,
|
|
HOURS,
|
|
DAYS,
|
|
YEARS
|
|
};
|
|
|
|
public:
|
|
RimSummaryTimeAxisProperties();
|
|
|
|
caf::PdmField<int> fontSize;
|
|
caf::PdmField<QString> title;
|
|
caf::PdmField<bool> showTitle;
|
|
caf::PdmField< caf::AppEnum< AxisTitlePositionType > > titlePositionEnum;
|
|
|
|
TimeModeType timeMode() const { return m_timeMode(); }
|
|
void setTimeMode(TimeModeType val) { m_timeMode = val; }
|
|
double fromTimeTToDisplayUnitScale();
|
|
double fromDaysToDisplayUnitScale();
|
|
|
|
double visibleRangeMin() const;
|
|
double visibleRangeMax() const;
|
|
|
|
void setVisibleRangeMin(double value);
|
|
void setVisibleRangeMax(double value);
|
|
|
|
bool isActive() const;
|
|
|
|
protected:
|
|
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
|
virtual QList<caf::PdmOptionItemInfo> calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly) override;
|
|
virtual caf::PdmFieldHandle* objectToggleField() override;
|
|
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) override;
|
|
|
|
double fromDateToDisplayTime(const QDateTime& displayTime);
|
|
QDateTime fromDisplayTimeToDate(double displayTime);
|
|
void updateTimeVisibleRange();
|
|
void updateDateVisibleRange();
|
|
|
|
private:
|
|
caf::PdmField< caf::AppEnum< TimeModeType > > m_timeMode;
|
|
caf::PdmField< caf::AppEnum< TimeUnitType > > m_timeUnit;
|
|
|
|
caf::PdmField<bool> m_isActive;
|
|
caf::PdmField<QDateTime> m_visibleDateRangeMin;
|
|
caf::PdmField<QDateTime> m_visibleDateRangeMax;
|
|
caf::PdmField<double> m_visibleTimeRangeMin;
|
|
caf::PdmField<double> m_visibleTimeRangeMax;
|
|
};
|