Antares Simulator
Power System Simulator
Loading...
Searching...
No Matches
property.cluster.update.h
1/*
2** Copyright 2007-2024, RTE (https://www.rte-france.com)
3** See AUTHORS.txt
4** SPDX-License-Identifier: MPL-2.0
5** This file is part of Antares-Simulator,
6** Adequacy and Performance assessment for interconnected energy networks.
7**
8** Antares_Simulator is free software: you can redistribute it and/or modify
9** it under the terms of the Mozilla Public Licence 2.0 as published by
10** the Mozilla Foundation, either version 2 of the License, or
11** (at your option) any later version.
12**
13** Antares_Simulator is distributed in the hope that it will be useful,
14** but WITHOUT ANY WARRANTY; without even the implied warranty of
15** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16** Mozilla Public Licence 2.0 for more details.
17**
18** You should have received a copy of the Mozilla Public Licence 2.0
19** along with Antares_Simulator. If not, see <https://opensource.org/license/mpl-2-0/>.
20*/
21#pragma once
22
23#include "data.h"
24#include "frame.h"
25
26namespace Antares
27{
28namespace Window
29{
30namespace Inspector
31{
33{
34public:
35 explicit ClusterUpdater(Frame& frame);
36 bool changeName(const wxVariant& value);
37 bool changeGroup(const wxVariant& value);
38 bool changeUnit(const wxVariant& value);
39 bool changeNominalCapacity(const wxVariant& value);
40 bool changeEnabled(const wxVariant& value);
41
42protected:
43 Data::Cluster::Set clusters;
44 std::vector<const wxChar*> groups;
45 Frame& pFrame;
46 wxPGProperty* unitCount;
47 wxPGProperty* installedCapacity;
48 wxPGProperty* nominalCapacity;
49
50private:
51 virtual void OnCommonSettingsChanged() = 0;
52 virtual void OnStudyClusterGroupChanged(Data::Area*) = 0;
53 virtual void OnStudyClusterRenamed(Data::Cluster*) = 0;
54};
55
57{
58public:
60
61private:
62 virtual void OnCommonSettingsChanged() override;
63 virtual void OnStudyClusterGroupChanged(Data::Area* area);
64 virtual void OnStudyClusterRenamed(Data::Cluster* cluster);
65};
66
68{
69public:
71
72private:
73 virtual void OnCommonSettingsChanged() override;
74 virtual void OnStudyClusterGroupChanged(Data::Area* area);
75 virtual void OnStudyClusterRenamed(Data::Cluster* cluster);
76};
77
78} // namespace Inspector
79} // namespace Window
80} // namespace Antares
Definition for a single area.
Definition area.h:52
Definition cluster.h:48
Definition property.cluster.update.h:68
Definition property.cluster.update.h:57
Definition property.cluster.update.h:33
std::shared_ptr< InspectorData > Ptr
The most suitable smart pointer for the class.
Definition data.h:44