Eclipse SUMO - Simulation of Urban MObility
GNEAbout.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-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
14 // The "About" - dialog for NETEDIT, (adapted from GUIDialog_AboutSUMO)
15 /****************************************************************************/
16 #ifndef GNEAbout_h
17 #define GNEAbout_h
18 
19 
20 // ===========================================================================
21 // included modules
22 // ===========================================================================
23 #include <config.h>
24 
25 #include <fx.h>
26 
27 
28 // ===========================================================================
29 // class definitions
30 // ===========================================================================
35 class GNEAbout : public FXDialogBox {
36 public:
40  GNEAbout(FXWindow* parent);
41 
43  ~GNEAbout();
44 
46  void create();
47 
48 private:
50  FXFont* myHeadlineFont;
51 };
52 
53 
54 #endif
55 
56 /****************************************************************************/
57 
GNEAbout::myHeadlineFont
FXFont * myHeadlineFont
Font for the widget.
Definition: GNEAbout.h:50
GNEAbout::~GNEAbout
~GNEAbout()
Destructor.
Definition: GNEAbout.cpp:91
GNEAbout::create
void create()
Creates the widget.
Definition: GNEAbout.cpp:86
GNEAbout
The application's "About" - dialog.
Definition: GNEAbout.h:35
config.h
GNEAbout::GNEAbout
GNEAbout(FXWindow *parent)
Constructor.
Definition: GNEAbout.cpp:38