1 | /* $Id: UIWizardNewVDExpertPage.h 93673 2022-02-10 07:04:54Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIWizardNewVDExpertPage class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 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 FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h
|
---|
19 | #define FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h
|
---|
20 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
21 | # pragma once
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | /* GUI includes: */
|
---|
25 | #include "UINativeWizardPage.h"
|
---|
26 |
|
---|
27 | /* Forward declarations: */
|
---|
28 | class QGroupBox;
|
---|
29 | class UIDiskFormatsComboBox;
|
---|
30 | class UIDiskVariantWidget;
|
---|
31 | class UIMediumSizeAndPathGroupBox;
|
---|
32 |
|
---|
33 | /** Expert page of the New Virtual Hard Drive wizard. */
|
---|
34 | class SHARED_LIBRARY_STUFF UIWizardNewVDExpertPage : public UINativeWizardPage
|
---|
35 | {
|
---|
36 | Q_OBJECT;
|
---|
37 |
|
---|
38 | public:
|
---|
39 |
|
---|
40 | UIWizardNewVDExpertPage(const QString &strDefaultName, const QString &strDefaultPath, qulonglong uDefaultSize);
|
---|
41 |
|
---|
42 | private slots:
|
---|
43 |
|
---|
44 | void sltMediumFormatChanged();
|
---|
45 | void sltSelectLocationButtonClicked();
|
---|
46 | void sltMediumVariantChanged(qulonglong uVariant);
|
---|
47 | void sltMediumPathChanged(const QString &strPath);
|
---|
48 | void sltMediumSizeChanged(qulonglong uSize);
|
---|
49 |
|
---|
50 | private:
|
---|
51 |
|
---|
52 | /** Translation stuff. */
|
---|
53 | void retranslateUi();
|
---|
54 |
|
---|
55 | /** Prepare stuff. */
|
---|
56 | void prepare();
|
---|
57 | void initializePage();
|
---|
58 |
|
---|
59 | /** Validation stuff. */
|
---|
60 | bool isComplete() const;
|
---|
61 | bool validatePage();
|
---|
62 | void updateDiskWidgetsAfterMediumFormatChange();
|
---|
63 |
|
---|
64 | /** @name Widgets
|
---|
65 | * @{ */
|
---|
66 | UIMediumSizeAndPathGroupBox *m_pSizeAndPathGroup;
|
---|
67 | UIDiskFormatsComboBox *m_pFormatComboBox;
|
---|
68 | UIDiskVariantWidget *m_pVariantWidget;
|
---|
69 | QGroupBox *m_pFormatVariantGroupBox;
|
---|
70 | /** @} */
|
---|
71 |
|
---|
72 | /** @name Variable
|
---|
73 | * @{ */
|
---|
74 | QString m_strDefaultName;
|
---|
75 | QString m_strDefaultPath;
|
---|
76 | qulonglong m_uDefaultSize;
|
---|
77 | qulonglong m_uMediumSizeMin;
|
---|
78 | qulonglong m_uMediumSizeMax;
|
---|
79 | /** @} */
|
---|
80 | };
|
---|
81 |
|
---|
82 | #endif /* !FEQT_INCLUDED_SRC_wizards_newvd_UIWizardNewVDExpertPage_h */
|
---|