Eclipse SUMO - Simulation of Urban MObility
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
Functions
a
c
e
f
g
h
i
j
l
n
o
r
s
t
u
Variables
a
c
d
f
g
i
j
k
l
m
o
p
r
s
t
v
Typedefs
b
c
d
e
f
g
i
j
k
m
n
o
p
r
s
t
u
v
Enumerations
Enumerator
a
c
d
f
m
p
s
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
r
s
t
v
w
Enumerations
a
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
z
Properties
a
c
d
e
f
g
h
m
n
p
r
s
t
u
v
y
Related Symbols
:
a
b
d
f
g
m
n
o
p
r
s
w
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
v
w
Variables
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
x
y
z
Typedefs
a
c
e
f
g
i
l
m
n
p
r
s
Enumerations
a
c
d
e
f
g
i
j
k
l
m
n
o
p
r
s
t
v
x
Enumerator
a
b
d
f
g
i
k
l
m
p
r
s
t
v
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
MFXStaticToolTip.h
Go to the documentation of this file.
1
/****************************************************************************/
2
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3
// Copyright (C) 2006-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
//
19
/****************************************************************************/
20
21
#pragma once
22
#include <config.h>
23
24
#include "
fxheader.h
"
25
27
class
MFXStaticToolTip
:
protected
FXToolTip {
29
FXDECLARE(
MFXStaticToolTip
)
30
31
public
:
33
MFXStaticToolTip
(FXApp* app);
34
36
~MFXStaticToolTip
();
37
39
void
enableStaticToolTip
(
const
bool
value);
40
42
bool
isStaticToolTipEnabled
()
const
;
43
45
void
showStaticToolTip
(
const
FXString& toolTipText);
46
48
void
hideStaticToolTip
();
49
53
long
onPaint
(FXObject* obj, FXSelector sel,
void
* ptr);
54
56
long
onUpdate
(FXObject* sender, FXSelector sel,
void
* ptr);
57
59
60
protected
:
62
MFXStaticToolTip
();
63
64
private
:
66
bool
myEnableStaticTooltip
=
true
;
67
};
27
class
MFXStaticToolTip
:
protected
FXToolTip {
…
};
MFXStaticToolTip
MFXStaticToolTip (based on FXToolTip)
Definition
MFXStaticToolTip.h:27
MFXStaticToolTip::onUpdate
long onUpdate(FXObject *sender, FXSelector sel, void *ptr)
called when tooltip is updated
Definition
MFXStaticToolTip.cpp:114
MFXStaticToolTip::showStaticToolTip
void showStaticToolTip(const FXString &toolTipText)
show static toolTip
Definition
MFXStaticToolTip.cpp:79
MFXStaticToolTip::myEnableStaticTooltip
bool myEnableStaticTooltip
flag for enable/disable static tooltip
Definition
MFXStaticToolTip.h:66
MFXStaticToolTip::onPaint
long onPaint(FXObject *obj, FXSelector sel, void *ptr)
Definition
MFXStaticToolTip.cpp:103
MFXStaticToolTip::enableStaticToolTip
void enableStaticToolTip(const bool value)
enable/disable static tooltip
Definition
MFXStaticToolTip.cpp:62
MFXStaticToolTip::~MFXStaticToolTip
~MFXStaticToolTip()
destructor
Definition
MFXStaticToolTip.cpp:58
MFXStaticToolTip::hideStaticToolTip
void hideStaticToolTip()
hide static toolTip
Definition
MFXStaticToolTip.cpp:94
MFXStaticToolTip::MFXStaticToolTip
MFXStaticToolTip()
FOX need this.
Definition
MFXStaticToolTip.cpp:132
MFXStaticToolTip::isStaticToolTipEnabled
bool isStaticToolTipEnabled() const
check staticToolTip is enabled
Definition
MFXStaticToolTip.cpp:73
fxheader.h
src
utils
foxtools
MFXStaticToolTip.h
Generated on Thu Apr 3 2025 00:08:28 for Eclipse SUMO - Simulation of Urban MObility by
1.9.8