Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [riena-dev] example client about dialog

Hi ekke,

 

in our product we have the “About Dialog”. It doesn’t make any difference if we launch the product from inside the IDE or from an external exported product.exe. We open the dialog over the application menu with Hilfe->Info…

 

Menu Definition contribution is:

         <menu id="helpMenu" label="%HELP_MENU" mnemonic="%HELP_MENU_MN">

            <command

                commandId="org.eclipse.ui.help.aboutAction"

                style="push"

                label="%HELP_INFO"

                mnemonic="%HELP_INFO_MN"

                tooltip="%HELP_INFO_TT"/>

         </menu>

 

 

see screenshot:

cid:NDSOTIJLGKNG.about.jpg

As you can see, you find the definitions from the Product-Editor branding page on the About Dialog.

I guess you missed something. Sometimes it is necessary to “synchronize” the product editor…

See attached Product definition.

 

Our product/splash definition in the plugin.xml looks like:

   <extension point="org.eclipse.ui.splashHandlers">
      <splashHandler id="de.hansemerkur.sco.riena.base.splashhandlers.interactive"
            class="de.hansemerkur.sco.riena.internal.base.handler.LoginSplashHandler">
      </splashHandler>
      <splashHandlerProductBinding
            productId="de.hansemerkur.sco.riena.base.product"
            splashId="de.hansemerkur.sco.riena.base.splashhandlers.interactive">
      </splashHandlerProductBinding>

   </extension>

   <extension id="product" point="org.eclipse.core.runtime.products">

      <product application="base.application"

            name="Kompass">

         <property

               name="aboutText"

               value="Kompass Prototyp&#x0A;&#x0A;auf Basis Riena 1.1.0.m7"/>

         <property name="aboutImage" value="icons/hm_logo.png" />

         <property

               name="appName"

               value="Kompass">

         </property>

         <property

               name="preferenceCustomization"

               value="plugin_customization.ini">

         </property>

         <property

               name="windowImages"

               value="icons/app.png">

         </property>

      </product>

   </extension>

  

Regards, Stefan

 

Von: riena-dev-bounces@xxxxxxxxxxx [mailto:riena-dev-bounces@xxxxxxxxxxx] Im Auftrag von ekkehard
Gesendet: Dienstag, 19. Mai 2009 14:16
An: Riena Developers list
Betreff: Re: [riena-dev] example client about dialog

 

bug opened https://bugs.eclipse.org/bugs/show_bug.cgi?id=276874

ekke

Christian Campo schrieb:

I admit, nothing we ever tried....please open a bug.....

 

christian

 

Am 19.05.2009 um 13:28 schrieb ekkehard:



I configured the about dialog text and image in a .product file,
also added properties to product extension,
but there's no conten from "About" menu in riena example client

should this work ?
or do I miss something

thx

ekke
_______________________________________________
riena-dev mailing list
riena-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/riena-dev

 

 


 
_______________________________________________
riena-dev mailing list
riena-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/riena-dev
  

 

Attachment: Kompass Client.product
Description: Kompass Client.product


Back to the top