VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserAbstractModel.h@ 85038

Last change on this file since 85038 was 85038, checked in by vboxsync, 4 years ago

FE/Qt: bugref:9653: VirtualBox Manager: Chooser pane: Handle Cloud Profile Manager restriction changes at runtime now.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.9 KB
Line 
1/* $Id: UIChooserAbstractModel.h 85038 2020-07-01 18:37:27Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - UIChooserAbstractModel class declaration.
4 */
5
6/*
7 * Copyright (C) 2012-2020 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_manager_chooser_UIChooserAbstractModel_h
19#define FEQT_INCLUDED_SRC_manager_chooser_UIChooserAbstractModel_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24/* GUI includes: */
25#include "UIChooserDefs.h"
26
27/* COM includes: */
28#include "COMEnums.h"
29
30/* Forward declaration: */
31class QUuid;
32class UIChooser;
33class UIChooserNode;
34class UITask;
35class CCloudMachine;
36class CMachine;
37
38/** QObject extension used as VM Chooser-pane abstract model.
39 * This class is used to load/save a tree of abstract invisible
40 * nodes representing VMs and their groups from/to extra-data. */
41class UIChooserAbstractModel : public QObject
42{
43 Q_OBJECT;
44
45signals:
46
47 /** @name Cloud machine stuff.
48 * @{ */
49 /** Notifies listeners about state change for cloud machine with certain @a uId. */
50 void sigCloudMachineStateChange(const QUuid &uId);
51 /** @} */
52
53 /** @name Group saving stuff.
54 * @{ */
55 /** Commands to start group saving. */
56 void sigStartGroupSaving();
57 /** Notifies listeners about group saving state changed. */
58 void sigGroupSavingStateChanged();
59 /** @} */
60
61public:
62
63 /** Constructs abstract Chooser-model passing @a pParent to the base-class. */
64 UIChooserAbstractModel(UIChooser *pParent);
65
66 /** @name General stuff.
67 * @{ */
68 /** Inits model. */
69 virtual void init();
70 /** Deinits model. */
71 virtual void deinit();
72 /** @} */
73
74 /** @name Children stuff.
75 * @{ */
76 /** Returns invisible root node instance. */
77 UIChooserNode *invisibleRoot() const { return m_pInvisibleRootNode; }
78
79 /** Wipes out empty groups. */
80 void wipeOutEmptyGroups();
81
82 /** Returns possible group node names for machine node with passed @a uId to move to. */
83 QStringList possibleGroupNodeNamesForMachineNodeToMove(const QUuid &uId);
84 /** Returns possible group node names for group node with passed @a strFullName to move to. */
85 QStringList possibleGroupNodeNamesForGroupNodeToMove(const QString &strFullName);
86
87 /** Generates unique group name traversing recursively starting from @a pRoot. */
88 static QString uniqueGroupName(UIChooserNode *pRoot);
89 /** @} */
90
91 /** @name Search stuff.
92 * @{ */
93 /** Performs a search using @a strSearchTerm and @a iSearchFlags specified. */
94 virtual void performSearch(const QString &strSearchTerm, int iSearchFlags);
95 /** Resets the search result data members and disables item's visual effects.
96 * Also returns a list of all nodes which may be utilized by the calling code. */
97 virtual QList<UIChooserNode*> resetSearch();
98 /** Returns search result. */
99 QList<UIChooserNode*> searchResult() const;
100 /** @} */
101
102 /** @name Group saving stuff.
103 * @{ */
104 /** Commands to save groups. */
105 void saveGroups();
106 /** Returns whether group saving is in progress. */
107 bool isGroupSavingInProgress() const;
108
109 /** Returns QString representation for passed @a uId, wiping out {} symbols.
110 * @note Required for backward compatibility after QString=>QUuid change. */
111 static QString toOldStyleUuid(const QUuid &uId);
112
113 /** Returns node extra-data prefix of certain @a enmType. */
114 static QString prefixToString(UIChooserNodeDataPrefixType enmType);
115 /** Returns node extra-data option of certain @a enmType. */
116 static QString optionToString(UIChooserNodeDataOptionType enmType);
117 /** Returns node extra-data value of certain @a enmType. */
118 static QString valueToString(UIChooserNodeDataValueType enmType);
119 /** @} */
120
121public slots:
122
123 /** @name Cloud machine stuff.
124 * @{ */
125 /** Handles cloud machine state change. */
126 void sltHandleCloudMachineStateChange();
127 /** @} */
128
129 /** @name Group saving stuff.
130 * @{ */
131 /** Handles group settings saving complete. */
132 void sltGroupSettingsSaveComplete();
133 /** Handles group definitions saving complete. */
134 void sltGroupDefinitionsSaveComplete();
135 /** @} */
136
137protected slots:
138
139 /** @name Main event handling stuff.
140 * @{ */
141 /** Handles local machine @a enmState change for machine with certain @a uMachineId. */
142 virtual void sltLocalMachineStateChanged(const QUuid &uMachineId, const KMachineState enmState);
143 /** Handles local machine data change for machine with certain @a uMachineId. */
144 virtual void sltLocalMachineDataChanged(const QUuid &uMachineId);
145 /** Handles local machine registering/unregistering for machine with certain @a uMachineId. */
146 virtual void sltLocalMachineRegistered(const QUuid &uMachineId, const bool fRegistered);
147 /** Handles cloud machine registering/unregistering for machine with certain @a uMachineId.
148 * @param strProviderShortName Brings provider short name.
149 * @param strProfileName Brings profile name. */
150 virtual void sltCloudMachineRegistered(const QString &strProviderShortName, const QString &strProfileName,
151 const QUuid &uMachineId, const bool fRegistered);
152 /** Handles session @a enmState change for machine with certain @a uMachineId. */
153 virtual void sltSessionStateChanged(const QUuid &uMachineId, const KSessionState enmState);
154 /** Handles snapshot change for machine/snapshot with certain @a uMachineId / @a uSnapshotId. */
155 virtual void sltSnapshotChanged(const QUuid &uMachineId, const QUuid &uSnapshotId);
156 /** @} */
157
158 /** @name Children stuff.
159 * @{ */
160 /** Handles reload machine with certain @a uMachineId request. */
161 virtual void sltReloadMachine(const QUuid &uMachineId);
162 /** @} */
163
164 /** @name Cloud stuff.
165 * @{ */
166 /** Handles list cloud machines task complete signal. */
167 virtual void sltHandleCloudListMachinesTaskComplete(UITask *pTask);
168 /** Handles Cloud Profile Manager restriction change. */
169 virtual void sltHandleCloudProfileManagerRestrictionChange();
170 /** @} */
171
172private slots:
173
174 /** @name Group saving stuff.
175 * @{ */
176 /** Handles request to start group saving. */
177 void sltStartGroupSaving();
178 /** @} */
179
180private:
181
182 /** @name Prepare/Cleanup cascade.
183 * @{ */
184 /** Prepares all. */
185 void prepare();
186 /** Prepares connections. */
187 void prepareConnections();
188 /** @} */
189
190 /** @name Children stuff.
191 * @{ */
192 /** Reloads local tree. */
193 void reloadLocalTree();
194 /** Reloads cloud tree. */
195 void reloadCloudTree();
196
197 /** Adds local machine item based on certain @a comMachine and optionally @a fMakeItVisible. */
198 void addLocalMachineIntoTheTree(const CMachine &comMachine, bool fMakeItVisible = false);
199 /** Adds cloud machine item based on certain @a comMachine and optionally @a fMakeItVisible, into @a strGroup. */
200 void addCloudMachineIntoTheTree(const QString &strGroup, const CCloudMachine &comMachine, bool fMakeItVisible = false);
201
202 /** Acquires local group node, creates one if necessary.
203 * @param strName Brings the name of group we looking for.
204 * @param pParentNode Brings the parent we starting to look for a group from.
205 * @param fAllGroupsOpened Brings whether we should open all the groups till the required one. */
206 UIChooserNode *getLocalGroupNode(const QString &strName, UIChooserNode *pParentNode, bool fAllGroupsOpened);
207 /** Acquires cloud group node, never create new, returns root if nothing found.
208 * @param strName Brings the name of group we looking for.
209 * @param pParentNode Brings the parent we starting to look for a group from.
210 * @param fAllGroupsOpened Brings whether we should open all the groups till the required one. */
211 UIChooserNode *getCloudGroupNode(const QString &strName, UIChooserNode *pParentNode, bool fAllGroupsOpened);
212
213 /** Returns whether group node * with specified @a enmDataType and @a strName should be opened,
214 * searching starting from the passed @a pParentNode. */
215 bool shouldGroupNodeBeOpened(UIChooserNode *pParentNode,
216 UIChooserNodeDataPrefixType enmDataType,
217 const QString &strName) const;
218 /** Returns whether global node should be favorite,
219 * searching starting from the passed @a pParentNode. */
220 bool shouldGlobalNodeBeFavorite(UIChooserNode *pParentNode) const;
221
222 /** Wipes out empty groups starting from @a pParentItem. */
223 void wipeOutEmptyGroupsStartingFrom(UIChooserNode *pParentNode);
224
225 /** Acquires desired position for a child of @a pParentNode with specified @a enmDataType and @a strName. */
226 int getDesiredNodePosition(UIChooserNode *pParentNode, UIChooserNodeDataPrefixType enmDataType, const QString &strName);
227 /** Acquires defined position for a child of @a pParentNode with specified @a enmDataType and @a strName. */
228 int getDefinedNodePosition(UIChooserNode *pParentNode, UIChooserNodeDataPrefixType enmDataType, const QString &strName);
229
230 /** Creates local machine node based on certain @a comMachine as a child of specified @a pParentNode. */
231 void createLocalMachineNode(UIChooserNode *pParentNode, const CMachine &comMachine);
232 /** Creates cloud machine node based on certain @a comMachine as a child of specified @a pParentNode. */
233 void createCloudMachineNode(UIChooserNode *pParentNode, const CCloudMachine &comMachine);
234
235 /** Gathers a list of possible group node names for machine nodes listed in @a exceptions, starting from @a pCurrentNode. */
236 QStringList gatherPossibleGroupNodeNames(UIChooserNode *pCurrentNode, QList<UIChooserNode*> exceptions) const;
237 /** @} */
238
239 /** @name Group saving stuff.
240 * @{ */
241 /** Saves group settings. */
242 void saveGroupSettings();
243 /** Saves group definitions. */
244 void saveGroupDefinitions();
245
246 /** Gathers group @a settings of @a pParentGroup. */
247 void gatherGroupSettings(QMap<QString, QStringList> &settings, UIChooserNode *pParentGroup);
248 /** Gathers group @a definitions of @a pParentGroup. */
249 void gatherGroupDefinitions(QMap<QString, QStringList> &definitions, UIChooserNode *pParentGroup);
250
251 /** Makes sure group settings saving is finished. */
252 void makeSureGroupSettingsSaveIsFinished();
253 /** Makes sure group definitions saving is finished. */
254 void makeSureGroupDefinitionsSaveIsFinished();
255 /** @} */
256
257 /** @name General stuff.
258 * @{ */
259 /** Holds the parent widget reference. */
260 UIChooser *m_pParent;
261 /** @} */
262
263 /** @name Children stuff.
264 * @{ */
265 /** Holds the invisible root node instance. */
266 UIChooserNode *m_pInvisibleRootNode;
267 /** @} */
268
269 /** @name Search stuff.
270 * @{ */
271 /** Stores the results of the current search. */
272 QList<UIChooserNode*> m_searchResults;
273 /** @} */
274
275 /** @name Group saving stuff.
276 * @{ */
277 /** Holds the consolidated map of group settings/definitions. */
278 QMap<QString, QStringList> m_groups;
279 /** @} */
280};
281
282#endif /* !FEQT_INCLUDED_SRC_manager_chooser_UIChooserAbstractModel_h */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette