Last change
on this file since 40870 was 40870, checked in by vboxsync, 13 years ago |
FE/Qt: 6123: Rework VirtualBox wizards to unify them at the common architecture required for an expert-mode support.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Date Revision Author Id
|
File size:
1.3 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Qt4 GUI ("VirtualBox"):
|
---|
4 | * UIWizardCloneVDPageBasic5 class declaration
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2012 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef __UIWizardCloneVDPageBasic5_h__
|
---|
20 | #define __UIWizardCloneVDPageBasic5_h__
|
---|
21 |
|
---|
22 | /* Local includes: */
|
---|
23 | #include "UIWizardPage.h"
|
---|
24 | #include "COMDefs.h"
|
---|
25 |
|
---|
26 | /* Forward declarations: */
|
---|
27 | class QIRichTextLabel;
|
---|
28 |
|
---|
29 | /* 5th page of the Clone Virtual Disk wizard: */
|
---|
30 | class UIWizardCloneVDPageBasic5 : public UIWizardPage
|
---|
31 | {
|
---|
32 | Q_OBJECT;
|
---|
33 |
|
---|
34 | public:
|
---|
35 |
|
---|
36 | /* Constructor: */
|
---|
37 | UIWizardCloneVDPageBasic5();
|
---|
38 |
|
---|
39 | private:
|
---|
40 |
|
---|
41 | /* Translation stuff: */
|
---|
42 | void retranslateUi();
|
---|
43 |
|
---|
44 | /* Prepare stuff: */
|
---|
45 | void initializePage();
|
---|
46 |
|
---|
47 | /* Validation stuff: */
|
---|
48 | bool validatePage();
|
---|
49 |
|
---|
50 | /* Widgets: */
|
---|
51 | QIRichTextLabel *m_pLabel1;
|
---|
52 | QIRichTextLabel *m_pSummaryText;
|
---|
53 | QIRichTextLabel *m_pLabel2;
|
---|
54 | };
|
---|
55 |
|
---|
56 | #endif // __UIWizardCloneVDPageBasic5_h__
|
---|
57 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.