1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Qt4 GUI ("VirtualBox"):
|
---|
4 | * VBoxVMInformationDlg class declaration
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2008 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 __VBoxVMInformationDlg_h__
|
---|
24 | #define __VBoxVMInformationDlg_h__
|
---|
25 |
|
---|
26 | #include "VBoxVMInformationDlg.gen.h"
|
---|
27 | #include "QIMainDialog.h"
|
---|
28 | #include "COMDefs.h"
|
---|
29 | #include "QIWithRetranslateUI.h"
|
---|
30 |
|
---|
31 | class VBoxConsoleView;
|
---|
32 | class QTimer;
|
---|
33 |
|
---|
34 | class VBoxVMInformationDlg : public QIWithRetranslateUI2<QIMainDialog>,
|
---|
35 | public Ui::VBoxVMInformationDlg
|
---|
36 | {
|
---|
37 | Q_OBJECT;
|
---|
38 |
|
---|
39 | public:
|
---|
40 |
|
---|
41 | typedef QMap<QString, QString> DataMapType;
|
---|
42 | typedef QMap<QString, QStringList> LinksMapType;
|
---|
43 | struct CounterElementType {QString type; DataMapType list;};
|
---|
44 | typedef QMap <QString, VBoxVMInformationDlg*> InfoDlgMap;
|
---|
45 |
|
---|
46 | static void createInformationDlg (const CSession &aSession,
|
---|
47 | VBoxConsoleView *aConsole);
|
---|
48 |
|
---|
49 | VBoxVMInformationDlg (VBoxConsoleView *aConsole, const CSession &aSession,
|
---|
50 | Qt::WindowFlags aFlags);
|
---|
51 | ~VBoxVMInformationDlg();
|
---|
52 |
|
---|
53 | protected:
|
---|
54 |
|
---|
55 | void retranslateUi();
|
---|
56 |
|
---|
57 | virtual bool event (QEvent *aEvent);
|
---|
58 | virtual void resizeEvent (QResizeEvent *aEvent);
|
---|
59 | virtual void showEvent (QShowEvent *aEvent);
|
---|
60 |
|
---|
61 | private slots:
|
---|
62 |
|
---|
63 | void updateDetails();
|
---|
64 | void processStatistics();
|
---|
65 | void onPageChanged (int aIndex);
|
---|
66 | void suicide();
|
---|
67 |
|
---|
68 | private:
|
---|
69 |
|
---|
70 | QString parseStatistics (const QString &aText);
|
---|
71 | void refreshStatistics();
|
---|
72 |
|
---|
73 | QString formatValue (const QString &aValueName, const QString &aValue, int aMaxSize);
|
---|
74 | QString formatHardDisk (KStorageBus aBus, LONG aChannel, LONG aDevice, const QString &aBelongsTo);
|
---|
75 | QString formatAdapter (ULONG aSlot, const QString &aBelongsTo);
|
---|
76 |
|
---|
77 | QString composeArticle (const QString &aBelongsTo);
|
---|
78 |
|
---|
79 | static InfoDlgMap mSelfArray;
|
---|
80 |
|
---|
81 | bool mIsPolished;
|
---|
82 | VBoxConsoleView *mConsole;
|
---|
83 | CSession mSession;
|
---|
84 | QTimer *mStatTimer;
|
---|
85 |
|
---|
86 | int mWidth;
|
---|
87 | int mHeight;
|
---|
88 | bool mMax;
|
---|
89 |
|
---|
90 | DataMapType mNamesMap;
|
---|
91 | DataMapType mValuesMap;
|
---|
92 | DataMapType mUnitsMap;
|
---|
93 | LinksMapType mLinksMap;
|
---|
94 | };
|
---|
95 |
|
---|
96 | #endif // __VBoxVMInformationDlg_h__
|
---|
97 |
|
---|