VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMInformationDlg.h@ 14680

Last change on this file since 14680 was 12695, checked in by vboxsync, 16 years ago

Fe/Qt4: (defect #3187) VDM window doesn't have a WM task entry.
Due to the only possibility to make some window has its own task-bar entry under windows - is to make this window the root window, such windows as Virtual Disk Manager, Log Viewer, Session Information Dialog are become root.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 2.8 KB
Line 
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
31class VBoxConsoleView;
32class QTimer;
33
34class VBoxVMInformationDlg : public QIWithRetranslateUI2<QIMainDialog>,
35 public Ui::VBoxVMInformationDlg
36{
37 Q_OBJECT;
38
39public:
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
53protected:
54
55 void retranslateUi();
56
57 virtual bool event (QEvent *aEvent);
58 virtual void resizeEvent (QResizeEvent *aEvent);
59 virtual void showEvent (QShowEvent *aEvent);
60
61private slots:
62
63 void updateDetails();
64 void processStatistics();
65 void onPageChanged (int aIndex);
66 void suicide();
67
68private:
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
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