Initialisierung.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <Knopf.h>
  4. #include <Fenster.h>
  5. #include <TextFeld.h>
  6. #include <Schrift.h>
  7. #include <Bild.h>
  8. #include <AuswahlBox.h>
  9. #include <Tabelle.h>
  10. #include <initializer_list>
  11. using namespace Framework;
  12. struct OBJTabelleSpalteIni
  13. {
  14. char *name;
  15. int breite;
  16. int minBreite;
  17. int maxBreite;
  18. };
  19. Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *titel );
  20. KontrollKnopf *initKontrollKnopf( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *txt );
  21. Fenster *initFenster( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *titel );
  22. TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, int style, char *txt );
  23. BildZ *initBildZ( int x, int y, int br, int hö, int style, Bild *b );
  24. AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, int style, std::initializer_list< char * > values );
  25. ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, int style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe );
  26. void initToolTip( Zeichnung *obj, const char *txt, Schrift *schrift, Bildschirm *zBs );
  27. #endif