GridData gridData;
GridLayout layout;
Composite cSection = new Composite(parent, SWT.NULL);
gridData = new GridData(GridData.VERTICAL_ALIGN_FILL
| GridData.HORIZONTAL_ALIGN_FILL);
cSection.setLayoutData(gridData);
layout = new GridLayout();
layout.marginWidth = 0;
//layout.numColumns = 2;
cSection.setLayout(layout);
int userMode = COConfigurationManager.getIntParameter("User Mode");
if (userMode < REQUIRED_MODE) {
Label label = new Label(cSection, SWT.WRAP);
gridData = new GridData();
label.setLayoutData(gridData);
final String[] modeKeys = {
"ConfigView.section.mode.beginner",
"ConfigView.section.mode.intermediate",
"ConfigView.section.mode.advanced"
};
String param1, param2;
if (REQUIRED_MODE < modeKeys.length)
param1 = MessageText.getString(modeKeys[REQUIRED_MODE]);
else
param1 = String.valueOf(REQUIRED_MODE);
if (userMode < modeKeys.length)
param2 = MessageText.getString(modeKeys[userMode]);
else
param2 = String.valueOf(userMode);
label.setText(MessageText.getString("ConfigView.notAvailableForMode",
new String[] {
param1,
param2
}));
return cSection;
}
Composite cArea = new Composite(cSection, SWT.NONE);
layout = new GridLayout();
layout.marginHeight = 0;
layout.marginWidth = 0;
layout.numColumns = 4;
cArea.setLayout(layout);
cArea.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
BooleanParameter d_play_sound = new BooleanParameter(cArea,
"Play Download Finished", LBLKEY_PREFIX + "playdownloadfinished");
// OS X counterpart for alerts (see below for what is disabled)
if (Constants.isOSX) {
// download info
gridData = new GridData();
gridData.horizontalSpan = 3;
gridData.widthHint = 0;
gridData.heightHint = 0;
Composite d_filler = new Composite(cArea, SWT.NONE);
d_filler.setSize(0, 0);
d_filler.setLayoutData(gridData);
final BooleanParameter d_speechEnabledParameter = new BooleanParameter(
cArea, "Play Download Finished Announcement", LBLKEY_PREFIX
+ "playdownloadspeech");
final StringParameter d_speechParameter = new StringParameter(cArea,
"Play Download Finished Announcement Text");
gridData = new GridData();
gridData.horizontalSpan = 3;
gridData.widthHint = 150;
d_speechParameter.setLayoutData(gridData);
((Text) d_speechParameter.getControl()).setTextLimit(40);
d_speechEnabledParameter.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
d_speechParameter.getControls()));
final Label d_speechInfo = new Label(cArea, SWT.NONE);
gridData = new GridData();
gridData.horizontalSpan = 4;
gridData.horizontalIndent = 24;
d_speechInfo.setLayoutData(gridData);
Messages.setLanguageText(d_speechInfo, LBLKEY_PREFIX
+ "playdownloadspeech.info");
}
//Option disabled on OS X, as impossible to make it work correctly
if (!Constants.isOSX) {
Image imgOpenFolder = ImageRepository.getImage("openFolderButton");
// download info
gridData = new GridData(GridData.FILL_HORIZONTAL);
final StringParameter d_pathParameter = new StringParameter(cArea,
"Play Download Finished File", "");
if (d_pathParameter.getValue().length() == 0) {
d_pathParameter.setValue("<default>");
}
d_pathParameter.setLayoutData(gridData);
Button d_browse = new Button(cArea, SWT.PUSH);
d_browse.setImage(imgOpenFolder);
imgOpenFolder.setBackground(d_browse.getBackground());
d_browse.setToolTipText(MessageText.getString("ConfigView.button.browse"));
d_browse.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
FileDialog dialog = new FileDialog(parent.getShell(),
SWT.APPLICATION_MODAL);
dialog.setFilterExtensions(new String[] { "*.wav"
});
dialog.setFilterNames(new String[] { "*.wav"
});
dialog.setText(MessageText.getString(INTERFACE_PREFIX + "wavlocation"));
final String path = dialog.open();
if (path != null) {
d_pathParameter.setValue(path);
new AEThread("SoundTest") {
public void runSupport() {
try {
Applet.newAudioClip(new File(path).toURL()).play();
Thread.sleep(2500);
} catch (Throwable e) {
}
}
}.start();
}
}
});
Label d_sound_info = new Label(cArea, SWT.WRAP);
Messages.setLanguageText(d_sound_info, INTERFACE_PREFIX
+ "wavlocation.info");
gridData = new GridData(GridData.FILL_HORIZONTAL);
gridData.widthHint = 100;
d_sound_info.setLayoutData(gridData);
d_play_sound.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
d_pathParameter.getControls()));
d_play_sound.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
new Control[] {
d_browse,
d_sound_info
}));
//
}
BooleanParameter f_play_sound = new BooleanParameter(cArea,
"Play File Finished", LBLKEY_PREFIX + "playfilefinished");
// OS X counterpart for alerts (see below for what is disabled)
if (Constants.isOSX) {
// per-file info
gridData = new GridData();
gridData.horizontalSpan = 3;
gridData.widthHint = 0;
gridData.heightHint = 0;
Composite f_filler = new Composite(cArea, SWT.NONE);
f_filler.setSize(0, 0);
f_filler.setLayoutData(gridData);
final BooleanParameter f_speechEnabledParameter = new BooleanParameter(
cArea, "Play File Finished Announcement", LBLKEY_PREFIX
+ "playfilespeech");
final StringParameter f_speechParameter = new StringParameter(cArea,
"Play File Finished Announcement Text");
gridData = new GridData();
gridData.horizontalSpan = 3;
gridData.widthHint = 150;
f_speechParameter.setLayoutData(gridData);
((Text) f_speechParameter.getControl()).setTextLimit(40);
f_speechEnabledParameter.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
f_speechParameter.getControls()));
final Label speechInfo = new Label(cArea, SWT.NONE);
gridData = new GridData();
gridData.horizontalSpan = 4;
gridData.horizontalIndent = 24;
speechInfo.setLayoutData(gridData);
Messages.setLanguageText(speechInfo, LBLKEY_PREFIX
+ "playfilespeech.info");
}
//Option disabled on OS X, as impossible to make it work correctly
if (!Constants.isOSX) {
Image imgOpenFolder = ImageRepository.getImage("openFolderButton");
// file info
gridData = new GridData(GridData.FILL_HORIZONTAL);
final StringParameter f_pathParameter = new StringParameter(cArea,
"Play File Finished File", "");
if (f_pathParameter.getValue().length() == 0) {
f_pathParameter.setValue("<default>");
}
f_pathParameter.setLayoutData(gridData);
Button f_browse = new Button(cArea, SWT.PUSH);
f_browse.setImage(imgOpenFolder);
imgOpenFolder.setBackground(f_browse.getBackground());
f_browse.setToolTipText(MessageText.getString("ConfigView.button.browse"));
f_browse.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
FileDialog dialog = new FileDialog(parent.getShell(),
SWT.APPLICATION_MODAL);
dialog.setFilterExtensions(new String[] { "*.wav"
});
dialog.setFilterNames(new String[] { "*.wav"
});
dialog.setText(MessageText.getString(INTERFACE_PREFIX + "wavlocation"));
final String path = dialog.open();
if (path != null) {
f_pathParameter.setValue(path);
new AEThread("SoundTest") {
public void runSupport() {
try {
Applet.newAudioClip(new File(path).toURL()).play();
Thread.sleep(2500);
} catch (Throwable e) {
}
}
}.start();
}
}
});
Label f_sound_info = new Label(cArea, SWT.WRAP);
Messages.setLanguageText(f_sound_info, INTERFACE_PREFIX
+ "wavlocation.info");
gridData = new GridData(GridData.FILL_HORIZONTAL);
gridData.widthHint = 100;
f_sound_info.setLayoutData(gridData);
f_play_sound.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
f_pathParameter.getControls()));
f_play_sound.setAdditionalActionPerformer(new ChangeSelectionActionPerformer(
new Control[] {
f_browse,
f_sound_info
}));
}
cArea = new Composite(cSection, SWT.NULL);
layout = new GridLayout();
layout.marginHeight = 0;
layout.marginWidth = 0;
layout.numColumns = 2;
cArea.setLayout(layout);
cArea.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
BooleanParameter popup_dl_added = new BooleanParameter(cArea,
"Popup Download Added", LBLKEY_PREFIX + "popupdownloadadded");
gridData = new GridData();
gridData.horizontalSpan = 2;
popup_dl_added.setLayoutData(gridData);
BooleanParameter popup_dl_completed = new BooleanParameter(cArea,
"Popup Download Finished", LBLKEY_PREFIX + "popupdownloadfinished");
gridData = new GridData();
gridData.horizontalSpan = 2;
popup_dl_completed.setLayoutData(gridData);
BooleanParameter popup_file_completed = new BooleanParameter(cArea,
"Popup File Finished", LBLKEY_PREFIX + "popupfilefinished");
gridData = new GridData();
gridData.horizontalSpan = 2;
popup_file_completed.setLayoutData(gridData);
BooleanParameter disable_sliding = new BooleanParameter(cArea,
"GUI_SWT_DisableAlertSliding", STYLE_PREFIX + "disableAlertSliding");
gridData = new GridData();
gridData.horizontalSpan = 2;
disable_sliding.setLayoutData(gridData);
// Timestamps for popup alerts.
BooleanParameter show_alert_timestamps = new BooleanParameter(cArea,
"Show Timestamp For Alerts", LBLKEY_PREFIX + "popup.timestamp");
gridData = new GridData();
gridData.horizontalSpan = 2;
show_alert_timestamps.setLayoutData(gridData);
// Auto-hide popup setting.
Label label = new Label(cArea, SWT.WRAP);
Messages.setLanguageText(label, LBLKEY_PREFIX + "popup.autohide");
label.setLayoutData(Utils.getWrappableLabelGridData(1, 0));
IntParameter auto_hide_alert = new IntParameter(cArea,
"Message Popup Autoclose in Seconds", 0, 86400);
gridData = new GridData();
gridData.horizontalSpan = 1;
gridData.widthHint = 30;
auto_hide_alert.setLayoutData(gridData);
// Use popup boxes rather than Mr Slidey.
BooleanParameter use_popup_boxes = new BooleanParameter(cArea,
"Use Message Box For Popups", LBLKEY_PREFIX + "popup.use_message_boxes");
gridData = new GridData();
gridData.horizontalSpan = 2;
use_popup_boxes.setLayoutData(gridData);
// Suppress alerts.
BooleanParameter suppress_alerts = new BooleanParameter(cArea,
"Suppress Alerts", LBLKEY_PREFIX + "popup.suppress_alerts");
gridData = new GridData();
gridData.horizontalSpan = 2;
suppress_alerts.setLayoutData(gridData);
// Show alerts.
label = new Label(cArea, SWT.NULL);
Messages.setLanguageText(label, LBLKEY_PREFIX + "popup.show");
ButtonParameter show_alerts = new ButtonParameter(cArea, LBLKEY_PREFIX + "popup.show.button");
show_alerts.addChangeListener(new ParameterChangeAdapter() {
public void parameterChanged(Parameter p, boolean b) {
Display display = parent.getDisplay();
if (display.isDisposed()) {return;}
MessageSlideShell.displayLastMessage(display, true);
}
});
gridData = new GridData();
gridData.horizontalSpan = 1;
gridData.widthHint = 60;
show_alerts.setLayoutData(gridData);
return cSection;