You can enter full-screen mode in Rubymine by navigating to MENU > VIEW > ENTER FULL SCREEN. Once in full-screen mode, moving your mouse to the top of the screen triggers the menu bar to dropdown, where you can once again navigate to MENU > VIEW > (now changed to) EXIT FULL SCREEN.
Does anyone know of a shortcut for this on Mac? I think there is one for OS X - not sure what it is off-hand, but can't find anyone anywhere for windows.
CTRL-COMMAND-F
OS X KeyMap cheatsheet here: http://www.jetbrains.com/ruby/docs/RubyMine_ReferenceCard_Mac.pdf
Related
How can I configure PhpStorm to use the "non-native" fullscreen mode? I'd like PhpStorm to be fullscreen (without the macOS top menu bar, etc), in the same window (without creating a new window that I have to scroll between).
The terminal for macOS iTerm2 have this setting. You can choose to remove the tick from "Native full screen windows". When this tick is removed, the fullscreen mode will simply take out all space in the window, without creating a new separate window.
Native fullscreen example
Notice how a new separate "window" is created called "PhpStorm"
Non-native fullscreen example
Notice how theres still one window called "Desktop". The iTerm window fills out the whole screen though.
the only way you can do it at the moment is by adjusting the dock in mac to hide menu automatically and then spread the editor to wider and higher setting
click right on the dock in mac and goto settings and hide menu works for me
i am suffering from same issue lol after i saw iterm2 :P
I create a window and set level to NSStatusWindowLevel. In Dock Preferences, I enable "Minimize windows into application". After I minimize the window into dock icon, the window disappears when I select it (to restore) from window menu.
My OS X version is 10.11. When I try on OS X 10.6, it works fine.
Is this a bug of Cocoa? How can I overcome this issue?
I overcome this issue by this trick:
Before miniaturize, set window level to NSNormalWindowLevel
Observe NSWindowDidDeminiaturize notification
Restore window level to NSStatusWindowLevel in notification handler.
I'd like to show full screen QDialog on Mac OSX.
I tried to do that:
QDialog* d = new QDialog(nullptr, Qt::Window);
d->showFullScreen();
d->activateWindow();
It works, but this dialog creates new OSX screen:
I tried to do that:
QDialog* d = new QDialog(nullptr, Qt::SplashScreen | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
d->setWindowState(Qt::WindowFullScreen);
d-show();
It doesn't create new screen, but QDialog shows under OSX Dock and OSX menu:
How to solve my problem?
What you are seeing is the normal behaviour of OS X. If you want a full screen application, without the dock and menu bar, then having a separate Desktop Screen (space) is the accepted method.
An alternative would be to maximise the size of your dialog and set the dock to hide, but you'd still be left with the menu at the top and changing the user's preference for how the dock is displayed is not a good user experience.
I've searched far and wide with no results on Google. I also looked through all of Xcode's Preferences and even tried dragging it off but does nothing but move the window inside of itself while in full screen mode.
So, here's my question: How do I remove, or at least move, the window title off of the jump bar so I can actually use it in full screen mode? Xcode 5, OS X Yosemite.
Here is what I'm seeing.
I'm using Rubymine 5.4 for Windows (the best Ruby IDE I've found by far, BTW).
I've discovered that you can enter full-screen mode by navigating to:
file menu >> VIEW >> ENTER FULL SCREEN
Once in full-screen mode, moving your mouse to the top of the screen triggers the menu bar to dropdown, where you can once again navigate to:
file menu >> VIEW >> (now changed to) EXIT FULL SCREEN
Does anyone know of a shortcut for this on Windows? I think there is one for OSX - not sure what it is off-hand, but can't find anyone anywhere for windows.
There is no default shortcut for this action, but you can easily add one in Settings | Keymap.