#ifndef Initialisierung_H #define Initialisierung_H #include #include #include #include #include #include #include #include using namespace Framework; struct OBJTabelleSpalteIni { char *name; int breite; int minBreite; int maxBreite; }; Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *titel ); KontrollKnopf *initKontrollKnopf( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *txt ); Fenster *initFenster( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *titel ); TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *txt ); BildZ *initBildZ( int x, int y, int br, int hö, int style, Bild *b ); AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, int style, std::initializer_list< char * > values ); ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, int style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe ); void initToolTip( Zeichnung *obj, const char *txt, Schrift *schrift, Bildschirm *zBs ); #endif