Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEAdditionalSquared.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// A abstract class for representation of additional squared elements
19/****************************************************************************/
20#pragma once
21#include <config.h>
22
24
25// ===========================================================================
26// class declaration
27// ===========================================================================
28
29class GNEAdditional;
31
32// ===========================================================================
33// class definitions
34// ===========================================================================
35
37
38public:
41
43 GNEAdditionalSquared(GNEAdditional* additional, const Position pos);
44
47
48private:
51
52protected:
55
58
61
63 void updatedSquaredCenteringBoundary(const bool updateGrid);
64
66 void drawSquaredAdditional(const GUIVisualizationSettings& s, const double size,
67 GUITexture texture, GUITexture selectedTexture) const;
68
69private:
72
75};
GUITexture
An enumeration of gifs used by the gui applications.
Definition GUITextures.h:31
void updatedSquaredGeometry()
updated squared geometry
Position myPosOverView
position over view
GNEAdditional * myAdditional
pointer to additional
GNEAdditionalSquared & operator=(const GNEAdditionalSquared &)=delete
Invalidated assignment operator.
void updatedSquaredCenteringBoundary(const bool updateGrid)
updated squared centering boundary
GNEMoveElementView * myMoveElementView
move element over view
void drawSquaredAdditional(const GUIVisualizationSettings &s, const double size, GUITexture texture, GUITexture selectedTexture) const
draw squared additional
GNEAdditionalSquared(const GNEAdditionalSquared &)=delete
Invalidated copy constructor.
Stores the information about how to visualize structures.
A point in 2D or 3D with translation and scaling methods.
Definition Position.h:37