Initialisierung.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <Knopf.h>
  4. #include <Bild.h>
  5. #include <AuswahlBox.h>
  6. #include <Tabelle.h>
  7. #include <Diagramm.h>
  8. #include <initializer_list>
  9. using namespace Framework;
  10. struct OBJTabelleSpalteIni
  11. {
  12. char *name;
  13. int breite;
  14. int minBreite;
  15. int maxBreite;
  16. };
  17. Knopf *initKnopf( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *titel );
  18. KontrollKnopf *initKontrollKnopf( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *txt );
  19. TextFeld *initTextFeld( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, char *txt );
  20. AuswahlBox *initAuswahlBox( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< char * > values );
  21. ObjTabelle *initObjTabelle( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe );
  22. LDiag *initLinienDiagramm( int x, int y, int br, int hö, Schrift *zSchrift, __int64 style, DiagDaten *data );
  23. #endif