Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » PDE: how to print text to status bar
PDE: how to print text to status bar [message #149021] Fri, 24 October 2003 13:03 Go to next message
Eclipse UserFriend
Originally posted by: tcn.spamgourmet.com

Hi!

Can I print text to the status bar on the bottom?

Timo
Re: PDE: how to print text to status bar [message #149064 is a reply to message #149021] Fri, 24 October 2003 13:42 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: aaa.bbb.ccc

Use IStatusLineManager interface. To get access to it you can do
something like that:

EditorActionBarContributor contrib =
(EditorActionBarContributor)fPage.getActiveEditor().getEdito rSite().getActionBarContributor();
IStatusLineManager manager = contrib.getActionBars().getStatusLineManager();

Then

manager.setMessage(...)

Timo Nentwig wrote:
> Hi!
>
> Can I print text to the status bar on the bottom?
>
> Timo
Re: PDE: how to print text to status bar [message #149088 is a reply to message #149064] Fri, 24 October 2003 14:13 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: tcn.spamgourmet.com

AAA wrote:
> (EditorActionBarContributor)fPage.getActiveEditor().getEdito rSite().getActionBarContributor();

What's fPage?
Re: PDE: how to print text to status bar [message #149096 is a reply to message #149088] Fri, 24 October 2003 14:44 Go to previous message
Alex Chapiro is currently offline Alex ChapiroFriend
Messages: 82
Registered: July 2009
Member
Sorry. This is IWorkbenchPage object. It depends on context how to get
it. Anyway, to feel more confident, search Eclipse source code for
IStatusLineManager to find appropriate examples.

Timo Nentwig wrote:

> AAA wrote:
>
>> (EditorActionBarContributor)fPage.getActiveEditor().getEdito rSite().getActionBarContributor();
>
>
> What's fPage?
Previous Topic:My Editor Plugin: Workspace files vs. external files: different syntax colorings
Next Topic:Anonymous CVS to sourceforge accounts doesn't work here
Goto Forum:
  


Current Time: Sun Jul 21 17:24:41 GMT 2024

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

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

Back to the top