blob: 6075b8fec84e2c00086fdf70602195c878095d45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/****************************************************************************
**
** Copyright (C) 1993-2009 NVIDIA Corporation.
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt 3D Studio.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
\title Viewer: Menu
\page viewer-menu.html
\ingroup qt3dstudio-viewer
\section1 File
\list
\li
\uicontrol {Open...} - Open a \c {.uip} presentation or \c {.uia} project file to view.
\li
\uicontrol {Connect...} - Open the remote deployment port setting dialog.
\li
\uicontrol {Reload} - Restart the presentation from the beginning.
\li
\uicontrol {Quit} - Quit the Viewer.
\endlist
\section1 View
\list
\li
\uicontrol {Show Matte} - Toggle matte on or off. If this is disabled, the whole screen will be
filled with the background color.
\li
\uicontrol {Scale Mode} - Open the scale mode sub menu.
\list
\li
\uicontrol {Center} - Center the presentation inside the window without scaling.
\li
\uicontrol {Scale to Fit} - Scale the presentation to fit the window without extending the
background.
\li
\uicontrol {Scale to Fill} - Scale the presentation to fit the window while extending the
background to fill the window.
\endlist
\li
\uicontrol {Stereo Mode} - Open the stereo mode sub menu.
\list
\li
\uicontrol {Mono} - Disable stereo mode.
\li
\uicontrol {Top-Bottom} - Switch to top-bottom stereo mode. In this mode image for left
eye is rendered on top and image for right eye is rendered at the bottom.
\li
\uicontrol {Left-Right} - Switch to left-right stereo mode. In this mode images for left
and right eye are rendered side-by-side.
\li
\uicontrol {Anaglyph (Red - Cyan)} - Switch to red-cyan anaglyph stereo mode.
\note Anaglyph modes do not support all features.
\li
\uicontrol {Anaglyph (Green - Magenta)} - Switch to green-magenta anaglyph stereo mode.
\note Anaglyph modes do not support all features.
\li
\uicontrol {Progressive Rendering} - Toggle progressive rendering on or off.
\li
\uicontrol {Increase Separation} - Increase the eye separation.
\li
\uicontrol {Decrease Separation} - Decrease the eye separation.
\endlist
\li
\uicontrol {Show Render Statistics} - Switch the render statistics on or off. Render
statistics include information of the FPS, frame time, and init time of the whole presentation,
as well as time taken by different passes for each layer.
\li
\uicontrol {Full Screen} - Switch to fullscreen mode. The menu bar may still be visible,
depending on the windowing system.
\endlist
*/
|