SCGUI.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. SC.loadPackage({ 'SCGUI': {
  2. comment: 'I provide help constructing a GUI. I am made to be used as a mixin to other classes, or as storage for static methods.',
  3. properties: {
  4. mySCGUIWindow: { comment: 'I store a reference to the standard window.' }
  5. },
  6. methods: {
  7. createElement: {
  8. comment: 'I create an GUI element. I expect an object as argument like this: \n{\n'+
  9. '\ttype: type of HTMLElement to create (aString)\n'+
  10. '\twindow: window object (optional)\n'+
  11. '\tparent: parent to append to (optional, aString)\n'+
  12. '\tid: ID of the element (optional, aString)\n'+
  13. '\tattr: attributes of the element (optional, object of key-value-pairs)\n'+
  14. '\tinner: string for innerHTML (optional, aString)\n'+
  15. '}',
  16. code: function (arg){
  17. var elementToCreate = document.createElement(arg.type);
  18. for(var key in arg.attr){
  19. elementToCreate.setAttribute(key, arg.attr[key]);
  20. }
  21. if(arg.id) elementToCreate.setAttribute('id', arg.id);
  22. if(arg.inner) elementToCreate.innerHTML = arg.inner;
  23. if(arg.parent) {
  24. var window = arg.window || this.get('mySCGUIWindow') || window;
  25. var parent = window.document.getElementById(arg.parent);
  26. return parent.appendChild(elementToCreate);
  27. }else{
  28. return elementToCreate;
  29. }
  30. }
  31. },
  32. getElement: {
  33. comment: 'I get an element. I expect an object as argument like this: \n{\n'+
  34. '\tid: element to work on\n'+
  35. '\twindow: window object (optional)\n'+
  36. '}',
  37. code: function(arg){
  38. var window = arg.window || this.get('mySCGUIWindow') || window;
  39. return window.document.getElementById(arg.id);
  40. }
  41. },
  42. setAttribute: {
  43. comment: 'I set the attributes of an element. I expect an object as argument like this: \n{\n'+
  44. '\tid: element to work on\n'+
  45. '\twindow: window object (optional)\n'+
  46. '\tattr: key-value-pairs of the attributes\n'+
  47. '}',
  48. code: function(arg){
  49. var window = arg.window || this.get('mySCGUIWindow') || window;
  50. for(key in arg.attr){
  51. window.document.getElementById(arg.id).setAttribute(key, arg.attr[key]);
  52. }
  53. }
  54. },
  55. addListener: {
  56. comment: 'I add an eventListener to an element. I expect an object as argument like this: \n{\n'+
  57. '\tid: element to work on\n'+
  58. '\twindow: window object (optional)\n'+
  59. '\tevent: name of the event\n'+
  60. '\tcallback: the callback function for the event\n'+
  61. '\tbubbling: true|false\n'+
  62. '}',
  63. code: function(arg){
  64. var window = arg.window || this.get('mySCGUIWindow') || window,
  65. self = this;
  66. window.document.getElementById(arg.id).addEventListener(
  67. arg.event,
  68. function(){
  69. arg.callback.apply(self, arguments);
  70. },
  71. arg.bubbling
  72. );
  73. }
  74. },
  75. showElement: {
  76. comment: 'I make an element visible. I expect an object as argument like this: \n{\n'+
  77. '\tid: element to show\n'+
  78. '\twindow: window object (optional)\n'+
  79. '}',
  80. code: function(arg){
  81. var window = arg.window || this.get('mySCGUIWindow') || window;
  82. window.document.getElementById(arg.id).style.visibility = 'visible';
  83. }
  84. },
  85. hideElement: {
  86. comment: 'I make an element invisible. I expect an object as argument like this: \n{\n'+
  87. '\tid: element to show\n'+
  88. '\twindow: window object (optional)\n'+
  89. '}',
  90. code: function(arg){
  91. var window = arg.window || this.get('mySCGUIWindow') || window;
  92. window.document.getElementById(arg.id).style.visibility = 'hidden';
  93. }
  94. },
  95. emptyElement: {
  96. comment: 'I empyt the innerHTML of an element. I expect an object as argument like this: \n{\n'+
  97. '\tid: element to be emptied\n'+
  98. '\twindow: window object (optional)\n'+
  99. '}',
  100. code: function(arg){
  101. var window = arg.window || this.get('mySCGUIWindow') || window;
  102. window.document.getElementById(arg.id).innerHTML = '';
  103. }
  104. },
  105. deselectOptions: {
  106. comment: 'I deselect all options in a select box. I expect an object as argument like this: \n{\n'+
  107. '\tid: select box element\n'+
  108. '\twindow: window object (optional)\n'+
  109. '}',
  110. code: function(arg){
  111. var window = arg.window || this.get('mySCGUIWindow') || window;
  112. var select = window.document.getElementById(arg.id);
  113. for(var i = 0; i < select.options.length; i++){
  114. select.options[i].selected = false;
  115. }
  116. }
  117. }
  118. }
  119. }});