Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEOverwriteElementsDialog.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-2024 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, overwriting elements with the same ID
48 };
49
51 GNEOverwriteElementsDialog(GNEApplicationWindow* applicationWindow, const std::string elementType);
52
55
57 Result getResult() const;
58
62 long onCmdSelectOption(FXObject* obj, FXSelector, void*);
63
65 long onCmdClose(FXObject* obj, FXSelector, void*);
66
68
69protected:
71 FOX_CONSTRUCTOR(GNEOverwriteElementsDialog)
72
73
74 FXButton* myAcceptButton = nullptr;
75
77 FXButton* myCancelButton = nullptr;
78
80 FXButton* myOverwriteButton = nullptr;
81
84
85private:
88
91};
The main window of Netedit.
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
FXButton * myOverwriteButton
button for overwrite
long onCmdSelectOption(FXObject *obj, FXSelector, void *)