1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/***************************************************************************
gdbglobal.h
-------------------
begin : Sun Aug 8 1999
copyright : (C) 1999 by John Birch
email : jbb@kdevelop.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _GDBGLOBAL_H_
#define _GDBGLOBAL_H_
#include <QFlags>
namespace GDBDebugger
{
enum DBGStateFlag
{
s_none = 0,
s_dbgNotStarted = 1,
s_appNotStarted = 2,
s_programExited = 16,
s_attached = 512,
s_core = 1024,
s_waitTimer = 2048,
// Set when 'slotStopDebugger' started executing, to avoid
// entering that function several times.
s_shuttingDown = 4096,
s_explicitBreakInto = (s_shuttingDown << 1),
s_dbgBusy = (s_explicitBreakInto << 1),
s_appRunning = (s_dbgBusy << 1),
s_lastDbgState = (s_appRunning << 1)
};
Q_DECLARE_FLAGS(DBGStateFlags, DBGStateFlag)
Q_DECLARE_OPERATORS_FOR_FLAGS(DBGStateFlags)
enum QueuePosition {
QueueAtEnd,
QueueAtFront,
QueueWhileInterrupted
};
enum DataType { typeUnknown, typeValue, typePointer, typeReference,
typeStruct, typeArray, typeQString, typeWhitespace,
typeName };
}
#endif
|