tfInternetBrowser.setToolTipText(Strings.message("userprefs.tab.advanced.browser.tooltip.enabled"));
}
initProxyComponents(triggerChannel);
SpinnerModelAdapter spinModelFeedSelectionDelay = new SpinnerModelAdapter(
new BoundedRangeAdapter(new BufferedValueModel(new PropertyAdapter(userPrefs,
UserPreferences.PROP_FEED_SELECTION_DELAY), triggerChannel), 0, 0, 1000));
spinModelFeedSelectionDelay.setStepSize(100);
chAAText = createCheckBox(userPrefs, Strings.message("userprefs.tab.advanced.antialiased.fonts"),
UserPreferences.PROP_AA_TEXT);
// The following code registers listener on Apply/Accept actions to track down
// changes in BlogStarz limits. If changes are detected then channel list is
// repainted.
saveInitialLimits();
triggerChannel.addValueChangeListener(new PropertyChangeListener()
{
public void propertyChange(PropertyChangeEvent evt)
{
if (Boolean.TRUE.equals(evt.getNewValue())) doRepaintChannelList();
}
});
chShowUnreadButtonMenu = createCheckBox(userPrefs,
Strings.message("userprefs.tab.advanced.show.the.unread.buttons.menu"),
UserPreferences.PROP_SHOW_UNREAD_BUTTON_MENU);
SpinnerModelAdapter spinModelFeedImportLimit =
new SpinnerModelAdapter(new BoundedRangeAdapter(
new BufferedValueModel(new PropertyAdapter(userPrefs,
UserPreferences.PROP_FEED_IMPORT_LIMIT),
triggerChannel), 1, 1, UserPreferences.MAX_FEED_IMPORT_LIMITATION));
spinModelFeedImportLimit.setStepSize(100);
spinFeedImportLimit = new JSpinner(spinModelFeedImportLimit);
initGuideComponents(triggerChannel);
chHideOldArticles = createCheckBox(feedRS,