VirtualBox

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

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

FE/Qt: bugref:9653: VirtualBox Manager: Another part of cleanup for Chooser pane VM registration stuff (s.a. r140923).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.0 KB
Line 
1/* $Id: UIChooserAbstractModel.h 86570 2020-10-14 11:20:30Z 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 /** Handles event about cloud provider with @a uProviderId being uninstalled. */
157 virtual void sltHandleCloudProviderUninstall(const QUuid &uProviderId);
158 /** @} */
159
160 /** @name Children stuff.
161 * @{ */
162 /** Handles reload machine with certain @a uMachineId request. */
163 virtual void sltReloadMachine(const QUuid &uMachineId);
164 /** @} */
165
166 /** @name Cloud stuff.
167 * @{ */
168 /** Handles list cloud machines task complete signal. */
169 virtual void sltHandleCloudListMachinesTaskComplete(UITask *pTask);
170 /** Handles Cloud Profile Manager cumulative change. */
171 virtual void sltHandleCloudProfileManagerCumulativeChange();
172 /** @} */
173
174private slots:
175
176 /** @name Group saving stuff.
177 * @{ */
178 /** Handles request to start group saving. */
179 void sltStartGroupSaving();
180 /** @} */
181
182private:
183
184 /** @name Prepare/Cleanup cascade.
185 * @{ */
186 /** Prepares all. */
187 void prepare();
188 /** Prepares connections. */
189 void prepareConnections();
190 /** @} */
191
192 /** @name Children stuff.
193 * @{ */
194 /** Reloads local tree. */
195 void reloadLocalTree();
196 /** Reloads cloud tree. */
197 void reloadCloudTree();
198
199 /** Adds local machine item based on certain @a comMachine and optionally @a fMakeItVisible. */
200 void addLocalMachineIntoTheTree(const CMachine &comMachine, bool fMakeItVisible = false);
201 /** Adds cloud machine item based on certain @a comMachine and optionally @a fMakeItVisible, into @a strGroup. */
202 void addCloudMachineIntoTheTree(const QString &strGroup, const CCloudMachine &comMachine, bool fMakeItVisible = false);
203
204 /** Acquires local group node, creates one if necessary.
205 * @param strName Brings the name of group we looking for.
206 * @param pParentNode Brings the parent we starting to look for a group from.
207 * @param fAllGroupsOpened Brings whether we should open all the groups till the required one. */
208 UIChooserNode *getLocalGroupNode(const QString &strName, UIChooserNode *pParentNode, bool fAllGroupsOpened);
209 /** Acquires cloud group node, never create new, returns root if nothing found.
210 * @param strName Brings the name of group we looking for.
211 * @param pParentNode Brings the parent we starting to look for a group from.
212 * @param fAllGroupsOpened Brings whether we should open all the groups till the required one. */
213 UIChooserNode *getCloudGroupNode(const QString &strName, UIChooserNode *pParentNode, bool fAllGroupsOpened);
214
215 /** Returns whether group node * with specified @a enmDataType and @a strName should be opened,
216 * searching starting from the passed @a pParentNode. */
217 bool shouldGroupNodeBeOpened(UIChooserNode *pParentNode,
218 UIChooserNodeDataPrefixType enmDataType,
219 const QString &strName) const;
220 /** Returns whether global node should be favorite,
221 * searching starting from the passed @a pParentNode. */
222 bool shouldGlobalNodeBeFavorite(UIChooserNode *pParentNode) const;
223
224 /** Wipes out empty groups starting from @a pParentItem. */
225 void wipeOutEmptyGroupsStartingFrom(UIChooserNode *pParentNode);
226
227 /** Acquires desired position for a child of @a pParentNode with specified @a enmDataType and @a strName. */
228 int getDesiredNodePosition(UIChooserNode *pParentNode, UIChooserNodeDataPrefixType enmDataType, const QString &strName);
229 /** Acquires defined position for a child of @a pParentNode with specified @a enmDataType and @a strName. */
230 int getDefinedNodePosition(UIChooserNode *pParentNode, UIChooserNodeDataPrefixType enmDataType, const QString &strName);
231
232 /** Creates local machine node based on certain @a comMachine as a child of specified @a pParentNode. */
233 void createLocalMachineNode(UIChooserNode *pParentNode, const CMachine &comMachine);
234 /** Creates cloud machine node based on certain @a comMachine as a child of specified @a pParentNode. */
235 void createCloudMachineNode(UIChooserNode *pParentNode, const CCloudMachine &comMachine);
236
237 /** Gathers a list of possible group node names for machine nodes listed in @a exceptions, starting from @a pCurrentNode. */
238 QStringList gatherPossibleGroupNodeNames(UIChooserNode *pCurrentNode, QList<UIChooserNode*> exceptions) const;
239 /** @} */
240
241 /** @name Group saving stuff.
242 * @{ */
243 /** Saves group settings. */
244 void saveGroupSettings();
245 /** Saves group definitions. */
246 void saveGroupDefinitions();
247
248 /** Gathers group @a settings of @a pParentGroup. */
249 void gatherGroupSettings(QMap<QString, QStringList> &settings, UIChooserNode *pParentGroup);
250 /** Gathers group @a definitions of @a pParentGroup. */
251 void gatherGroupDefinitions(QMap<QString, QStringList> &definitions, UIChooserNode *pParentGroup);
252
253 /** Makes sure group settings saving is finished. */
254 void makeSureGroupSettingsSaveIsFinished();
255 /** Makes sure group definitions saving is finished. */
256 void makeSureGroupDefinitionsSaveIsFinished();
257 /** @} */
258
259 /** @name General stuff.
260 * @{ */
261 /** Holds the parent widget reference. */
262 UIChooser *m_pParent;
263 /** @} */
264
265 /** @name Children stuff.
266 * @{ */
267 /** Holds the invisible root node instance. */
268 UIChooserNode *m_pInvisibleRootNode;
269 /** @} */
270
271 /** @name Search stuff.
272 * @{ */
273 /** Stores the results of the current search. */
274 QList<UIChooserNode*> m_searchResults;
275 /** @} */
276
277 /** @name Group saving stuff.
278 * @{ */
279 /** Holds the consolidated map of group settings/definitions. */
280 QMap<QString, QStringList> m_groups;
281 /** @} */
282};
283
284#endif /* !FEQT_INCLUDED_SRC_manager_chooser_UIChooserAbstractModel_h */
Note: See TracBrowser for help on using the repository browser.

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