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

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

Fullscreen webbrowser now gets actual width and height

  • 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 // Vert offset for the JfxBrowser's position to work with the Exploratory Search web browser overlay
15 public static final int BROWSER_VERT_OFFSET = 70;
16
17 public static final BooleanSetting BrowserFullScreen = new BooleanSetting("Start Exploratory Search browser in fullscreen", true);
18
19 public static final IntegerSetting BrowserDefaultWidth = new IntegerSetting("Default Browser width", 1008);
20
21 public static final IntegerSetting BrowserDefaultHeight = new IntegerSetting("Default Browser height", 660);
22
23 public static final IntegerSetting BrowserLeftMargin = new IntegerSetting("Size of left hand margin for Browser", 0);
24
25 public static final IntegerSetting BrowserRightMargin = new IntegerSetting("Size of right hand margin for Browser", 0);
26
27 public static final IntegerSetting BrowserTopMargin = new IntegerSetting("Size of Top margin for Browser", 0);
28
29 public static final IntegerSetting BrowserBottomMargin = new IntegerSetting("Size of bottom margin for Browser", 0);
30}
Note: See TracBrowser for help on using the repository browser.