Browse Source

Be consistent in "full screen" and "full-screen" use

Previously, there were a number of inconsistencies in the use of
"full-screen" and "full screen" in logs, documentation, and user
interfaces. The consensus seems to be that "full screen" is correct when
used as a noun while "full-screen" is correct when used as an
adjective. These inconsistencies have now been adjusted to follow
consensus.
tags/v1.12.90
William Sjöblom 2 years ago
parent
commit
19dc1f7869

+ 1
- 1
java/com/tigervnc/vncviewer/Parameters.java View File



public static BoolParameter fullScreen public static BoolParameter fullScreen
= new BoolParameter("FullScreen", = new BoolParameter("FullScreen",
"Full Screen Mode",
"Enable full screen",
false); false);


public static BoolParameter fullScreenAllMonitors public static BoolParameter fullScreenAllMonitors

+ 1
- 1
vncviewer/DesktopWindow.cxx View File

Fl::screen_xywh(sx, sy, sw, sh, i); Fl::screen_xywh(sx, sy, sw, sh, i);


if ((sx == x) && (sy == y) && (sw == w) && (sh == h)) { if ((sx == x) && (sy == y) && (sw == w) && (sh == h)) {
vlog.info(_("Adjusting window size to avoid accidental full screen request"));
vlog.info(_("Adjusting window size to avoid accidental full-screen request"));
// Assume a panel of some form and adjust the height // Assume a panel of some form and adjust the height
y += 20; y += 20;
h -= 40; h -= 40;

+ 1
- 1
vncviewer/OptionsDialog.cxx View File

fullScreenCheckbox = new Fl_Check_Button(LBLRIGHT(tx, ty, fullScreenCheckbox = new Fl_Check_Button(LBLRIGHT(tx, ty,
CHECK_MIN_WIDTH, CHECK_MIN_WIDTH,
CHECK_HEIGHT, CHECK_HEIGHT,
_("Enable full-screen")));
_("Enable full screen")));
ty += CHECK_HEIGHT + INNER_MARGIN; ty += CHECK_HEIGHT + INNER_MARGIN;


width = tw - OUTER_MARGIN * 2; width = tw - OUTER_MARGIN * 2;

+ 1
- 1
vncviewer/parameters.cxx View File



BoolParameter fullscreenSystemKeys("FullscreenSystemKeys", BoolParameter fullscreenSystemKeys("FullscreenSystemKeys",
"Pass special keys (like Alt+Tab) directly " "Pass special keys (like Alt+Tab) directly "
"to the server when in full screen mode.",
"to the server when in full-screen mode.",
true); true);


#ifndef WIN32 #ifndef WIN32

+ 1
- 1
vncviewer/vncviewer.man View File

dismiss the popup. So to get an F8 through to the VNC server simply press it dismiss the popup. So to get an F8 through to the VNC server simply press it
twice. twice.


.SH FULL SCREEN MODE
.SH FULL-SCREEN MODE
A full-screen mode is supported. This is particularly useful when connecting A full-screen mode is supported. This is particularly useful when connecting
to a remote screen which is the same size as your local one. If the remote to a remote screen which is the same size as your local one. If the remote
screen is bigger, you can scroll by bumping the mouse against the edge of the screen is bigger, you can scroll by bumping the mouse against the edge of the

Loading…
Cancel
Save