1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Qt4 GUI ("VirtualBox"):
|
---|
4 | * UIGlobalSettingsUpdate class declaration
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2010 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 __UIGlobalSettingsUpdate_h__
|
---|
20 | #define __UIGlobalSettingsUpdate_h__
|
---|
21 |
|
---|
22 | /* Local includes */
|
---|
23 | #include "UISettingsPage.h"
|
---|
24 | #include "UIGlobalSettingsUpdate.gen.h"
|
---|
25 | #include "VBoxUpdateDlg.h"
|
---|
26 |
|
---|
27 | /* Global settings / Update page / Cache: */
|
---|
28 | struct UISettingsCacheGlobalUpdate
|
---|
29 | {
|
---|
30 | bool m_fCheckEnabled;
|
---|
31 | VBoxUpdateData::PeriodType m_periodIndex;
|
---|
32 | VBoxUpdateData::BranchType m_branchIndex;
|
---|
33 | QString m_strDate;
|
---|
34 | };
|
---|
35 |
|
---|
36 | /* Global settings / Update page: */
|
---|
37 | class UIGlobalSettingsUpdate : public UISettingsPageGlobal, public Ui::UIGlobalSettingsUpdate
|
---|
38 | {
|
---|
39 | Q_OBJECT;
|
---|
40 |
|
---|
41 | public:
|
---|
42 |
|
---|
43 | /* Constructor: */
|
---|
44 | UIGlobalSettingsUpdate();
|
---|
45 |
|
---|
46 | protected:
|
---|
47 |
|
---|
48 | /* Load data to cashe from corresponding external object(s),
|
---|
49 | * this task COULD be performed in other than GUI thread: */
|
---|
50 | void loadToCacheFrom(QVariant &data);
|
---|
51 | /* Load data to corresponding widgets from cache,
|
---|
52 | * this task SHOULD be performed in GUI thread only: */
|
---|
53 | void getFromCache();
|
---|
54 |
|
---|
55 | /* Save data from corresponding widgets to cache,
|
---|
56 | * this task SHOULD be performed in GUI thread only: */
|
---|
57 | void putToCache();
|
---|
58 | /* Save data from cache to corresponding external object(s),
|
---|
59 | * this task COULD be performed in other than GUI thread: */
|
---|
60 | void saveFromCacheTo(QVariant &data);
|
---|
61 |
|
---|
62 | /* Navigation stuff: */
|
---|
63 | void setOrderAfter(QWidget *pWidget);
|
---|
64 |
|
---|
65 | /* Translation stuff: */
|
---|
66 | void retranslateUi();
|
---|
67 |
|
---|
68 | private slots:
|
---|
69 |
|
---|
70 | /* Various helper slots: */
|
---|
71 | void sltUpdaterToggled(bool fEnabled);
|
---|
72 | void sltPeriodActivated();
|
---|
73 | void sltBranchToggled();
|
---|
74 |
|
---|
75 | private:
|
---|
76 |
|
---|
77 | /* Helpers: */
|
---|
78 | VBoxUpdateData::PeriodType periodType() const;
|
---|
79 | VBoxUpdateData::BranchType branchType() const;
|
---|
80 |
|
---|
81 | /* Last chosen radio-button: */
|
---|
82 | QRadioButton *m_pLastChosenRadio;
|
---|
83 |
|
---|
84 | /* Editnes flag: */
|
---|
85 | bool m_fChanged;
|
---|
86 |
|
---|
87 | /* Cache: */
|
---|
88 | UISettingsCacheGlobalUpdate m_cache;
|
---|
89 | };
|
---|
90 |
|
---|
91 | #endif // __UIGlobalSettingsUpdate_h__
|
---|
92 |
|
---|