Antares Simulator
Power System Simulator
Loading...
Searching...
No Matches
scenario-builder-hydro-final-levels-renderer.h
1/*
2** Copyright 2007-2023 RTE
3** Authors: RTE-international / Redstork / Antares_Simulator Team
4**
5** This file is part of Antares_Simulator.
6**
7** Antares_Simulator is free software: you can redistribute it and/or modify
8** it under the terms of the GNU General Public License as published by
9** the Free Software Foundation, either version 3 of the License, or
10** (at your option) any later version.
11**
12** There are special exceptions to the terms and conditions of the
13** license as they are applied to this software. View the full text of
14** the exceptions in file COPYING.txt in the directory of this software
15** distribution
16**
17** Antares_Simulator is distributed in the hope that it will be useful,
18** but WITHOUT ANY WARRANTY; without even the implied warranty of
19** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20** GNU General Public License for more details.
21**
22** You should have received a copy of the GNU General Public License
23** along with Antares_Simulator. If not, see <http://www.gnu.org/licenses/>.
24**
25** SPDX-License-Identifier: licenceRef-GPL3_WITH_RTE-Exceptions
26*/
27#ifndef __ANTARES_TOOLBOX_COMPONENT_DATAGRID_RENDERER_HYDRO_FINAL_LEVELS_SCENARIO_BUILDER_H__
28#define __ANTARES_TOOLBOX_COMPONENT_DATAGRID_RENDERER_HYDRO_FINAL_LEVELS_SCENARIO_BUILDER_H__
29
30#include "scenario-builder-renderer-base.h"
31
32namespace Antares
33{
34namespace Component
35{
36namespace Datagrid
37{
38namespace Renderer
39{
41{
42public:
44
45 wxString cellValue(int x, int y) const;
46 bool cellValue(int x, int y, const Yuni::String& value);
47 double cellNumericValue(int x, int y) const;
48 IRenderer::CellStyle cellStyle(int x, int y) const;
49}; // class hydroLevelsScBuilderRenderer
50
51} // namespace Renderer
52} // namespace Datagrid
53} // namespace Component
54} // namespace Antares
55
56#endif // __ANTARES_TOOLBOX_COMPONENT_DATAGRID_RENDERER_HYDRO_FINAL_LEVELS_SCENARIO_BUILDER_H__
Definition scenario-builder-renderer-base.h:87
Definition scenario-builder-hydro-final-levels-renderer.h:41
wxString cellValue(int x, int y) const
Get the string representation of a Cell.
Definition scenario-builder-hydro-final-levels-renderer.cpp:41
double cellNumericValue(int x, int y) const
Get the floating value of a Cell.
Definition scenario-builder-hydro-final-levels-renderer.cpp:61