VBoxDbgBase.h revision 6ec4e1827eab6a424d672ef0e5a17b065e52db20
/* $Id$ */
/** @file
* VBox Debugger GUI - Base classes.
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___Debugger_VBoxDbgBase_h
#define ___Debugger_VBoxDbgBase_h
#include <VBox/stam.h>
#include <VBox/vmapi.h>
#include <VBox/dbg.h>
#include <iprt/thread.h>
#include <QString>
#include <QWidget>
class VBoxDbgGui;
/**
* VBox Debugger GUI Base Class.
*
* The purpose of this class is to hide the VM handle, abstract VM
* operations, and finally to make sure the GUI won't crash when
* the VM dies.
*/
class VBoxDbgBase
{
public:
/**
* Construct the object.
*
* @param pDbgGui Pointer to the debugger gui object.
*/
VBoxDbgBase(VBoxDbgGui *a_pDbgGui);
/**
* Destructor.
*/
virtual ~VBoxDbgBase();
/**
* Checks if the VM is OK for normal operations.
* @returns true if ok, false if not.
*/
bool isVMOk() const
{
return m_pVM != NULL;
}
/**
* Checks if the current thread is the GUI thread or not.
* @return true/false accordingly.
*/
bool isGUIThread() const
{
return m_hGUIThread == RTThreadNativeSelf();
}
/** @name Operations
* @{ */
/**
* Wrapper for STAMR3Reset().
*/
int stamReset(const QString &rPat);
/**
* Wrapper for STAMR3Enum().
*/
int stamEnum(const QString &rPat, PFNSTAMR3ENUM pfnEnum, void *pvUser);
/**
* Wrapper for DBGCCreate().
*/
int dbgcCreate(PDBGCBACK pBack, unsigned fFlags);
/** @} */
protected:
/** @name Signals
* @{ */
/**
* Called when the VM is being destroyed.
*/
virtual void sigDestroying();
/**
* Called when the VM has been terminated.
*/
virtual void sigTerminated();
/** @} */
private:
/**
* VM state callback function.
*
* You are not allowed to call any function which changes the VM state from a
* state callback, except VMR3Destroy().
*
* @param pVM The VM handle.
* @param enmState The new state.
* @param enmOldState The old state.
* @param pvUser The user argument.
*/
static DECLCALLBACK(void) atStateChange(PVM pVM, VMSTATE enmState, VMSTATE enmOldState, void *pvUser);
private:
/** Pointer to the debugger GUI object. */
VBoxDbgGui *m_pDbgGui;
/** The VM handle. */
PVM volatile m_pVM;
/** The handle of the GUI thread. */
RTNATIVETHREAD m_hGUIThread;
};
/**
* VBox Debugger GUI Base Window Class.
*
* This is just a combination of QWidget and VBoxDbgBase with some additional
* functionality for window management. This class is not intended for control
* widgets, only normal top-level windows.
*/
class VBoxDbgBaseWindow : public QWidget, public VBoxDbgBase
{
public:
/**
* Construct the object.
*
* @param pDbgGui Pointer to the debugger gui object.
*/
VBoxDbgBaseWindow(VBoxDbgGui *a_pDbgGui, QWidget *a_pParent);
/**
* Destructor.
*/
virtual ~VBoxDbgBaseWindow();
/**
* Shows the window and gives it focus.
*/
void vShow();
/**
* Repositions the window, taking the frame decoration into account.
*
* @param a_x The new x coordinate.
* @param a_y The new x coordinate.
* @param a_cx The total width.
* @param a_cy The total height.
* @param a_fResize Whether to resize it as well.
*/
void vReposition(int a_x, int a_y, unsigned a_cx, unsigned a_cy, bool a_fResize);
protected:
/**
* For polishing the window size (X11 mess).
*
* @returns true / false.
* @param a_pEvt The event.
*/
virtual bool event(QEvent *a_pEvt);
/**
* Internal worker for polishing the size and position (X11 hacks).
*/
void vPolishSizeAndPos();
/**
* Internal worker that guesses the border sizes.
*/
QSize vGuessBorderSizes();
private:
/** Whether we've done the size polishing in showEvent or not. */
bool m_fPolished;
/** The desired x coordinate. */
int m_x;
/** The desired y coordinate. */
int m_y;
/** The desired width. */
unsigned m_cx;
/** The desired height. */
unsigned m_cy;
/** Best effort x border size (for X11). */
static unsigned m_cxBorder;
/** Best effort y border size (for X11). */
static unsigned m_cyBorder;
};
#endif