Skip to main content



      Home
Home » Newcomers » Newcomers » removing titlebar name while branding
removing titlebar name while branding [message #201066] Thu, 22 March 2007 10:04 Go to next message
Eclipse UserFriend
hi there,
I want to remove the title-bar name ("- Eclipse Platform")including
hyphen ("-") symbol, I managed to remove "Eclipse Platform" but how do I
remove "-"
symbol.

please help me

thanks
Parag
Re: removing titlebar name while branding [message #201330 is a reply to message #201066] Fri, 23 March 2007 01:53 Go to previous message
Eclipse UserFriend
Hi ,

If u r creating an rcp...

you will be having a class called applicationworkbenchadvisor

where you are setting all the parameters...

in this class there is a method called prewindowopen...

in this method you can modify the title bar info

public void preWindowOpen() {
IWorkbenchWindowConfigurer configurer = getWindowConfigurer();

configurer.setInitialSize(new Point(1100, 1000));
configurer.setShowCoolBar(true);
configurer.setShowMenuBar(true);
configurer.setShowFastViewBars(true);
configurer.setShowPerspectiveBar(true);
configurer.setShowProgressIndicator(true);
configurer.setShowStatusLine(true);
configurer.setTitle("My Own title...");

}
Previous Topic:Cannot create j2ee and web projects in eclispse
Next Topic:escape key overlooked in console input
Goto Forum:
  


Current Time: Tue Jul 22 02:38:39 EDT 2025

Powered by FUDForum. Page generated in 0.32916 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top