VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVirtualBoxClientEventHandler.h

Last change on this file was 103803, checked in by vboxsync, 3 months ago

FE/Qt. bugref:10618. Splitting COMEnums.h file into individual enum header files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
RevLine 
[55401]1/* $Id: UIVirtualBoxClientEventHandler.h 103803 2024-03-12 11:15:18Z vboxsync $ */
[30677]2/** @file
[86154]3 * VBox Qt GUI - UIVirtualBoxClientEventHandler class declaration.
[30677]4 */
5
6/*
[98103]7 * Copyright (C) 2010-2023 Oracle and/or its affiliates.
[30677]8 *
[96407]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
[30677]26 */
27
[86154]28#ifndef FEQT_INCLUDED_SRC_globals_UIVirtualBoxClientEventHandler_h
29#define FEQT_INCLUDED_SRC_globals_UIVirtualBoxClientEventHandler_h
[76532]30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
[30677]33
[58867]34/* Qt includes: */
35#include <QObject>
36
[71630]37/* GUI includes: */
38#include "UILibraryDefs.h"
39
[41587]40/* COM includes: */
[77990]41#include "CMedium.h"
42#include "CMediumAttachment.h"
[30677]43
[60227]44/* Forward declarations: */
[86154]45class UIVirtualBoxClientEventHandlerProxy;
[58867]46
[86154]47/** Singleton QObject extension providing GUI with CVirtualBoxClient event-source. */
48class SHARED_LIBRARY_STUFF UIVirtualBoxClientEventHandler : public QObject
[30677]49{
50 Q_OBJECT;
51
[54131]52signals:
[30677]53
[54657]54 /** Notifies about the VBoxSVC become @a fAvailable. */
[54150]55 void sigVBoxSVCAvailabilityChange(bool fAvailable);
[54657]56
[54131]57public:
58
[71571]59 /** Returns singleton instance. */
[86154]60 static UIVirtualBoxClientEventHandler *instance();
[71571]61 /** Destroys singleton instance. */
[54131]62 static void destroy();
63
[60224]64protected:
[54131]65
[86154]66 /** Constructs VirtualBoxClient event handler. */
67 UIVirtualBoxClientEventHandler();
[30677]68
[71571]69 /** Prepares all. */
70 void prepare();
71 /** Prepares connections. */
72 void prepareConnections();
[60225]73
[60224]74private:
75
[71571]76 /** Holds the singleton instance. */
[86154]77 static UIVirtualBoxClientEventHandler *s_pInstance;
[60222]78
[86154]79 /** Holds the VirtualBoxClient event proxy instance. */
80 UIVirtualBoxClientEventHandlerProxy *m_pProxy;
[30677]81};
82
[86154]83/** Singleton VirtualBoxClient Event Handler 'official' name. */
84#define gVBoxClientEvents UIVirtualBoxClientEventHandler::instance()
[30677]85
[86154]86#endif /* !FEQT_INCLUDED_SRC_globals_UIVirtualBoxClientEventHandler_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use