Go to the source code of this file.
|
| #define | makeknob(name, x, y, hint, unit, oname) |
| #define | makenesled(name, x, y, ttip) |
| #define | makedcled(name, x, y, ttip, active) |
◆ makedcled
| #define makedcled |
( |
| name, |
|
|
| x, |
|
|
| y, |
|
|
| ttip, |
|
|
| active ) |
Value:PixmapButton *
name =
new PixmapButton(
this,
nullptr ); \
name -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( active ) ); \
name -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap(
"nesdc_off" ) ); \
int y
Definition inflate.c:1588
unsigned x[BMAX+1]
Definition inflate.c:1586
static const char * name
Definition pugl.h:1582
◆ makeknob
Value:name =
new Knob( KnobType::Styled,
this ); \
name ->setObjectName( oname ); \
name ->setFixedSize( 29, 29 );
static PuglViewHint hint
Definition pugl.h:1707
png_const_structrp png_const_inforp int * unit
Definition png.h:2161
◆ makenesled
| #define makenesled |
( |
| name, |
|
|
| x, |
|
|
| y, |
|
|
| ttip ) |
Value:name =
new PixmapButton(
this,
nullptr ); \
name -> setCheckable(
true ); \
name -> setActiveGraphic( PLUGIN_NAME::getIconPixmap(
"nesled_on" ) ); \
name -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap(
"nesled_off" ) ); \