Following the question (Contributing to the Status Bar/Trim in Eclipse RCP) I want to contribute to the status bar of my RCP (3.x) text editor.
In the org.eclipse.ui.menuContributions
extensions, I have to use toolbar:org.eclipse.ui.trim.status
as the locationURI. So I can can contribute commands/custom controls to the status bar.
Since my app is a text editor, I want to use the same controls (Labels) that the Eclipse IDE uses for Insert/OverWrite and line caret information (line and column position).
Which are the classes required to show such information?