what is the name of the very bottom of the eclipse window? I want to turn it off but can't until I know what its called - eclipse

I like to keep as much of my Eclipse screen as possible for code. So I try to disable or turn off as many of the extra bars and such as possible. The area at the very bottom of the Eclipse screen is my next target but I don't know what it's called.
Can anyone tell me the name of this area and how to reclaim it? Thanks.

Here is an eclipse plug-in which hides/shows Menu bar and/or Status bar.
User can change these options in Windows > Preferences > Full Screen
But Hiding Status bar was NOT working on my machine
Ubuntu 13.10 Eclipse Version: Kepler Release Build id: 20130614-0229

This are is called the Status Line but it composed of a number of different components such as the progress indicator, editor current line and row, and the message area.
I am not aware of anything that will turn it all off.

I can see why you're eager to close that. It looks like your screen resolution is extremely low. Are you using a netbook perhaps?
Here's the problem though: On your screen, that part looks quite large and looks empty but it's because of your screen size. I'm fairly certain it doesn't have a name and having scoured the options, I'm convinced it can't be removed. On my screen, that section contains only a few words: "Writable | Smart Insert | 423:32"
Essentially, the words that show up there are a guide for your current editing mode and location in the file. I don't think it can be turned off. If you hit Ctrl + M, it will hide almost everything possible on maximize your editor view.
On my screen, that little bar is very small. That is of course because I have a high screen resolution. If possible, try increasing the resolution on your screen to something more appropriate. You'll find you have a lot more space to code, and that little bar will become much smaller.

In eclipse oxygen there is option to hide status bar:
Windows->Appearance->Hide_status_bar

Related

Can I increase UI scaling in eclipse on Mac?

I've spent some time already searching for an answer. I know that I can increase the text size in an open file, but is there any way to increase the overall UI scaling? I have a large monitor so I can utilize multiple applications in my workflow, but the size of the application text and icons is so small that it's totally unusable.
Here is a comparison between Eclipse on the left and IntelliJ on the right on my screen:
I scaled IntelliJ on the right to be the perfect size, easily, but Eclipse on the left is way too small to effectively work with it.
I've tried removing a line indicating small text in the eclipse.ini file but that didn't change anything.
Given how poorly my search has turned up already, I assume the answer is 'no'. This leads me to ask, how is this possible? How can such a sophisticated and popular application not be able to change the UI scaling? I feel as though there must actually be a reasonable explanation because this is just plain absurd. This can't be passed off as a legitimate piece of software in this day and age without flexibility on screen size.
Thank you.
EDIT: *
I'm still unable to update the size of the UI icons. I've searched through numerous other issues going through the "-Dswt.autoScale=200" options in the elipse.ini setting but this is not working on Mac. Anyone able to assist here? Thank you!
The "Tree and Table font for views" setting in the "General > Appearance > Colors and Fonts" page of the Preferences sets the size of Project Explorer view. That entry is in the "View and Editor Folders" section.
Icons are only scaled if the display is set up as scaled by x2 or x1.5.

Hide Horizontal Scrollbars [Juno/Kepler/Luna]

As per the solution provided in this SO thread we can get back some screen real estate from Eclipse.
However, when working with multiple editor tabs (e.g. in a quadrant layout) the ever present horizontal scrollbars (even when there is no text extending beyond viewing area!) are a waste of valuable coding space, not to mention, hideous.
Have tried various CSS hacks in eclipse default_gtk.css (on Linux here) all to no avail; it appears that the ScrollBar widget is not modifiable via CSS.
This bug thread on saving space in Eclipse indicates something is in the works for Luna, but the developers seem split, some not caring about scrollbars or any wasted space (assuming everyone has huge monitors), and others preferring a clean and lean UI.
Anyway, if anyone has leads for how to hide scrollbars in Eclipse >= 4.2, do chime in! It's IMO the missing UI "feature" of Eclipse as you can strip out everything else, almost have max screen real estate available for code...just these damn scrollbars o_O
I think this does depend a lot on what the native controls used by SWT support. On the Mac, for example, scroll bars are not displayed.
If the SWT control on Linux supports turning off the scroll bars it should be possible to write a CSS property handler to set it. I do something similar on the Mac to set the scroll bar 'knob style' for trees and tables.
See my any answer to this question which shows how to write a CSS property handler in a plugin for StyledText which could be adapted.

Eclipse Package Explorer Zoom?

Configuring Eclipse to look exactly how you want is a tough job I've found, therefore I'm not going to attempt to do this myself.
I'd like to 'zoom out' of the Package Explorer side bar? You see, I like only having my code on the screen with a small section for the files in the project - however I can never see the full path of the file or package I'm currently in because of this. Is there a way to keep the 'main screen' normal, but zoom out of the Package Explorer by about 50%?
Not an exact fit, but I would recommend using fast views
It minimizes your package explorer view, and you can recall it in order to display with a large size, for you to... explorer. Once you click anywhere outside the fast view, it disappear.
Note: to really gain as much space as possible, since Eclipse3.6M2, you can hide the fast view bar if empty.

How to set a fixed width of editor window in Eclipse?

Recently I have got a new 22" monitor. Finally it's possible to keep all needed windows in Eclipse open while having the main editor window wide enough to display all 120 columns. Problem now is when I wide up or narrow down windows on the left or right side of the editor. Editor's width narrows down or wides up. I'd like to set its width fixed to some value and let the other windows 'breathe' in width.
Take a look at the illustration.
You should rather use detached views, that way your main editor is not affected by the other windows resize operations.
(source: eclipse.org)
Either that, or use fast views, which minimises the views down to an icon that can be conveniently popped up when you need to use them. This is especially handy for things like the JUnit test view, as suggested by the JUnit Eclipse documentation
http://help.eclipse.org/help32/topic/org.eclipse.jdt.doc.user/gettingStarted/qs-junit.htm

How to increase content assist tooltip size in Eclipse / PDT

I'm using PDT with Eclipse and the Content Assist tooltips (e.g. for class method descriptions) are too small to be useful. Usually, only the first few words are visible. Is there a preference to increase the sizes of these? I have plenty of screen real estate, so I want to make them much larger.
Thanks
Edit: Maybe I'm using the wrong terminology -- I'm talking about the PHPDoc-style tooltips. Here's a screenshot:
Edit 2: Screenshot no longer available.
You should be able to simply grab the pop-up at the lower right corner and drag it larger. It will keep that size the next time it opens (at least it does for me in Eclipse 3.5 and 3.6).