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 (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 __VBoxDbgGui_h__
|
---|
19 | #define __VBoxDbgGui_h__
|
---|
20 |
|
---|
21 | // VirtualBox COM interfaces declarations (generated header)
|
---|
22 | #ifdef VBOX_WITH_XPCOM
|
---|
23 | # include <VirtualBox_XPCOM.h>
|
---|
24 | #else
|
---|
25 | # include <VirtualBox.h>
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | #include "VBoxDbgStats.h"
|
---|
29 | #include "VBoxDbgConsole.h"
|
---|
30 |
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * The Debugger GUI manager class.
|
---|
34 | *
|
---|
35 | * It's job is to provide a C callable external interface and manage the
|
---|
36 | * windows and bit making up the debugger GUI.
|
---|
37 | */
|
---|
38 | class VBoxDbgGui : public QObject
|
---|
39 | {
|
---|
40 | Q_OBJECT
|
---|
41 |
|
---|
42 | public:
|
---|
43 | /**
|
---|
44 | * Create a default VBoxDbgGui object.
|
---|
45 | */
|
---|
46 | VBoxDbgGui();
|
---|
47 |
|
---|
48 | /**
|
---|
49 | * Initializes a VBoxDbgGui object.
|
---|
50 | *
|
---|
51 | * @returns VBox status code.
|
---|
52 | * @param pSession VBox Session object.
|
---|
53 | */
|
---|
54 | int init(ISession *pSession);
|
---|
55 |
|
---|
56 | /**
|
---|
57 | * Destroys the VBoxDbgGui object.
|
---|
58 | */
|
---|
59 | virtual ~VBoxDbgGui();
|
---|
60 |
|
---|
61 | /**
|
---|
62 | * Show the default statistics window, creating it if necessary.
|
---|
63 | *
|
---|
64 | * @returns VBox status code.
|
---|
65 | */
|
---|
66 | int showStatistics();
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * Repositions and resizes (optionally) the statistics to its defaults
|
---|
70 | *
|
---|
71 | * @param fResize If set (default) the size of window is also changed.
|
---|
72 | */
|
---|
73 | void repositionStatistics(bool fResize = true);
|
---|
74 |
|
---|
75 | /**
|
---|
76 | * Show the console window (aka. command line), creating it if necessary.
|
---|
77 | *
|
---|
78 | * @returns VBox status code.
|
---|
79 | */
|
---|
80 | int showConsole();
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Repositions and resizes (optionally) the console to its defaults
|
---|
84 | *
|
---|
85 | * @param fResize If set (default) the size of window is also changed.
|
---|
86 | */
|
---|
87 | void repositionConsole(bool fResize = true);
|
---|
88 |
|
---|
89 | /**
|
---|
90 | * Update the desktop size.
|
---|
91 | * This is called whenever the reference window changes positition.
|
---|
92 | */
|
---|
93 | void updateDesktopSize();
|
---|
94 |
|
---|
95 | /**
|
---|
96 | * Notifies the debugger GUI that the console window (or whatever) has changed
|
---|
97 | * size or position.
|
---|
98 | *
|
---|
99 | * @param x The x-coordinate of the window the debugger is relative to.
|
---|
100 | * @param y The y-coordinate of the window the debugger is relative to.
|
---|
101 | * @param cx The width of the window the debugger is relative to.
|
---|
102 | * @param cy The height of the window the debugger is relative to.
|
---|
103 | */
|
---|
104 | void adjustRelativePos(int x, int y, unsigned cx, unsigned cy);
|
---|
105 |
|
---|
106 | /**
|
---|
107 | * Resizes a QWidget given the frame size.
|
---|
108 | *
|
---|
109 | * @param pWidget The widget to resize.
|
---|
110 | * @param cx The new frame height.
|
---|
111 | * @param cy The new frame width.
|
---|
112 | */
|
---|
113 | static void resizeWidget(QWidget *pWidget, unsigned cx, unsigned cy);
|
---|
114 |
|
---|
115 | protected slots:
|
---|
116 | /**
|
---|
117 | * Notify that a child object (i.e. a window is begin destroyed).
|
---|
118 | * @param pObj The object which is being destroyed.
|
---|
119 | */
|
---|
120 | void notifyChildDestroyed(QObject *pObj);
|
---|
121 |
|
---|
122 | protected:
|
---|
123 |
|
---|
124 | /** The debugger statistics. */
|
---|
125 | VBoxDbgStats *m_pDbgStats;
|
---|
126 | /** The debugger console (aka. command line). */
|
---|
127 | VBoxDbgConsole *m_pDbgConsole;
|
---|
128 |
|
---|
129 | /** The Virtual Box session. */
|
---|
130 | ISession *m_pSession;
|
---|
131 | /** The Virtual Box console. */
|
---|
132 | IConsole *m_pConsole;
|
---|
133 | /** The Virtual Box Machine Debugger. */
|
---|
134 | IMachineDebugger *m_pMachineDebugger;
|
---|
135 | /** The Virtual Box Machine. */
|
---|
136 | IMachine *m_pMachine;
|
---|
137 | /** The VM instance. */
|
---|
138 | PVM m_pVM;
|
---|
139 |
|
---|
140 | /** The x-coordinate of the window we're relative to. */
|
---|
141 | int m_x;
|
---|
142 | /** The y-coordinate of the window we're relative to. */
|
---|
143 | int m_y;
|
---|
144 | /** The width of the window we're relative to. */
|
---|
145 | unsigned m_cx;
|
---|
146 | /** The height of the window we're relative to. */
|
---|
147 | unsigned m_cy;
|
---|
148 | /** The x-coordianate of the desktop. */
|
---|
149 | int m_xDesktop;
|
---|
150 | /** The y-coordianate of the desktop. */
|
---|
151 | int m_yDesktop;
|
---|
152 | /** The size of the desktop. */
|
---|
153 | unsigned m_cxDesktop;
|
---|
154 | /** The size of the desktop. */
|
---|
155 | unsigned m_cyDesktop;
|
---|
156 | };
|
---|
157 |
|
---|
158 |
|
---|
159 | #endif
|
---|
160 |
|
---|