Antares Simulator
Power System Simulator
property.cluster.update.h
1 /*
2  * Copyright 2007-2025, 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 
26 namespace Antares::Window::Inspector
27 {
29 {
30 public:
31  explicit ClusterUpdater(Frame& frame);
32  bool changeName(const wxVariant& value);
33  bool changeGroup(const wxVariant& value);
34  bool changeUnit(const wxVariant& value);
35  bool changeNominalCapacity(const wxVariant& value);
36  bool changeEnabled(const wxVariant& value);
37 
38 protected:
39  Data::Cluster::Set clusters;
40  std::vector<const wxChar*> groups;
41  Frame& pFrame;
42  wxPGProperty* unitCount;
43  wxPGProperty* installedCapacity;
44  wxPGProperty* nominalCapacity;
45 
46 private:
47  virtual void OnCommonSettingsChanged() = 0;
48  virtual void OnStudyClusterGroupChanged(Data::Area*) = 0;
49  virtual void OnStudyClusterRenamed(Data::Cluster*) = 0;
50 };
51 
53 {
54 public:
56 
57 private:
58  virtual void OnCommonSettingsChanged() override;
59  virtual void OnStudyClusterGroupChanged(Data::Area* area);
60  virtual void OnStudyClusterRenamed(Data::Cluster* cluster);
61 };
62 
64 {
65 public:
67 
68 private:
69  virtual void OnCommonSettingsChanged() override;
70  virtual void OnStudyClusterGroupChanged(Data::Area* area);
71  virtual void OnStudyClusterRenamed(Data::Cluster* cluster);
72 };
73 
74 } // namespace Antares::Window::Inspector
Definition for a single area.
Definition: area.h:51
Definition: cluster.h:46
Definition: property.cluster.update.h:64
Definition: property.cluster.update.h:53
Definition: property.cluster.update.h:29
Definition: frame.h:37
std::shared_ptr< InspectorData > Ptr
The most suitable smart pointer for the class.
Definition: data.h:40