VBoxSettingsDialogSpecific.h revision 6b407bc82210f5b54399776770a5198be6c82661
/** @file
*
* VBox frontends: Qt4 GUI ("VirtualBox"):
* VBoxSettingsDialogSpecific class declaration
*/
/*
* Copyright (C) 2006-2008 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef __VBoxSettingsDialogSpecific_h__
#define __VBoxSettingsDialogSpecific_h__
#include "COMDefs.h"
#include "VBoxSettingsDialog.h"
/*
* Dialog which encapsulate all the specific funtionalities of the
* Global Settings.
*/
class VBoxGLSettingsDlg : public VBoxSettingsDialog
{
Q_OBJECT;
public:
enum GLSettingsPageIds
{
GeneralId = 0,
InputId,
UpdateId,
LanguageId,
USBId,
NetworkId
};
VBoxGLSettingsDlg (QWidget *aParent);
protected:
void getFrom();
void putBackTo();
void retranslateUi();
QString dialogTitle() const;
private:
bool isAvailable (GLSettingsPageIds aId);
};
/*
* Dialog which encapsulate all the specific funtionalities of the
* Virtual Machine Settings.
*/
class VBoxVMSettingsDlg : public VBoxSettingsDialog
{
Q_OBJECT;
public:
enum VMSettingsPageIds
{
GeneralId = 0,
DisplayId,
StorageId,
HDId,
CDId,
FDId,
AudioId,
NetworkId,
PortsId,
SerialId,
ParallelId,
USBId,
SFId
};
VBoxVMSettingsDlg (QWidget *aParent, const CMachine &aMachine,
const QString &aCategory, const QString &aControl);
protected:
void getFrom();
void putBackTo();
void retranslateUi();
QString dialogTitle() const;
private slots:
void onMediaEnumerationDone();
void resetFirstRunFlag();
private:
bool isAvailable (VMSettingsPageIds aId);
CMachine mMachine;
bool mAllowResetFirstRunFlag;
bool mResetFirstRunFlag;
};
#endif // __VBoxSettingsDialogSpecific_h__