Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Native status bars

Is there a way to create native status bars in SWT like those found in Windows applications:

Windows status bar

I have seen status bars simulated using labels, but I am more interested in a true solution.

like image 880
Adam Paynter Avatar asked Jan 22 '10 12:01

Adam Paynter


1 Answers

org.eclipse.jface.action.StatusLineManager.createControl(), or getControl(), returns a status line control. This control is, of course (being SWT), native.

like image 117
pavakah Avatar answered Nov 23 '22 23:11

pavakah