Omnom_Options.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. OmnomIRC COPYRIGHT 2010,2011 Netham45
  3. This file is part of OmnomIRC.
  4. OmnomIRC is free software: you can redistribute it and/or modifys
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. OmnomIRC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with OmnomIRC. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. //******************************
  16. // Option Engine Start *
  17. //******************************
  18. var Options = "----------------------------------------|"; //40 for future expansion!(and 40 bytes isn't much.) Pipe is a terminator.
  19. function cookieLoad() {
  20. if (document.cookie.indexOf("OmnomIRC") >= 0) {
  21. Options = document.cookie.replace(/^.*OmnomIRC=(.+?)|.*/, "\$1");
  22. }
  23. else {
  24. document.cookie = "OmnomIRC=" + Options + ";expires=Sat, 20 Nov 2286 17:46:39 GMT;";
  25. }
  26. }
  27. function getOption(Option,def) { //Returns what 'Option' is. Option must be a number 1-40. def is what to return if it is not set(equal to -)
  28. if (Option < 1 || Option > 40)
  29. return 0;
  30. result = Options.charAt(Option - 1);
  31. result;
  32. if (result == '-')
  33. return def;
  34. return result;
  35. }
  36. function setOption(Option, value,noRefresh) { //Sets 'Option' to 'value'. Value must be a single char. Option must be a number 1-40.
  37. if (Option < 1 || Option > 40)
  38. return;
  39. Options = Options.substring(0, Option - 1) + value + Options.substring(Option);
  40. document.cookie = "OmnomIRC=" + Options + ";expires=Sat, 20 Nov 2286 17:46:39 GMT;";
  41. if (!noRefresh)
  42. document.location.reload();
  43. }
  44. function getHTMLToggle(State, StateOn, StateOff,StateOnFunc,StateOffFunc) {
  45. result = "";
  46. if (State){
  47. result += "<b>";
  48. result += StateOn;
  49. result += "</b>";
  50. }
  51. else
  52. {
  53. result += '<a href="#" onclick="'+StateOnFunc+'">';
  54. result += StateOn;
  55. result += '</a>';
  56. }
  57. result += "</td><td>";
  58. if (!State)
  59. {
  60. result += "<b>";
  61. result += StateOff;
  62. result += "</b>";
  63. }
  64. else
  65. {
  66. result += '<a href="#" onclick="'+StateOffFunc+'">';
  67. result += StateOff;
  68. result += '</a>';
  69. }
  70. return result;
  71. }
  72. function clearCookies()
  73. {
  74. document.cookie = "OmnomIRC=a;expires=Thu, 01-Jan-1970 00:00:01 GMT;";
  75. document.cookie = "OmnomChannels=a;expires=Thu, 01-Jan-1970 00:00:01 GMT;";
  76. document.location.reload();
  77. }
  78. window.onLoad=cookieLoad();
  79. //******************************
  80. // Option Engine End *
  81. //******************************
  82. //******************************
  83. // Chrome Notification Start *
  84. //******************************
  85. function showNotification(message)
  86. {
  87. if (window.webkitNotifications == undefined || window.webkitNotifications == null || !window.webkitNotifications)
  88. return 0;
  89. if (window.webkitNotifications.checkPermission() != 0)
  90. return 0;
  91. var n
  92. n = window.webkitNotifications.createNotification('http://www.omnimaga.org/favicon.ico', 'OmnomIRC Highlight', message);
  93. n.show();
  94. }
  95. function setAllowNotification()
  96. {
  97. if (window.webkitNotifications == undefined || window.webkitNotifications == null || !window.webkitNotifications)
  98. {
  99. alert("This feature only works in chrome.");
  100. return;
  101. }
  102. window.webkitNotifications.requestPermission(permissionGranted);
  103. }
  104. function permissionGranted()
  105. {
  106. if (window.webkitNotifications.checkPermission() == 0)
  107. {
  108. showNotification("Notifications Enabled!");
  109. setOption(7,'T');
  110. window.location.refresh(true);
  111. }
  112. }
  113. //******************************
  114. // Chrome Notification End *
  115. //******************************