preferences.ini? [message #449255] |
Thu, 11 May 2006 09:25 |
Eclipse User |
|
|
|
Hi,
In a 3.1.2 app I have a preferences.ini file with this stuff:
org.eclipse.help.base/help_home=/com.maguri.derbypad/html/ho me/help_home.html
org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
org.eclipse.ui/SHOW_TEXT_ON_PERSPECTIVE_BAR=false
The 3.2 version pays no attention to this file. Don't know why.
So, I just included them in the WorkBenchWindowAdvisor:
IPreferenceStore prefStore = PlatformUI.getPreferenceStore();
prefStore.setValue(IWorkbenchPreferenceConstants.SHOW_TRADIT IONAL_STYLE_TABS,
false);
prefStore.setValue(IWorkbenchPreferenceConstants.SHOW_PROGRE SS_ON_STARTUP,
true);
The problem is that I don't kow how to do it for the help system. It doesn't starts.
So, I would like to know if preferences.ini is not used anymore and how to get my apps help system runing in 3.2
Thanks a lot for any help.
|
|
|
Powered by
FUDForum. Page generated in 0.04066 seconds