Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
GNEKeepElementsDialog.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// Dialog used to ask user if overwrite elements during loading
19/****************************************************************************/
20#pragma once
21#include <config.h>
22
25
26// ===========================================================================
27// class declarations
28// ===========================================================================
29
31
32// ===========================================================================
33// class definitions
34// ===========================================================================
35
38 FXDECLARE(GNEKeepElementsDialog)
39
40public:
42 enum class Result {
43 ACCEPT, // load elements
44 CANCEL, // cancel load
45 OVERWRITE // load elements, overwriting elements with the same ID
46 };
47
49 GNEKeepElementsDialog(GNEApplicationWindow* applicationWindow, const std::string elementType);
50
53
55 void runInternalTest(const InternalTestStep::DialogTest* modalArguments);
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(GNEKeepElementsDialog)
73
74
75 FXButton* myKeepOldButton = nullptr;
76
78 FXButton* myCancelButton = nullptr;
79
81 FXButton* myKeepNewButton = nullptr;
82
85
86private:
89
91 GNEKeepElementsDialog& operator=(const GNEKeepElementsDialog&) = delete;
92};
The main window of Netedit.
Result getResult() const
get result
long onCmdSelectOption(FXObject *obj, FXSelector, void *)
void runInternalTest(const InternalTestStep::DialogTest *modalArguments)
run internal test
long onCmdClose(FXObject *obj, FXSelector, void *)
event when dialog is closed
FXButton * myKeepNewButton
button for overwrite
FXButton * myKeepOldButton
FOX need this.
Result myResult
result (by default cancel)
FXButton * myCancelButton
button for cancel
dialog arguments (used for certain functions that opens modal dialogs)