summaryrefslogtreecommitdiffstats
path: root/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp')
-rw-r--r--kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp
deleted file mode 100644
index 9a500b6c..00000000
--- a/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/***************************************************************************
- xsldbgcallstackimpl.cpp - description
- -------------------
- begin : Wed Jan 16 2002
- copyright : (C) 2002 by Keith lsdale
- email : k_isdale@tpg.com.au
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * 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. *
- * *
- ***************************************************************************/
-#include <tqlistview.h>
-#include <tqlineedit.h>
-
-#include "xsldbgdebugger.h"
-#include "xsldbgcallstackimpl.h"
-#include "xsldbggloballistitem.h" /* reuse global list item variable as a template list item */
-
-XsldbgCallStackImpl::XsldbgCallStackImpl(XsldbgDebugger *debugger,
- TQWidget *parent /*=0*/, const char *name /*=0*/)
- : XsldbgCallStack(parent, name), XsldbgDialogBase()
-{
- this->debugger = debugger;
-
- connect(debugger, TQT_SIGNAL(callStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */)),
- this, TQT_SLOT(slotProcCallStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */)));
- connect( callStackListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)),
- this, TQT_SLOT(selectionChanged(TQListViewItem*)));
-
- show();
- refresh();
-}
-
-XsldbgCallStackImpl::~XsldbgCallStackImpl(){
- debugger = 0L;
-}
-
-void XsldbgCallStackImpl::slotProcCallStackItem(TQString templateName, TQString fileName , int lineNumber )
-{
- static int frameNo =0;
- if (templateName.isNull()){
- callStackListView->clear();
- frameNo = 0;
- }else{
- /* each stack entry will have a FRAME# prefix */
- callStackListView->insertItem(new XsldbgGlobalListItem(callStackListView,
- fileName, lineNumber, templateName.prepend(TQString::number(frameNo++)+ "# ")));
- }
-}
-
-
-void XsldbgCallStackImpl::selectionChanged(TQListViewItem *item)
-{
- XsldbgGlobalListItem *callStackItem = dynamic_cast<XsldbgGlobalListItem*>(item);
- if (callStackItem){
- debugger->gotoLine(callStackItem->getFileName(), callStackItem->getLineNumber());
- }
-}
-
-void XsldbgCallStackImpl::refresh()
-{
- debugger->fakeInput("where", true) ;
-}
-
-
-#include "xsldbgcallstackimpl.moc"