Initialisierung.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef Initialisierung_H
  2. #define Initialisierung_H
  3. #include <Fenster.h>
  4. #include <Knopf.h>
  5. #include <TextFeld.h>
  6. #include <Schrift.h>
  7. #include <initializer_list>
  8. #include <AuswahlBox.h>
  9. #include <Tabelle.h>
  10. #include <Bild.h>
  11. #include <Diagramm.h>
  12. #include <Fortschritt.h>
  13. #include <Liste.h>
  14. using namespace Framework;
  15. struct OBJTabelleSpalteIni
  16. {
  17. const char* name;
  18. int breite;
  19. int minBreite;
  20. int maxBreite;
  21. };
  22. #define ABSTYLE AuswahlBox::Style::Sichtbar | AuswahlBox::Style::Erlaubt | AuswahlBox::Style::Rahmen | AuswahlBox::Style::AuswahlBuffer | AuswahlBox::Style::MausBuffer | AuswahlBox::Style::MaxHeight | AuswahlBox::Style::Hintergrund | AuswahlBox::Style::VScroll
  23. #define OTSTYLE ObjTabelle::Style::Sichtbar | ObjTabelle::Style::Erlaubt | ObjTabelle::Style::Rahmen | ObjTabelle::Style::Raster
  24. Knopf* initKnopf(int x, int y, int br, int hö, __int64 style, const char* titel);
  25. KontrollKnopf* initKontrollKnopf(int x, int y, int br, int hö, __int64 style, const char* txt);
  26. Fenster* initFenster(int x, int y, int br, int hö, __int64 style, const char* titel);
  27. TextFeld* initTextFeld(int x, int y, int br, int hö, __int64 style, const char* txt);
  28. BildZ* initBildZ(int x, int y, int br, int hö, __int64 style, Bild* b);
  29. AuswahlBox* initAuswahlBox(int x, int y, int br, int hö, __int64 style, std::initializer_list< const char* > values);
  30. ObjTabelle* initObjTabelle(int x, int y, int br, int hö, __int64 style, std::initializer_list< OBJTabelleSpalteIni > spalten, int überschriftHöhe);
  31. LDiag* initLinienDiagramm(int x, int y, int br, int hö, __int64 style, DiagDaten* data);
  32. FBalken* initFBalken(int x, int y, int br, int hö, __int64 style);
  33. AuswahlListe* initAuswahlListe(int x, int y, int br, int hö, __int64 style, std::initializer_list< const char* > values);
  34. ZeichnungHintergrund* initZeichnungHintergrund(int x, int y, int br, int hö, __int64 style, int farbe);
  35. void initToolTip(Zeichnung* obj, const char* txt);
  36. #endif