package chatty.gui.components.settings;
import chatty.Chatty;
import java.awt.GridBagConstraints;
import javax.swing.JCheckBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
/**
* More settings..
*
* @author tduva
*/
public class OtherSettings extends SettingsPanel {
private static final String INFO = "<html><body style='width:300px'>"
+ "The following settings disable Hardware Acceleration for Chatty, which "
+ "may resolve display issues. You have to restart Chatty for "
+ "changes to take effect.";
private static final String INFO_WRITER = "<html><body style='width:300px'>"
+ "<p>Add one file per line to write Stream Status of a stream into: "
+ "</p><p><code> <streamname> <filename> [online|offline] <content></code> "
+ "<p>You can define whether to write the info if the stream is online or offline (online if omitted). "
+ "The <code><content></code> can contain the following codes, which "
+ "will be replaced:"
+ "</p>"
+ "<ul>"
+ "<li><code>%title</code> - The stream title</li>"
+ "<li><code>%game</code> - The game being played</li>"
+ "<li><code>%viewers</code> - The viewercount</li>"
+ "<li><code>%followers</code> / <code>%subscribers</code> - The follower/subscriber count (only when Follower/Subscriber List is open)</li>"
+ "<li><code>%viewersf</code> / <code>%followersf</code> / <code>%subscribersf</code> - Formatted numbers (e.g. 1,342)</li>"
+ "</ul>"
+ "<p>Example:</p>"
+ "<p><code> joshimuz status.txt %title %game (%viewers)<br />"
+ " joshimuz status.txt offline Stream offline</code></p>";
public OtherSettings(SettingsDialog d) {
JPanel graphics = addTitledPanel("Graphic Settings", 0);
JPanel other = addTitledPanel("Other", 1);
//------------------
// Graphics settings
//------------------
graphics.add(new JLabel(INFO), d.makeGbc(0, 0, 2, 1));
graphics.add(d.addSimpleBooleanSetting(
"nod3d",
"Disable Direct3D",
""),
d.makeGbc(0, 1, 1, 1));
graphics.add(d.addSimpleBooleanSetting(
"noddraw",
"Disable DirectDraw",
""),
d.makeGbc(1, 1, 1, 1));
//---------------
// Other settings
//---------------
JCheckBox versionCheck = d.addSimpleBooleanSetting(
"checkNewVersion",
"Inform me about new versions",
"Automatically check for a new version every few days and output a message if a new one is available.");
other.add(versionCheck,
d.makeGbc(0, 3, 3, 1, GridBagConstraints.WEST));
if (!Chatty.VERSION_CHECK_ENABLED) {
versionCheck.setEnabled(false);
versionCheck.setToolTipText("Feature disabled in this distributed version.");
}
other.add(d.addSimpleBooleanSetting(
"newsAutoRequest",
"Check for important announcements",
"Automatically checks for announcements about Chatty"),
d.makeGbc(0, 4, 3, 1, GridBagConstraints.WEST));
other.add(d.addSimpleBooleanSetting(
"enableStatusWriter",
"Write Stream Status:", ""),
d.makeGbc(0, 5, 2, 1));
other.add(d.addEditorStringSetting(
"statusWriter", 20, true, "Write Stream Status:", true, INFO_WRITER),
d.makeGbc(2, 5, 1, 1));
other.add(d.addSimpleBooleanSetting(
"autoUnhost",
"Auto-Unhost when your stream goes live",
"Automatically sends the /unhost command in your channel if your stream went live in the last 15 minutes"),
d.makeGbc(0, 6, 3, 1, GridBagConstraints.WEST));
other.add(new JLabel("Prepend to window title:"),
d.makeGbc(0, 7, 1, 1, GridBagConstraints.WEST));
other.add(d.addSimpleStringSetting(
"titleAddition", 10, true),
d.makeGbc(1, 7, 2, 1, GridBagConstraints.WEST));
other.add(d.addSimpleBooleanSetting(
"abSaveOnChange",
"Save Addressbook immediately after changing entries",
"Save immediately after updating addressbook (including changes via commands)"),
d.makeGbc(0, 8, 3, 1, GridBagConstraints.WEST));
}
}