/* * GlobalOptionGroup.java - * :tabSize=4:indentSize=4:noTabs=false: * :folding=explicit: * * Copyright (C) 1998, 2003 Slava Pestov * Portions copyright (C) 1999 mike dillon * Copyright (C) 2006 Alan Ezust * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.jedit.options; import org.gjt.sp.jedit.OptionGroup; import org.gjt.sp.jedit.jEdit; // {{{ class GlobalOptionGroup /** * A model for all of the Global Options. * */ public class GlobalOptionGroup extends OptionGroup { // {{{ Members OptionGroup root; // }}} // {{{ Constructors public GlobalOptionGroup() { this(null); } public GlobalOptionGroup(OptionGroup rootGroup) { super("Global Options"); root = rootGroup; String optionGroups = jEdit.getProperty("options.groups","jedit browser"); String[] groups = optionGroups.split(" "); for (String group : groups) { OptionGroup optionGroup = new OptionGroup(group); String paneList = "options.group." + group; String def = ""; if ("jedit".equals(group)) { def = "general abbrevs appearance context docking editing encodings gutter mouse " + "plugin-manager print firewall save-back shortcuts status syntax textarea " + "toolbar view"; } else if ("browser".equals(group)) { def = "browser.general browser.colors"; } String optionPanes = jEdit.getProperty(paneList, def); String[] panes = optionPanes.split(" "); for (String pane : panes) { optionGroup.addOptionPane(pane); } addGroup(optionGroup); } } // }}} // {{{ addGroup() method void addGroup(OptionGroup group) { if (root != null) { root.addOptionGroup(group); } else { addOptionGroup(group); } }// }}} } // }}}