source: trunk/src/org/expeditee/settings/exploratorysearch/ExploratorySearchSettings.java@ 766

Last change on this file since 766 was 766, checked in by csl14, 10 years ago

Added Exploratory Search settings package; can now specify height and width or fullscreen mode for JfxBrowser and specify whitespace margins

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1package org.expeditee.settings.exploratorysearch;
2
3import org.expeditee.items.Text;
4import org.expeditee.setting.BooleanSetting;
5import org.expeditee.setting.IntegerSetting;
6import org.expeditee.setting.StringSetting;
7
8/**
9 * The settings for the exploratory search user interface.
10 * @author csl14
11 */
12public abstract class ExploratorySearchSettings {
13
14 public static final StringSetting HomePage = new StringSetting("The home page for the Exploratory Search Browser", "https://duckduckgo.com");
15
16 public static final BooleanSetting BrowserFullScreen = new BooleanSetting("Start Exploratory Search browser in fullscreen", true);
17
18 public static final IntegerSetting BrowserDefaultWidth = new IntegerSetting("Default Browser width", 1008);
19
20 public static final IntegerSetting BrowserDefaultHeight = new IntegerSetting("Default Browser height", 660);
21
22 public static final IntegerSetting BrowserLeftMargin = new IntegerSetting("Size of lefthand margin for Browser", 0);
23
24 public static final IntegerSetting BrowserRightMargin = new IntegerSetting("Size of right hand margin for Browser", 0);
25
26 public static final IntegerSetting BrowserTopMargin = new IntegerSetting("Size of Top margin for Browser", 0);
27
28 public static final IntegerSetting BrowserBottomMargin = new IntegerSetting("Size of bottom margin for Browser", 0);
29}
Note: See TracBrowser for help on using the repository browser.