1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Qt GUI ("VirtualBox"):
|
---|
4 | * VBoxMediaComboBox class declaration
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | * additional information or have any questions.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __VBoxMediaComboBox_h__
|
---|
24 | #define __VBoxMediaComboBox_h__
|
---|
25 |
|
---|
26 | #include "VBoxGlobal.h"
|
---|
27 |
|
---|
28 | #include <QComboBox>
|
---|
29 | #include <QPixmap>
|
---|
30 |
|
---|
31 | class VBoxMediaComboBox : public QComboBox
|
---|
32 | {
|
---|
33 | Q_OBJECT
|
---|
34 |
|
---|
35 | public:
|
---|
36 |
|
---|
37 | typedef QMap <QUuid, QUuid> BaseToDiffMap;
|
---|
38 |
|
---|
39 | VBoxMediaComboBox (QWidget *aParent);
|
---|
40 |
|
---|
41 | void refresh();
|
---|
42 | void repopulate();
|
---|
43 |
|
---|
44 | QUuid id (int = -1) const;
|
---|
45 | QString location (int = -1) const;
|
---|
46 |
|
---|
47 | void setCurrentItem (const QUuid &aItemId);
|
---|
48 | void setType (VBoxDefs::MediaType aMediaType);
|
---|
49 | void setMachineId (const QUuid &aMachineId = QUuid());
|
---|
50 |
|
---|
51 | void setShowDiffs (bool aShowDiffs);
|
---|
52 | bool showDiffs() const { return mShowDiffs; }
|
---|
53 |
|
---|
54 | protected slots:
|
---|
55 |
|
---|
56 | void mediumEnumStarted();
|
---|
57 | void mediumEnumerated (const VBoxMedium &);
|
---|
58 |
|
---|
59 | void mediumAdded (const VBoxMedium &);
|
---|
60 | void mediumUpdated (const VBoxMedium &);
|
---|
61 | void mediumRemoved (VBoxDefs::MediaType, const QUuid &);
|
---|
62 |
|
---|
63 | void processActivated (int aIndex);
|
---|
64 | // void processIndexChanged (int aIndex);
|
---|
65 |
|
---|
66 | void processOnItem (const QModelIndex &aIndex);
|
---|
67 |
|
---|
68 | protected:
|
---|
69 |
|
---|
70 | void addNoMediaItem();
|
---|
71 |
|
---|
72 | void updateToolTip (int);
|
---|
73 |
|
---|
74 | void appendItem (const VBoxMedium &);
|
---|
75 | void replaceItem (int, const VBoxMedium &);
|
---|
76 |
|
---|
77 | bool findMediaIndex (const QUuid &aId, int &aIndex);
|
---|
78 |
|
---|
79 | VBoxDefs::MediaType mType;
|
---|
80 |
|
---|
81 | /** Obtruncated VBoxMedium structure. */
|
---|
82 | struct Medium
|
---|
83 | {
|
---|
84 | Medium() {}
|
---|
85 | Medium (const QUuid &aId, const QString &aLocation,
|
---|
86 | const QString aToolTip)
|
---|
87 | : id (aId), location (aLocation), toolTip (aToolTip) {}
|
---|
88 |
|
---|
89 | QUuid id;
|
---|
90 | QString location;
|
---|
91 | QString toolTip;
|
---|
92 | };
|
---|
93 |
|
---|
94 | typedef QVector <Medium> Media;
|
---|
95 | Media mMedia;
|
---|
96 |
|
---|
97 | QUuid mLastId;
|
---|
98 |
|
---|
99 | bool mShowDiffs : 1;
|
---|
100 |
|
---|
101 | QUuid mMachineId;
|
---|
102 | };
|
---|
103 |
|
---|
104 | #endif /* __VBoxMediaComboBox_h__ */
|
---|