|
@@ -19,7 +19,7 @@ KontrollKnopf *initKontrollKnopf( int x, int y, int br, int h
|
|
{
|
|
{
|
|
KontrollKnopf *ret = new KontrollKnopf();
|
|
KontrollKnopf *ret = new KontrollKnopf();
|
|
ret->setMausEreignis( _ret1ME );
|
|
ret->setMausEreignis( _ret1ME );
|
|
- ret->setStyle( style );
|
|
|
|
|
|
+ ret->addStyle( style );
|
|
ret->setSchriftZ( zSchrift->getThis() );
|
|
ret->setSchriftZ( zSchrift->getThis() );
|
|
ret->setText( txt );
|
|
ret->setText( txt );
|
|
ret->setSText( txt );
|
|
ret->setSText( txt );
|
|
@@ -67,7 +67,7 @@ TextFeld *initTextFeld( int x, int y, int br, int h
|
|
AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< char * > values )
|
|
AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< char * > values )
|
|
{
|
|
{
|
|
AuswahlBox *ret = new AuswahlBox();
|
|
AuswahlBox *ret = new AuswahlBox();
|
|
- ret->setStyle( style );
|
|
|
|
|
|
+ ret->addStyle( style );
|
|
ret->setPosition( x, y );
|
|
ret->setPosition( x, y );
|
|
ret->setSize( br, hö );
|
|
ret->setSize( br, hö );
|
|
if( ( style | AuswahlBox::Style::Hintergrund ) == style )
|
|
if( ( style | AuswahlBox::Style::Hintergrund ) == style )
|
|
@@ -113,7 +113,7 @@ AuswahlBox *initAuswahlBox( int x, int y, int br, int h
|
|
ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe )
|
|
ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe )
|
|
{
|
|
{
|
|
ObjTabelle *ret = new ObjTabelle();
|
|
ObjTabelle *ret = new ObjTabelle();
|
|
- ret->setStyle( style );
|
|
|
|
|
|
+ ret->addStyle( style );
|
|
ret->setPosition( x, y );
|
|
ret->setPosition( x, y );
|
|
ret->setSize( br, hö );
|
|
ret->setSize( br, hö );
|
|
if( ( style | ObjTabelle::Style::Erlaubt ) == style )
|
|
if( ( style | ObjTabelle::Style::Erlaubt ) == style )
|