PolycodeViewBase.js 928 B

123456789101112131415161718192021222324
  1. function PolycodeViewBase() {
  2. Object.defineProperties(this, {
  3. 'windowData': { enumerable: true, configurable: true, get: PolycodeViewBase.prototype.__get_windowData, set: PolycodeViewBase.prototype.__set_windowData},
  4. 'resizable': { enumerable: true, configurable: true, get: PolycodeViewBase.prototype.__get_resizable, set: PolycodeViewBase.prototype.__set_resizable}
  5. })
  6. }
  7. PolycodeViewBase.prototype.__get_windowData = function() {
  8. var retVal = new void()
  9. retVal.__ptr = Polycode.PolycodeViewBase__get_windowData(this.__ptr)
  10. return retVal
  11. }
  12. PolycodeViewBase.prototype.__set_windowData = function(val) {
  13. Polycode.PolycodeViewBase__set_windowData(this.__ptr, val.__ptr)
  14. }
  15. PolycodeViewBase.prototype.__get_resizable = function() {
  16. return Polycode.PolycodeViewBase__get_resizable(this.__ptr)
  17. }
  18. PolycodeViewBase.prototype.__set_resizable = function(val) {
  19. Polycode.PolycodeViewBase__set_resizable(this.__ptr, val)
  20. }