/jEdit/branches/plugin_packages/macros/Properties/Look_and_Feel_Properties.bsh

# · Unknown · 58 lines · 51 code · 7 blank · 0 comment · 0 complexity · cc45d57b7604b8a0a1b445969d7de33f MD5 · raw file

  1. /*
  2. * Look_and_Feel_Properties.bsh - a BeanShell macro script for the
  3. * jEdit text editor - writes current look and feel
  4. * properties to new text buffer
  5. * Copyright (C) 2001 John Gellene
  6. * jgellene@nyc.rr.com
  7. * http://community.jedit.org
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with the jEdit program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. * $Id: Look_and_Feel_Properties.bsh 4911 2003-11-12 00:24:11Z spestov $
  24. *
  25. * Checked for jEdit 4.0 API
  26. *
  27. */
  28. void lookAndFeelProperties()
  29. {
  30. keys = javax.swing.UIManager.getLookAndFeelDefaults().keys();
  31. sb = new StringBuffer("--listing look and feel property names--\n");
  32. while(keys.hasMoreElements())
  33. {
  34. sb.append(keys.nextElement());
  35. sb.append('\n');
  36. }
  37. newbuf = jEdit.newFile(view);
  38. newbuf.insert(0, sb.toString());
  39. }
  40. lookAndFeelProperties();
  41. /*
  42. Macro index data (in DocBook format)
  43. <listitem>
  44. <para><filename>Look_and_Feel_Properties.bsh</filename></para>
  45. <abstract><para>
  46. Writes an unsorted list of the names of Java Look and Feel
  47. properties in a new buffer.
  48. </para></abstract>
  49. </listitem>
  50. */
  51. // end Look_and_Feel_Properties.bsh