VirtualBox

source: vbox/trunk/src/VBox/Debugger/VBoxDbgGui.cpp@ 4071

Last change on this file since 4071 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/** @file
2 *
3 * VBox Debugger GUI - The Manager.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19#define VBOX_COM_NO_ATL
20#include <VBox/com/defs.h>
21#include <VBox/vm.h>
22#include <VBox/err.h>
23
24#include "VBoxDbgGui.h"
25#include <qdesktopwidget.h>
26#include <qapplication.h>
27
28
29VBoxDbgGui::VBoxDbgGui() :
30 m_pDbgStats(NULL), m_pDbgConsole(NULL), m_pSession(NULL), m_pConsole(NULL),
31 m_pMachineDebugger(NULL), m_pMachine(NULL), m_pVM(NULL), m_x(0), m_y(0), m_cx(0), m_cy(0),
32 m_xDesktop(0), m_yDesktop(0), m_cxDesktop(0), m_cyDesktop(0)
33{
34
35}
36
37
38int VBoxDbgGui::init(ISession *pSession)
39{
40 /*
41 * Update the desktop size first.
42 */
43 updateDesktopSize();
44
45 /*
46 * Query the Virtual Box interfaces.
47 */
48 m_pSession = pSession;
49 m_pSession->AddRef();
50
51 HRESULT hrc = m_pSession->COMGETTER(Machine)(&m_pMachine);
52 if (SUCCEEDED(hrc))
53 {
54 hrc = m_pSession->COMGETTER(Console)(&m_pConsole);
55 if (SUCCEEDED(hrc))
56 {
57 hrc = m_pConsole->COMGETTER(Debugger)(&m_pMachineDebugger);
58 if (SUCCEEDED(hrc))
59 {
60 /*
61 * Get the VM handle.
62 */
63 ULONG64 ullVM;
64 hrc = m_pMachineDebugger->COMGETTER(VM)(&ullVM);
65 if (SUCCEEDED(hrc))
66 {
67 m_pVM = (PVM)(uintptr_t)ullVM;
68 return VINF_SUCCESS;
69 }
70
71 /* damn, failure! */
72 m_pMachineDebugger->Release();
73 }
74 m_pConsole->Release();
75 }
76 m_pMachine->Release();
77 }
78
79 return VERR_GENERAL_FAILURE;
80}
81
82
83VBoxDbgGui::~VBoxDbgGui()
84{
85
86 if (m_pDbgStats)
87 {
88 delete m_pDbgStats;
89 m_pDbgStats = NULL;
90 }
91
92 if (m_pDbgConsole)
93 {
94 delete m_pDbgConsole;
95 m_pDbgConsole = NULL;
96 }
97
98 if (m_pMachineDebugger)
99 {
100 m_pMachineDebugger->Release();
101 m_pMachineDebugger = NULL;
102 }
103
104 if (m_pConsole)
105 {
106 m_pConsole->Release();
107 m_pConsole = NULL;
108 }
109
110 if (m_pMachine)
111 {
112 m_pMachine->Release();
113 m_pMachine = NULL;
114 }
115
116 if (m_pSession)
117 {
118 m_pSession->Release();
119 m_pSession = NULL;
120 }
121
122 m_pVM = NULL;
123}
124
125
126int VBoxDbgGui::showStatistics()
127{
128 if (!m_pDbgStats)
129 {
130 m_pDbgStats = new VBoxDbgStats(m_pVM);
131 connect(m_pDbgStats, SIGNAL(destroyed(QObject *)), this, SLOT(notifyChildDestroyed(QObject *)));
132 repositionStatistics();
133 }
134 m_pDbgStats->show();
135 return VINF_SUCCESS;
136}
137
138void VBoxDbgGui::repositionStatistics(bool fResize/* = true*/)
139{
140 if (m_pDbgStats)
141 {
142 /* Move it to the right side of the VBox console. */
143 m_pDbgStats->move(m_x + m_cx, m_y);
144 if (fResize)
145 /* Resize it to cover all the space to the left side of the desktop. */
146 resizeWidget(m_pDbgStats, m_cxDesktop - m_cx - m_x + m_xDesktop, m_cyDesktop - m_y + m_yDesktop);
147 }
148}
149
150
151int VBoxDbgGui::showConsole()
152{
153 if (!m_pDbgConsole)
154 {
155 m_pDbgConsole = new VBoxDbgConsole(m_pVM);
156 connect(m_pDbgConsole, SIGNAL(destroyed(QObject *)), this, SLOT(notifyChildDestroyed(QObject *)));
157 repositionConsole();
158 }
159 m_pDbgConsole->show();
160 return VINF_SUCCESS;
161}
162
163
164void VBoxDbgGui::repositionConsole(bool fResize/* = true*/)
165{
166 if (m_pDbgConsole)
167 {
168 /* Move it to the bottom of the VBox console. */
169 m_pDbgConsole->move(m_x, m_y + m_cy);
170 if (fResize)
171 /* Resize it to cover the space down to the bottom of the desktop. */
172 resizeWidget(m_pDbgConsole, m_cx, m_cyDesktop - m_cy - m_y + m_yDesktop);
173 }
174}
175
176
177void VBoxDbgGui::updateDesktopSize()
178{
179 QRect Rct(0, 0, 1600, 1200);
180 QDesktopWidget *pDesktop = QApplication::desktop();
181 if (pDesktop)
182 Rct = pDesktop->availableGeometry(QPoint(m_x, m_y));
183 m_xDesktop = Rct.x();
184 m_yDesktop = Rct.y();
185 m_cxDesktop = Rct.width();
186 m_cyDesktop = Rct.height();
187}
188
189
190void VBoxDbgGui::adjustRelativePos(int x, int y, unsigned cx, unsigned cy)
191{
192 const bool fResize = cx != m_cx || cy != m_cy;
193 const bool fMoved = x != m_x || y != m_y;
194
195 m_x = x;
196 m_y = y;
197 m_cx = cx;
198 m_cy = cy;
199
200 if (fMoved)
201 updateDesktopSize();
202 repositionConsole(fResize);
203 repositionStatistics(fResize);
204}
205
206
207/*static*/ void VBoxDbgGui::resizeWidget(QWidget *pWidget, unsigned cx, unsigned cy)
208{
209 QSize FrameSize = pWidget->frameSize();
210 QSize WidgetSize = pWidget->size();
211 pWidget->resize(cx - (FrameSize.width() - WidgetSize.width()),
212 cy - (FrameSize.height() - WidgetSize.height()));
213}
214
215void VBoxDbgGui::notifyChildDestroyed(QObject *pObj)
216{
217 if (m_pDbgStats == pObj)
218 m_pDbgStats = NULL;
219 else if (m_pDbgConsole == pObj)
220 m_pDbgConsole = NULL;
221}
222
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