1 | /* $Id: UIUSBTools.h 105165 2024-07-05 15:23:48Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIUSBTools namespace declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef FEQT_INCLUDED_SRC_usb_UIUSBTools_h
|
---|
29 | #define FEQT_INCLUDED_SRC_usb_UIUSBTools_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* Qt includes: */
|
---|
35 | #include <QString>
|
---|
36 |
|
---|
37 | /* GUI includes: */
|
---|
38 | #include "UILibraryDefs.h"
|
---|
39 |
|
---|
40 | /* Forward declarations: */
|
---|
41 | class CHostVideoInputDevice;
|
---|
42 | class CUSBDevice;
|
---|
43 | class CUSBDeviceFilter;
|
---|
44 |
|
---|
45 | /** UIUSBTools namespace, holding USB related stuff used by the GUI. */
|
---|
46 | namespace UIUSBTools
|
---|
47 | {
|
---|
48 | /** Generates details for passed USB @a comDevice. */
|
---|
49 | SHARED_LIBRARY_STUFF QString usbDetails(const CUSBDevice &comDevice);
|
---|
50 | /** Generates tool-tip for passed USB @a comDevice. */
|
---|
51 | SHARED_LIBRARY_STUFF QString usbToolTip(const CUSBDevice &comDevice);
|
---|
52 | /** Generates tool-tip for passed USB @a comFilter. */
|
---|
53 | SHARED_LIBRARY_STUFF QString usbToolTip(const CUSBDeviceFilter &comFilter);
|
---|
54 | /** Generates tool-tip for passed USB @a comWebcam. */
|
---|
55 | SHARED_LIBRARY_STUFF QString usbToolTip(const CHostVideoInputDevice &comWebcam);
|
---|
56 | }
|
---|
57 | /* Using this namespace globally: */
|
---|
58 | using namespace UIUSBTools;
|
---|
59 |
|
---|
60 | #endif /* !FEQT_INCLUDED_SRC_usb_UIUSBTools_h */
|
---|