Eclipse SUMO - Simulation of Urban MObility
GNEOverwriteElementsDialog.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3// Copyright (C) 2001-2022 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// Dialog used to ask user if overwrite elements during loading
19/****************************************************************************/
20#pragma once
21#include <config.h>
22
24
25// ===========================================================================
26// class declarations
27// ===========================================================================
29
30// ===========================================================================
31// class definitions
32// ===========================================================================
33
38class GNEOverwriteElementsDialog : public FXDialogBox {
41
42public:
44 enum class Result {
45 ACCEPT, // load elements
46 CANCEL, // cancel load
47 OVERWRITE // load elements, overwritting elements with the same ID
48
49 };
50
52 GNEOverwriteElementsDialog(GNEApplicationWindow* applicationWindow, const std::string elementType);
53
56
58 Result getResult() const;
59
63 long onCmdSelectOption(FXObject* obj, FXSelector, void*);
64
66 long onCmdClose(FXObject* obj, FXSelector, void*);
67
69
70protected:
72 FOX_CONSTRUCTOR(GNEOverwriteElementsDialog)
73
74
75 FXButton* myAcceptButton = nullptr;
76
78 FXButton* myCancelButton = nullptr;
79
81 FXButton* myOverwriteButton = nullptr;
82
85
86private:
89
92};
93
The main window of the Netedit.
Dialog for edit rerouters.
long onCmdClose(FXObject *obj, FXSelector, void *)
event when dialog is closed
FXButton * myAcceptButton
FOX need this.
Result myResult
result (by default cancel)
FXButton * myCancelButton
button for cancel
GNEOverwriteElementsDialog(GNEApplicationWindow *applicationWindow, const std::string elementType)
Constructor.
FXButton * myOverwriteButton
button for overwritte
long onCmdSelectOption(FXObject *obj, FXSelector, void *)