20 #include "kdevdebugger.h" 22 KDevDebugger::KDevDebugger(TQObject *parent,
const char *name)
23 : TQObject(parent, name)
28 KDevDebugger::~KDevDebugger()
32 const TQPixmap* KDevDebugger::inactiveBreakpointPixmap()
34 const char*breakpoint_gr_xpm[]={
58 static TQPixmap pixmap( breakpoint_gr_xpm );
62 const TQPixmap* KDevDebugger::activeBreakpointPixmap()
64 const char* breakpoint_xpm[]={
88 static TQPixmap pixmap( breakpoint_xpm );
92 const TQPixmap* KDevDebugger::reachedBreakpointPixmap()
94 const char*breakpoint_bl_xpm[]={
119 static TQPixmap pixmap( breakpoint_bl_xpm );
123 const TQPixmap* KDevDebugger::disabledBreakpointPixmap()
125 const char*breakpoint_wh_xpm[]={
150 static TQPixmap pixmap( breakpoint_wh_xpm );
154 const TQPixmap* KDevDebugger::executionPointPixmap()
156 const char*exec_xpm[]={
178 static TQPixmap pixmap( exec_xpm );
182 #include "kdevdebugger.moc"