Home » Eclipse Projects » Rich Client Platform (RCP) » Using Splash Screen progress bar in 3.2 RC4
Using Splash Screen progress bar in 3.2 RC4 [message #450251] |
Wed, 31 May 2006 13:46  |
Eclipse User |
|
|
|
Hi All,
I am trying to use the nifty new progress bar with my splash screen on
launch by adding progress bar to my .product file on the branding page.
This is described in The Plug-in Development Environment under "Whats New".
I found that even though my splash screen (splash.bmp) is in the products
defining plug-in, I still have to specify that that is where it is (although
the text says I don't have to). Also, I set up the progress bar with
exactly the same coordinates I saw in the documentation, and I still don't
have the progress bar showing up - not when I use the launch, and not when I
export. Is this a bug, or am I missing something?
Thanks for the help.
Susan.
|
|
| | | | | |
Re: Splashs Screen progress bar won't work on Headless build for 3.2RC7 [message #450657 is a reply to message #450251] |
Tue, 06 June 2006 11:53   |
Eclipse User |
|
|
|
I have done the following:
1) In 3.2 set the myPlugin.properties file to use the progress bar
<splash
location="com.intel.iegd"
startupProgressRect="0,315,500,15"
startupMessageRect="7,0,441,20"
startupForegroundColor="FFFFFF" />
2) Added a plugin_customization.ini entry
org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
3) Included an entry in my plugin.xml to use the plugin_customization.ini
<product
application="com.myPlugin"
name="My Plugin with Splasch Screen Progress Bar">
<property
name="preferenceCustomization"
value="plugin_customization.ini"/>
I now get a progress bar in my launch configuration (hooray), and when I
export using the export wizard but NOT when I do a headless build. I
suppose I am missing a plugin this depends on? If so, which one?
Everything else in my RCP works just fine with 3.2RC7.
Susan.
"Susan Foster" <susan.b.foster@intel.com> wrote in message
news:e5kkot$oe6$1@utils.eclipse.org...
> Hi All,
>
> I am trying to use the nifty new progress bar with my splash screen on
> launch by adding progress bar to my .product file on the branding page.
> This is described in The Plug-in Development Environment under "Whats
> New". I found that even though my splash screen (splash.bmp) is in the
> products defining plug-in, I still have to specify that that is where it
> is (although the text says I don't have to). Also, I set up the progress
> bar with exactly the same coordinates I saw in the documentation, and I
> still don't have the progress bar showing up - not when I use the launch,
> and not when I export. Is this a bug, or am I missing something?
>
> Thanks for the help.
> Susan.
>
|
|
|
Re: Splashs Screen progress bar won't work on Headless build for 3.2RC7 [message #450714 is a reply to message #450657] |
Thu, 08 June 2006 12:11   |
Eclipse User |
|
|
|
These values need to be put into the product extension:
startupProgressRect="0,315,500,15"
startupMessageRect="7,0,441,20"
startupForegroundColor="FFFFFF"
so your plugin.xml should look something like this:
<product application="com.myPlugin" name="My Plugin with Splasch Screen
Progress Bar">
<property name="preferenceCustomization"
value="plugin_customization.ini"/>
<property name="startupProgressRect" value="0,315,500,15"/>
<property name="startupMessageRect" value="7,0,441,20"/>
<property name="startupForegroundColor" value="FFFFFF"/>
</product>
Boris
"Susan Foster" <susan.b.foster@intel.com> wrote in message
news:e648dk$vc$1@utils.eclipse.org...
> I have done the following:
>
> 1) In 3.2 set the myPlugin.properties file to use the progress bar
> <splash
> location="com.intel.iegd"
> startupProgressRect="0,315,500,15"
> startupMessageRect="7,0,441,20"
> startupForegroundColor="FFFFFF" />
>
> 2) Added a plugin_customization.ini entry
> org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
>
> 3) Included an entry in my plugin.xml to use the plugin_customization.ini
> <product
> application="com.myPlugin"
> name="My Plugin with Splasch Screen Progress Bar">
> <property
> name="preferenceCustomization"
> value="plugin_customization.ini"/>
>
> I now get a progress bar in my launch configuration (hooray), and when I
> export using the export wizard but NOT when I do a headless build. I
> suppose I am missing a plugin this depends on? If so, which one?
> Everything else in my RCP works just fine with 3.2RC7.
>
> Susan.
>
>
>
> "Susan Foster" <susan.b.foster@intel.com> wrote in message
> news:e5kkot$oe6$1@utils.eclipse.org...
> > Hi All,
> >
> > I am trying to use the nifty new progress bar with my splash screen on
> > launch by adding progress bar to my .product file on the branding page.
> > This is described in The Plug-in Development Environment under "Whats
> > New". I found that even though my splash screen (splash.bmp) is in the
> > products defining plug-in, I still have to specify that that is where it
> > is (although the text says I don't have to). Also, I set up the
progress
> > bar with exactly the same coordinates I saw in the documentation, and I
> > still don't have the progress bar showing up - not when I use the
launch,
> > and not when I export. Is this a bug, or am I missing something?
> >
> > Thanks for the help.
> > Susan.
> >
>
>
|
|
|
Re: Splashs Screen progress bar won't work on Headless build for 3.2RC7 [message #455996 is a reply to message #450714] |
Tue, 10 October 2006 14:34   |
Eclipse User |
|
|
|
It still only works in the development environment, not when I export it.
Any other ideas?
Susan.
"Boris Bokowski" <bokowski@ca.ibm.com> wrote in message
news:e69i5r$16e$1@utils.eclipse.org...
> These values need to be put into the product extension:
>
> startupProgressRect="0,315,500,15"
> startupMessageRect="7,0,441,20"
> startupForegroundColor="FFFFFF"
>
> so your plugin.xml should look something like this:
>
> <product application="com.myPlugin" name="My Plugin with Splasch Screen
> Progress Bar">
> <property name="preferenceCustomization"
> value="plugin_customization.ini"/>
> <property name="startupProgressRect" value="0,315,500,15"/>
> <property name="startupMessageRect" value="7,0,441,20"/>
> <property name="startupForegroundColor" value="FFFFFF"/>
> </product>
>
> Boris
>
> "Susan Foster" <susan.b.foster@intel.com> wrote in message
> news:e648dk$vc$1@utils.eclipse.org...
>> I have done the following:
>>
>> 1) In 3.2 set the myPlugin.properties file to use the progress bar
>> <splash
>> location="com.intel.iegd"
>> startupProgressRect="0,315,500,15"
>> startupMessageRect="7,0,441,20"
>> startupForegroundColor="FFFFFF" />
>>
>> 2) Added a plugin_customization.ini entry
>> org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
>>
>> 3) Included an entry in my plugin.xml to use the
>> plugin_customization.ini
>> <product
>> application="com.myPlugin"
>> name="My Plugin with Splasch Screen Progress Bar">
>> <property
>> name="preferenceCustomization"
>> value="plugin_customization.ini"/>
>>
>> I now get a progress bar in my launch configuration (hooray), and when I
>> export using the export wizard but NOT when I do a headless build. I
>> suppose I am missing a plugin this depends on? If so, which one?
>> Everything else in my RCP works just fine with 3.2RC7.
>>
>> Susan.
>>
>>
>>
>> "Susan Foster" <susan.b.foster@intel.com> wrote in message
>> news:e5kkot$oe6$1@utils.eclipse.org...
>> > Hi All,
>> >
>> > I am trying to use the nifty new progress bar with my splash screen on
>> > launch by adding progress bar to my .product file on the branding page.
>> > This is described in The Plug-in Development Environment under "Whats
>> > New". I found that even though my splash screen (splash.bmp) is in the
>> > products defining plug-in, I still have to specify that that is where
>> > it
>> > is (although the text says I don't have to). Also, I set up the
> progress
>> > bar with exactly the same coordinates I saw in the documentation, and I
>> > still don't have the progress bar showing up - not when I use the
> launch,
>> > and not when I export. Is this a bug, or am I missing something?
>> >
>> > Thanks for the help.
>> > Susan.
>> >
>>
>>
>
>
|
|
|
Re: Splashs Screen progress bar won't work on Headless build for 3.2RC7 [message #461647 is a reply to message #455996] |
Mon, 15 January 2007 07:24  |
Eclipse User |
|
|
|
Originally posted by: julias.frb.br
susan, it looks like you didnt included the plugin_customization.ini in
the Build tab into the plugin.xml.
i did the same, and now it worked.
Julia
Susan Foster wrote:
> It still only works in the development environment, not when I export it.
>
> Any other ideas?
>
> Susan.
>
> "Boris Bokowski" <bokowski@ca.ibm.com> wrote in message
> news:e69i5r$16e$1@utils.eclipse.org...
>> These values need to be put into the product extension:
>>
>> startupProgressRect="0,315,500,15"
>> startupMessageRect="7,0,441,20"
>> startupForegroundColor="FFFFFF"
>>
>> so your plugin.xml should look something like this:
>>
>> <product application="com.myPlugin" name="My Plugin with Splasch Screen
>> Progress Bar">
>> <property name="preferenceCustomization"
>> value="plugin_customization.ini"/>
>> <property name="startupProgressRect" value="0,315,500,15"/>
>> <property name="startupMessageRect" value="7,0,441,20"/>
>> <property name="startupForegroundColor" value="FFFFFF"/>
>> </product>
>>
>> Boris
>>
>> "Susan Foster" <susan.b.foster@intel.com> wrote in message
>> news:e648dk$vc$1@utils.eclipse.org...
>>> I have done the following:
>>>
>>> 1) In 3.2 set the myPlugin.properties file to use the progress bar
>>> <splash
>>> location="com.intel.iegd"
>>> startupProgressRect="0,315,500,15"
>>> startupMessageRect="7,0,441,20"
>>> startupForegroundColor="FFFFFF" />
>>>
>>> 2) Added a plugin_customization.ini entry
>>> org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true
>>>
>>> 3) Included an entry in my plugin.xml to use the
>>> plugin_customization.ini
>>> <product
>>> application="com.myPlugin"
>>> name="My Plugin with Splasch Screen Progress Bar">
>>> <property
>>> name="preferenceCustomization"
>>> value="plugin_customization.ini"/>
>>>
>>> I now get a progress bar in my launch configuration (hooray), and when I
>>> export using the export wizard but NOT when I do a headless build. I
>>> suppose I am missing a plugin this depends on? If so, which one?
>>> Everything else in my RCP works just fine with 3.2RC7.
>>>
>>> Susan.
>>>
>>>
>>>
>>> "Susan Foster" <susan.b.foster@intel.com> wrote in message
>>> news:e5kkot$oe6$1@utils.eclipse.org...
>>>> Hi All,
>>>>
>>>> I am trying to use the nifty new progress bar with my splash screen on
>>>> launch by adding progress bar to my .product file on the branding page.
>>>> This is described in The Plug-in Development Environment under "Whats
>>>> New". I found that even though my splash screen (splash.bmp) is in the
>>>> products defining plug-in, I still have to specify that that is where
>>>> it
>>>> is (although the text says I don't have to). Also, I set up the
>> progress
>>>> bar with exactly the same coordinates I saw in the documentation, and I
>>>> still don't have the progress bar showing up - not when I use the
>> launch,
>>>> and not when I export. Is this a bug, or am I missing something?
>>>>
>>>> Thanks for the help.
>>>> Susan.
>>>>
>>>
>>
>
>
|
|
|
Goto Forum:
Current Time: Fri Mar 21 04:30:05 EDT 2025
Powered by FUDForum. Page generated in 0.04981 seconds
|