VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h58652,​70973
    /branches/VBox-3.2/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h66309,​66318
    /branches/VBox-4.0/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h70873
    /branches/VBox-4.1/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h74233
    /branches/VBox-4.2/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h91503-91504,​91506-91508,​91510,​91514-91515,​91521
    /branches/VBox-4.3/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h91223
    /branches/VBox-4.3/trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h91223
    /branches/dsen/gui/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h79224,​79228,​79233,​79235,​79258,​79262-79263,​79273,​79341,​79345,​79354,​79357,​79387-79388,​79559-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/src/VBox/Frontends/VirtualBox/src/extensions/QIProcess.h79645-79692
File size: 1.8 KB
Line 
1/* $Id: QIProcess.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - Qt extensions: QIProcess class declaration.
4 */
5
6/*
7 * Copyright (C) 2006-2023 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_extensions_QIProcess_h
29#define FEQT_INCLUDED_SRC_extensions_QIProcess_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34/* Qt includes: */
35#include <QProcess>
36
37/* GUI includes: */
38#include "UILibraryDefs.h"
39
40/** QProcess extension for VBox GUI needs. */
41class SHARED_LIBRARY_STUFF QIProcess : public QProcess
42{
43 Q_OBJECT;
44
45 /** Constructs our own file-dialog passing @a pParent to the base-class.
46 * Doesn't mean to be used directly, cause this subclass is a bunch of statics. */
47 QIProcess(QObject *pParent = 0);
48
49public:
50
51 /** Execute certain script specified by @a strProcessName
52 * and wait up to specified @a iTimeout amount of time for responce. */
53 static QByteArray singleShot(const QString &strProcessName,
54 int iTimeout = 5000);
55};
56
57#endif /* !FEQT_INCLUDED_SRC_extensions_QIProcess_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use