Initialisierung.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <AuswahlBox.h>
  4. #include <Bild.h>
  5. #include <Diagramm.h>
  6. #include <Fortschritt.h>
  7. #include <initializer_list>
  8. #include <Knopf.h>
  9. #include <Tabelle.h>
  10. using namespace Framework;
  11. struct OBJTabelleSpalteIni
  12. {
  13. char* name;
  14. int breite;
  15. int minBreite;
  16. int maxBreite;
  17. };
  18. Knopf* initKnopf(int x, int y, int br, int hö, __int64 style, char* titel);
  19. KontrollKnopf* initKontrollKnopf(
  20. int x, int y, int br, int hö, __int64 style, char* txt);
  21. TextFeld* initTextFeld(int x, int y, int br, int hö, __int64 style, char* txt);
  22. BildZ* initBildZ(int x, int y, int br, int hö, __int64 style, Bild* b);
  23. AuswahlBox* initAuswahlBox(int x,
  24. int y,
  25. int br,
  26. int hö,
  27. __int64 style,
  28. std::initializer_list<char*> values);
  29. ObjTabelle* initObjTabelle(int x,
  30. int y,
  31. int br,
  32. int hö,
  33. __int64 style,
  34. std::initializer_list<OBJTabelleSpalteIni> spalten,
  35. int überschriftHöhe);
  36. LDiag* initLinienDiagramm(
  37. int x, int y, int br, int hö, __int64 style, DiagDaten* data);
  38. FBalken* initFBalken(int x, int y, int br, int hö, __int64 style);
  39. #endif