Ignore:
Timestamp:
12/18/13 12:06:13 (11 years ago)
Author:
jts21
Message:

Add method to generate a settings tree containing all settings, and their default values (if applicable)
TODO: Use mixed-case for the setting names instead of printing out the lowercase values (they're lowercase because they're keys for a hashmap)
TODO: Fix settings such as SpellChecker which are enabled simply by existing on the frame (i.e. modify them so they take a true/false value instead)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Misc.java

    r634 r639  
    5050import org.expeditee.items.widgets.WidgetEdge;
    5151import org.expeditee.math.ExpediteeJEP;
     52import org.expeditee.settings.Settings;
    5253import org.expeditee.settings.UserSettings;
    5354import org.expeditee.settings.network.NetworkSettings;
     
    15121513                pan(frame, pan.getText());
    15131514        }
     1515       
     1516        public static Text settings() {
     1517                return Settings.generateSettingsTree();
     1518        }
    15141519}
Note: See TracChangeset for help on using the changeset viewer.