Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/netedit/dialogs/GNEAboutDialog.h
169678 views
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
/****************************************************************************/
14
/// @file GNEAboutDialog.h
15
/// @author Jakob Erdmann
16
/// @date Feb 2011
17
///
18
// The "About" - dialog for netedit, (adapted from GUIDialog_AboutSUMO)
19
/****************************************************************************/
20
#pragma once
21
#include <config.h>
22
23
#include "GNEDialog.h"
24
25
// ===========================================================================
26
// class definitions
27
// ===========================================================================
28
29
class GNEAboutDialog : public GNEDialog {
30
31
public:
32
/// @brief Constructor
33
GNEAboutDialog(GNEApplicationWindow* applicationWindow);
34
35
/// @brief Destructor
36
~GNEAboutDialog();
37
38
/// @brief run internal test
39
void runInternalTest(const InternalTestStep::DialogArgument* dialogArgument);
40
41
private:
42
/// @brief Font for the widget
43
FXFont* myHeadlineFont;
44
45
/// @brief Invalidated copy constructor.
46
GNEAboutDialog(const GNEAboutDialog&) = delete;
47
48
/// @brief Invalidated assignment operator
49
GNEAboutDialog& operator=(const GNEAboutDialog& src) = delete;
50
};
51
52