VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineDefs.h@ 75291

Last change on this file since 75291 was 75291, checked in by vboxsync, 6 years ago

FE/Qt: VideoCapture -> Recording renaming.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: UIMachineDefs.h 75291 2018-11-06 15:03:21Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - Defines for Virtual Machine classes.
4 */
5
6/*
7 * Copyright (C) 2010-2018 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___UIMachineDefs_h___
19#define ___UIMachineDefs_h___
20
21/* Other VBox includes: */
22#include <iprt/cdefs.h>
23
24/** Machine window visual element types. */
25enum UIVisualElement
26{
27 UIVisualElement_WindowTitle = RT_BIT(0),
28 UIVisualElement_MouseIntegrationStuff = RT_BIT(1),
29 UIVisualElement_IndicatorPoolStuff = RT_BIT(2),
30 UIVisualElement_HDStuff = RT_BIT(3),
31 UIVisualElement_CDStuff = RT_BIT(4),
32 UIVisualElement_FDStuff = RT_BIT(5),
33 UIVisualElement_AudioStuff = RT_BIT(6),
34 UIVisualElement_NetworkStuff = RT_BIT(7),
35 UIVisualElement_USBStuff = RT_BIT(8),
36 UIVisualElement_SharedFolderStuff = RT_BIT(9),
37 UIVisualElement_Display = RT_BIT(10),
38 UIVisualElement_Recording = RT_BIT(11),
39 UIVisualElement_FeaturesStuff = RT_BIT(12),
40#ifndef VBOX_WS_MAC
41 UIVisualElement_MiniToolBar = RT_BIT(13),
42#endif
43 UIVisualElement_AllStuff = 0xFFFF
44};
45
46/** Mouse state types. */
47enum UIMouseStateType
48{
49 UIMouseStateType_MouseCaptured = RT_BIT(0),
50 UIMouseStateType_MouseAbsolute = RT_BIT(1),
51 UIMouseStateType_MouseAbsoluteDisabled = RT_BIT(2),
52 UIMouseStateType_MouseNeedsHostCursor = RT_BIT(3)
53};
54
55/** Keyboard state types. */
56enum UIKeyboardStateType
57{
58 UIKeyboardStateType_KeyboardCaptured = RT_BIT(0),
59 UIKeyboardStateType_HostKeyPressed = RT_BIT(1),
60 UIKeyboardStateType_HostKeyPressedInsertion = RT_BIT(2)
61};
62
63#endif /* !___UIMachineDefs_h___ */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette