blob: f7e0bc0ef25e9f90423726c7978ae1f2b0bc786f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* $Id$ */
/** @file
* VBox Qt GUI - UIWizardNewCloudVMPageBasic2 class declaration.
*/
/*
* Copyright (C) 2009-2020 Oracle Corporation
*
* 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.
*/
#ifndef FEQT_INCLUDED_SRC_wizards_newcloudvm_UIWizardNewCloudVMPageBasic2_h
#define FEQT_INCLUDED_SRC_wizards_newcloudvm_UIWizardNewCloudVMPageBasic2_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
/* GUI includes: */
#include "UIFormEditorWidget.h"
#include "UIWizardPage.h"
/* COM includes: */
#include "COMEnums.h"
#include "CCloudClient.h"
#include "CVirtualSystemDescription.h"
#include "CVirtualSystemDescriptionForm.h"
/* Forward declarations: */
class QIRichTextLabel;
/** UIWizardPageBase extension for 2nd page of the New Cloud VM wizard. */
class UIWizardNewCloudVMPage2 : public UIWizardPageBase
{
protected:
/** Constructs 2nd page base. */
UIWizardNewCloudVMPage2(bool fFullWizard);
/** Refreshes form properties table. */
void refreshFormPropertiesTable();
/** Returns Cloud Client object. */
CCloudClient client() const;
/** Returns Virtual System Description object. */
CVirtualSystemDescription vsd() const;
/** Defines Virtual System Description @a comForm object. */
void setVSDForm(const CVirtualSystemDescriptionForm &comForm);
/** Returns Virtual System Description Form object. */
CVirtualSystemDescriptionForm vsdForm() const;
/** Holds whether wizard should be in full form. */
bool m_fFullWizard;
/** Holds whether starting page was polished. */
bool m_fPolished;
/** Holds the Form Editor widget instance. */
UIFormEditorWidgetPointer m_pFormEditor;
};
/** UIWizardPage extension for 2nd page of the New Cloud VM wizard, extends UIWizardNewCloudVMPage2 as well. */
class UIWizardNewCloudVMPageBasic2 : public UIWizardPage, public UIWizardNewCloudVMPage2
{
Q_OBJECT;
public:
/** Constructs 2nd basic page. */
UIWizardNewCloudVMPageBasic2(bool fFullWizard);
protected:
/** Allows access wizard from base part. */
virtual UIWizard *wizardImp() const /* override */ { return UIWizardPage::wizard(); }
/** Handles translation event. */
virtual void retranslateUi() /* override */;
/** Performs page initialization. */
virtual void initializePage() /* override */;
/** Returns whether page is complete. */
virtual bool isComplete() const /* override */;
/** Performs page validation. */
virtual bool validatePage() /* override */;
private slots:
/** Initializes short wizard form. */
void sltInitShortWizardForm();
private:
/** Holds the label instance. */
QIRichTextLabel *m_pLabel;
};
#endif /* !FEQT_INCLUDED_SRC_wizards_newcloudvm_UIWizardNewCloudVMPageBasic2_h */
|