Merge pull request #210 from mjbudd77/master
Changed all debug and tools windows to be non-modal top level windows…
This commit is contained in:
commit
405ae70e02
|
@ -48,7 +48,7 @@ void updateCheatDialog(void)
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
GuiCheatsDialog_t::GuiCheatsDialog_t(QWidget *parent)
|
GuiCheatsDialog_t::GuiCheatsDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QHBoxLayout *mainLayout, *hbox, *hbox1;
|
QHBoxLayout *mainLayout, *hbox, *hbox1;
|
||||||
QVBoxLayout *vbox, *vbox1, *vbox2, *vbox3;
|
QVBoxLayout *vbox, *vbox1, *vbox2, *vbox3;
|
||||||
|
|
|
@ -30,7 +30,7 @@ static char loadedcdfile[512] = {0};
|
||||||
static int getDefaultCDLFile( char *filepath );
|
static int getDefaultCDLFile( char *filepath );
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
CodeDataLoggerDialog_t::CodeDataLoggerDialog_t(QWidget *parent)
|
CodeDataLoggerDialog_t::CodeDataLoggerDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout, *vbox1, *vbox;
|
QVBoxLayout *mainLayout, *vbox1, *vbox;
|
||||||
QHBoxLayout *hbox;
|
QHBoxLayout *hbox;
|
||||||
|
|
|
@ -52,7 +52,7 @@ static std::list <ConsoleDebugger*> dbgWinList;
|
||||||
static void DeleteBreak(int sel);
|
static void DeleteBreak(int sel);
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
ConsoleDebugger::ConsoleDebugger(QWidget *parent)
|
ConsoleDebugger::ConsoleDebugger(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QHBoxLayout *mainLayout;
|
QHBoxLayout *mainLayout;
|
||||||
QVBoxLayout *vbox, *vbox1, *vbox2, *vbox3, *vbox4;
|
QVBoxLayout *vbox, *vbox1, *vbox2, *vbox3, *vbox4;
|
||||||
|
|
|
@ -63,7 +63,7 @@ int closeGamePadConfWindow(void)
|
||||||
}
|
}
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
GamePadConfDialog_t::GamePadConfDialog_t(QWidget *parent)
|
GamePadConfDialog_t::GamePadConfDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QWidget *mainWidget;
|
QWidget *mainWidget;
|
||||||
QVBoxLayout *mainLayout;
|
QVBoxLayout *mainLayout;
|
||||||
|
|
|
@ -534,7 +534,7 @@ void HexBookMarkMenuAction::activateCB(void)
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
HexEditorDialog_t::HexEditorDialog_t(QWidget *parent)
|
HexEditorDialog_t::HexEditorDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
//QVBoxLayout *mainLayout;
|
//QVBoxLayout *mainLayout;
|
||||||
QGridLayout *grid;
|
QGridLayout *grid;
|
||||||
|
|
|
@ -94,7 +94,7 @@ static std::list <LuaControlDialog_t*> winList;
|
||||||
static void updateLuaWindows( void );
|
static void updateLuaWindows( void );
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
LuaControlDialog_t::LuaControlDialog_t(QWidget *parent)
|
LuaControlDialog_t::LuaControlDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout;
|
QVBoxLayout *mainLayout;
|
||||||
QHBoxLayout *hbox;
|
QHBoxLayout *hbox;
|
||||||
|
|
|
@ -83,7 +83,7 @@ int openNameTableViewWindow( QWidget *parent )
|
||||||
}
|
}
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
ppuNameTableViewerDialog_t::ppuNameTableViewerDialog_t(QWidget *parent)
|
ppuNameTableViewerDialog_t::ppuNameTableViewerDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout, *vbox;
|
QVBoxLayout *mainLayout, *vbox;
|
||||||
QHBoxLayout *hbox;
|
QHBoxLayout *hbox;
|
||||||
|
|
|
@ -169,7 +169,7 @@ void openRamSearchWindow( QWidget *parent )
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
RamSearchDialog_t::RamSearchDialog_t(QWidget *parent)
|
RamSearchDialog_t::RamSearchDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout;
|
QVBoxLayout *mainLayout;
|
||||||
QHBoxLayout *hbox, *hbox1, *hbox2, *hbox3;
|
QHBoxLayout *hbox, *hbox1, *hbox2, *hbox3;
|
||||||
|
|
|
@ -46,7 +46,7 @@ void openRamWatchWindow( QWidget *parent, int force )
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
RamWatchDialog_t::RamWatchDialog_t(QWidget *parent)
|
RamWatchDialog_t::RamWatchDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QMenuBar *menuBar;
|
QMenuBar *menuBar;
|
||||||
QHBoxLayout *mainLayout;
|
QHBoxLayout *mainLayout;
|
||||||
|
|
|
@ -75,7 +75,7 @@ static TraceLoggerDialog_t *traceLogWindow = NULL;
|
||||||
static void pushMsgToLogBuffer( const char *msg );
|
static void pushMsgToLogBuffer( const char *msg );
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
TraceLoggerDialog_t::TraceLoggerDialog_t(QWidget *parent)
|
TraceLoggerDialog_t::TraceLoggerDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout;
|
QVBoxLayout *mainLayout;
|
||||||
QHBoxLayout *hbox;
|
QHBoxLayout *hbox;
|
||||||
|
|
|
@ -66,7 +66,7 @@ int openPPUViewWindow( QWidget *parent )
|
||||||
}
|
}
|
||||||
//----------------------------------------------------
|
//----------------------------------------------------
|
||||||
ppuViewerDialog_t::ppuViewerDialog_t(QWidget *parent)
|
ppuViewerDialog_t::ppuViewerDialog_t(QWidget *parent)
|
||||||
: QDialog( parent )
|
: QDialog( parent, Qt::Window )
|
||||||
{
|
{
|
||||||
QVBoxLayout *mainLayout, *vbox;
|
QVBoxLayout *mainLayout, *vbox;
|
||||||
QVBoxLayout *patternVbox[2];
|
QVBoxLayout *patternVbox[2];
|
||||||
|
|
Loading…
Reference in New Issue