StyleWrapper.h 645 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #include "imguiWrapperTypes.h"
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. extern void iggStyleGetItemSpacing(IggGuiStyle handle, IggVec2 *value);
  8. extern void iggStyleGetItemInnerSpacing(IggGuiStyle handle, IggVec2 *value);
  9. extern void iggStyleGetWindowPadding(IggGuiStyle handle, IggVec2 *value);
  10. extern void iggStyleGetFramePadding(IggGuiStyle handle, IggVec2 *value);
  11. extern void iggStyleSetColor(IggGuiStyle handle, int index, IggVec4 const *color);
  12. extern void iggStyleGetColor(IggGuiStyle handle, int index, IggVec4 *color);
  13. extern void iggStyleScaleAllSizes(IggGuiStyle handle, float scale);
  14. #ifdef __cplusplus
  15. }
  16. #endif