Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

28 rader
638 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_OSDInfoWidget "OSDInfoWidget"
  5. class OSDInfoWidget : public JObject
  6. {
  7. public:
  8. JStrObj BackColor;
  9. JBoolObj EncodeBlend;
  10. JStrObj FrontColor;
  11. JBoolObj PreviewBlend;
  12. JObjArray<JIntObj> RelativePos;
  13. public:
  14. OSDInfoWidget(JObject *pParent = NULL, const char *szName = JK_OSDInfoWidget):
  15. JObject(pParent,szName),
  16. BackColor(this, "BackColor"),
  17. EncodeBlend(this, "EncodeBlend"),
  18. FrontColor(this, "FrontColor"),
  19. PreviewBlend(this, "PreviewBlend"),
  20. RelativePos(this, "RelativePos"){
  21. };
  22. ~OSDInfoWidget(void){};
  23. };
  24. NS_NETSDK_CFG_END