Omnom_Misc.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 modify
  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. // Start Indicator functions *
  17. //******************************
  18. indicatorTimer = false;
  19. function startIndicator() {
  20. if (!indicatorTimer) {
  21. indicatorTimer = setInterval(updateIndicator,50);
  22. indicatorPixels = Array(true,true,true,true,true,false,false,false);
  23. }
  24. }
  25. function updateIndicator() {
  26. var indicator = document.getElementById('indicator');
  27. indicator.innerHTML = "";
  28. for (var i=0;i<8;i++) {
  29. if (indicatorPixels[i])
  30. indicator.innerHTML+="<div style='padding:0;margin:0;width:3px;height:3px;background-color:black;'></div>";
  31. else
  32. indicator.innerHTML+="<div style='padding:0;margin:0;width:3px;height:3px;'></div>";
  33. }
  34. var temp = indicatorPixels[7];
  35. for (i=6;i>=0;i--) {
  36. indicatorPixels[(i+1)] = indicatorPixels[i];
  37. }
  38. indicatorPixels[0] = temp;
  39. }
  40. function stopIndicator() {
  41. clearInterval(indicatorTimer);
  42. document.getElementById('indicator').innerHTML = '';
  43. indicatorTimer = false;
  44. }
  45. //******************************
  46. // End Indicator functions *
  47. //******************************
  48. //******************************
  49. // Start old messages functions*
  50. //******************************
  51. var oldMessages = new Array();
  52. var messageCounter = 1;
  53. var currentMessage;
  54. window.addEventListener('keydown',function(e) {
  55. if (document.activeElement.id=="message") {
  56. var messageBoxElement = document.getElementById("message");
  57. if (messageCounter==oldMessages.length)currentMessage=messageBoxElement.value;
  58. if (oldMessages.length!=0) {
  59. if (e.keyCode==38) { //up
  60. if (messageCounter!=0)messageCounter--;
  61. messageBoxElement.value = oldMessages[messageCounter];
  62. } else if (e.keyCode==40) { //down
  63. if (messageCounter!=oldMessages.length)messageCounter++;
  64. if (messageCounter==oldMessages.length) {
  65. messageBoxElement.value = currentMessage;
  66. } else {
  67. messageBoxElement.value = oldMessages[messageCounter];
  68. }
  69. }
  70. }
  71. }
  72. }, false);
  73. function readOldMessagesCookies() {
  74. oldMessages = Array();
  75. var temp = getCookie("oldMessages-"+getChannelEn());
  76. if (temp!=null)
  77. oldMessages = temp.split("\n");
  78. messageCounter = oldMessages.length;
  79. }
  80. //******************************
  81. // End old messages functions *
  82. //******************************