diff options
Diffstat (limited to 'languages/lib/debugger/kdevdebugger.cpp')
| -rw-r--r-- | languages/lib/debugger/kdevdebugger.cpp | 182 | 
1 files changed, 182 insertions, 0 deletions
| diff --git a/languages/lib/debugger/kdevdebugger.cpp b/languages/lib/debugger/kdevdebugger.cpp new file mode 100644 index 00000000..b9ee4a05 --- /dev/null +++ b/languages/lib/debugger/kdevdebugger.cpp @@ -0,0 +1,182 @@ +/* This file is part of the KDE project +   Copyright (C) 2002 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> +   Copyright (C) 2002 John Firebaugh <jfirebaugh@kde.org> + +   This library is free software; you can redistribute it and/or +   modify it under the terms of the GNU Library General Public +   License as published by the Free Software Foundation; either +   version 2 of the License, or (at your option) any later version. + +   This library is distributed in the hope that it will be useful, +   but WITHOUT ANY WARRANTY; without even the implied warranty of +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU +   Library General Public License for more details. + +   You should have received a copy of the GNU Library General Public License +   along with this library; see the file COPYING.LIB.  If not, write to +   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +   Boston, MA 02110-1301, USA. +*/ +#include "kdevdebugger.h" + +KDevDebugger::KDevDebugger(TQObject *parent, const char *name) +  : TQObject(parent, name) +{ +} + + +KDevDebugger::~KDevDebugger() +{ +} + +const TQPixmap* KDevDebugger::inactiveBreakpointPixmap() +{ +  const char*breakpoint_gr_xpm[]={ +  "11 16 6 1", +  "c c #c6c6c6", +  "d c #2c2c2c", +  "# c #000000", +  ". c None", +  "a c #ffffff", +  "b c #555555", +  "...........", +  "...........", +  "...#####...", +  "..#aaaaa#..", +  ".#abbbbbb#.", +  "#abbbbbbbb#", +  "#abcacacbd#", +  "#abbbbbbbb#", +  "#abcacacbd#", +  "#abbbbbbbb#", +  ".#bbbbbbb#.", +  "..#bdbdb#..", +  "...#####...", +  "...........", +  "...........", +  "..........."}; +  static TQPixmap pixmap( breakpoint_gr_xpm ); +  return &pixmap; +} + +const TQPixmap* KDevDebugger::activeBreakpointPixmap() +{ +  const char* breakpoint_xpm[]={ +  "11 16 6 1", +  "c c #c6c6c6", +  ". c None", +  "# c #000000", +  "d c #840000", +  "a c #ffffff", +  "b c #ff0000", +  "...........", +  "...........", +  "...#####...", +  "..#aaaaa#..", +  ".#abbbbbb#.", +  "#abbbbbbbb#", +  "#abcacacbd#", +  "#abbbbbbbb#", +  "#abcacacbd#", +  "#abbbbbbbb#", +  ".#bbbbbbb#.", +  "..#bdbdb#..", +  "...#####...", +  "...........", +  "...........", +  "..........."}; +  static TQPixmap pixmap( breakpoint_xpm ); +  return &pixmap; +} + +const TQPixmap* KDevDebugger::reachedBreakpointPixmap() +{ +  const char*breakpoint_bl_xpm[]={ +  "11 16 7 1", +  "a c #c0c0ff", +  "# c #000000", +  "c c #0000c0", +  "e c #0000ff", +  "b c #dcdcdc", +  "d c #ffffff", +  ". c None", +  "...........", +  "...........", +  "...#####...", +  "..#ababa#..", +  ".#bcccccc#.", +  "#acccccccc#", +  "#bcadadace#", +  "#acccccccc#", +  "#bcadadace#", +  "#acccccccc#", +  ".#ccccccc#.", +  "..#cecec#..", +  "...#####...", +  "...........", +  "...........", +  "..........."}; +  static TQPixmap pixmap( breakpoint_bl_xpm ); +  return &pixmap; +} + +const TQPixmap* KDevDebugger::disabledBreakpointPixmap() +{ +  const char*breakpoint_wh_xpm[]={ +  "11 16 7 1", +  "a c #c0c0ff", +  "# c #000000", +  "c c #0000c0", +  "e c #0000ff", +  "b c #dcdcdc", +  "d c #ffffff", +  ". c None", +  "...........", +  "...........", +  "...#####...", +  "..#ddddd#..", +  ".#ddddddd#.", +  "#ddddddddd#", +  "#ddddddddd#", +  "#ddddddddd#", +  "#ddddddddd#", +  "#ddddddddd#", +  ".#ddddddd#.", +  "..#ddddd#..", +  "...#####...", +  "...........", +  "...........", +  "..........."}; +  static TQPixmap pixmap( breakpoint_wh_xpm ); +  return &pixmap; +} + +const TQPixmap* KDevDebugger::executionPointPixmap() +{ +  const char*exec_xpm[]={ +  "11 16 4 1", +  "a c #00ff00", +  "b c #000000", +  ". c None", +  "# c #00c000", +  "...........", +  "...........", +  "...........", +  "#a.........", +  "#aaa.......", +  "#aaaaa.....", +  "#aaaaaaa...", +  "#aaaaaaaaa.", +  "#aaaaaaa#b.", +  "#aaaaa#b...", +  "#aaa#b.....", +  "#a#b.......", +  "#b.........", +  "...........", +  "...........", +  "..........."}; +  static TQPixmap pixmap( exec_xpm ); +  return &pixmap; +} + +#include "kdevdebugger.moc" | 
