You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
5.2 KiB
160 lines
5.2 KiB
/***************************************************************************
|
|
* Copyright (C) 1999 by Jonas Nordin *
|
|
* jonas.nordin@syncom.se *
|
|
* Copyright (C) 2000-2001 by Bernd Gehrmann *
|
|
* bernd@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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "classtoolwidget.h"
|
|
|
|
#include <tdeconfig.h>
|
|
#include <tdelocale.h>
|
|
#include <tdeglobal.h>
|
|
#include <tdepopupmenu.h>
|
|
#include "classstore.h"
|
|
|
|
|
|
ClassToolWidget::ClassToolWidget(ClassViewPart *part, TQWidget *parent)
|
|
: ClassTreeBase(part, parent, "class tool widget")
|
|
{}
|
|
|
|
|
|
ClassToolWidget::~ClassToolWidget()
|
|
{}
|
|
|
|
|
|
TDEPopupMenu *ClassToolWidget::createPopup()
|
|
{
|
|
TDEPopupMenu *popup = contextItem? contextItem->createPopup() : 0;
|
|
if (!popup) {
|
|
popup = new TDEPopupMenu(this);
|
|
popup->insertTitle(i18n("Class Tool"));
|
|
}
|
|
|
|
return popup;
|
|
}
|
|
|
|
|
|
void ClassToolWidget::insertClassAndClasses(ParsedClass *parsedClass, TQValueList<ParsedClass*> classList)
|
|
{
|
|
ClassTreeItem *root = new ClassTreeClassItem(this, 0, parsedClass);
|
|
|
|
ClassTreeItem *lastItem = 0;
|
|
|
|
TQValueList<ParsedClass*>::ConstIterator it;
|
|
for (it = classList.begin(); it != classList.end(); ++it) {
|
|
lastItem = new ClassTreeClassItem(root, lastItem, *it);
|
|
lastItem->setExpandable(false);
|
|
}
|
|
|
|
if (!root->firstChild())
|
|
root->setExpandable(false);
|
|
else
|
|
root->setOpen(true);
|
|
}
|
|
|
|
|
|
void ClassToolWidget::insertClassAndClasses(ParsedClass *parsedClass, const TQPtrList<ParsedParent> &parentList)
|
|
{
|
|
ClassTreeItem *root = new ClassTreeClassItem(this, 0, parsedClass);
|
|
|
|
ClassTreeItem *lastItem = 0;
|
|
|
|
TQPtrListIterator<ParsedParent> it(parentList);
|
|
for (; it.current(); ++it) {
|
|
ParsedClass *parentClass = m_part->classStore()->getClassByName((*it)->name());
|
|
lastItem = new ClassTreeClassItem(root, lastItem, parentClass);
|
|
lastItem->setExpandable(false);
|
|
}
|
|
|
|
if (!root->firstChild())
|
|
root->setExpandable(false);
|
|
else
|
|
root->setOpen(true);
|
|
}
|
|
|
|
|
|
void ClassToolWidget::addClassAndAttributes(ParsedClass *parsedClass, PIAccess filter, ClassTreeItem **lastItem)
|
|
{
|
|
*lastItem = new ClassTreeClassItem(this, *lastItem, parsedClass);
|
|
|
|
ClassTreeItem *ilastItem = 0;
|
|
|
|
TQValueList<ParsedAttribute*> attrList = parsedClass->getSortedAttributeList();
|
|
TQValueList<ParsedAttribute*>::ConstIterator it;
|
|
for (it = attrList.begin(); it != attrList.end(); ++it) {
|
|
if (filter == (PIAccess)-1 || filter == (*it)->access())
|
|
ilastItem = new ClassTreeAttrItem(*lastItem, ilastItem, *it);
|
|
}
|
|
|
|
if (!(*lastItem)->firstChild())
|
|
(*lastItem)->setExpandable(false);
|
|
else
|
|
(*lastItem)->setOpen(true);
|
|
}
|
|
|
|
|
|
void ClassToolWidget::addClassAndMethods(ParsedClass *parsedClass, PIAccess filter, ClassTreeItem **lastItem)
|
|
{
|
|
*lastItem = new ClassTreeClassItem(this, *lastItem, parsedClass);
|
|
|
|
ClassTreeItem *ilastItem = 0;
|
|
|
|
TQValueList<ParsedMethod*> methodList = parsedClass->getSortedMethodList();
|
|
TQValueList<ParsedMethod*>::ConstIterator it;
|
|
for (it = methodList.begin(); it != methodList.end(); ++it) {
|
|
if (filter == (PIAccess)-1 || filter == (*it)->access())
|
|
ilastItem = new ClassTreeMethodItem(*lastItem, ilastItem, *it);
|
|
}
|
|
|
|
if (!(*lastItem)->firstChild())
|
|
(*lastItem)->setExpandable(false);
|
|
else
|
|
(*lastItem)->setOpen(true);
|
|
}
|
|
|
|
|
|
void ClassToolWidget::insertAllClassMethods(ParsedClass *parsedClass, PIAccess filter)
|
|
{
|
|
ClassTreeItem *lastItem = 0;
|
|
|
|
// First treat all parents.
|
|
for ( ParsedParent *pParent = parsedClass->parents.first();
|
|
pParent != 0;
|
|
pParent = parsedClass->parents.next() )
|
|
{
|
|
ParsedClass *parentClass = m_part->classStore()->getClassByName(pParent->name());
|
|
if (parentClass)
|
|
addClassAndMethods(parentClass, filter, &lastItem);
|
|
}
|
|
|
|
// Add the current class
|
|
addClassAndMethods(parsedClass, filter, &lastItem);
|
|
}
|
|
|
|
|
|
void ClassToolWidget::insertAllClassAttributes(ParsedClass *parsedClass, PIAccess filter)
|
|
{
|
|
ClassTreeItem *lastItem = 0;
|
|
// First treat all parents.
|
|
for ( ParsedParent *pParent = parsedClass->parents.first();
|
|
pParent != 0;
|
|
pParent = parsedClass->parents.next() )
|
|
{
|
|
ParsedClass *parentClass = m_part->classStore()->getClassByName(pParent->name());
|
|
if (parentClass)
|
|
addClassAndAttributes(parentClass, filter, &lastItem);
|
|
}
|
|
|
|
// Add the current class
|
|
addClassAndAttributes(parsedClass, filter, &lastItem);
|
|
}
|
|
|
|
#include "classtoolwidget.moc"
|