|
|
|
/***************************************************************************
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _CLASSTREEBASE_H_
|
|
|
|
#define _CLASSTREEBASE_H_
|
|
|
|
|
|
|
|
#include <klistview.h>
|
|
|
|
#include "parseditem.h"
|
|
|
|
#include "parsedscopecontainer.h"
|
|
|
|
#include "parsedclass.h"
|
|
|
|
#include "parsedmethod.h"
|
|
|
|
#include "parsedattribute.h"
|
|
|
|
#include "classviewpart.h"
|
|
|
|
#include "parsedscript.h"
|
|
|
|
|
|
|
|
class ClassTreeItem;
|
|
|
|
class KPopupMenu;
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeBase : public KListView
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ClassTreeBase( ClassViewPart *part, TQWidget *tqparent=0, const char *name=0 );
|
|
|
|
~ClassTreeBase();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
typedef TQValueList<TQStringList> TreeState;
|
|
|
|
typedef TQValueList<TQStringList>::Iterator TreeStateIterator;
|
|
|
|
TreeState treeState() const;
|
|
|
|
void setTreeState(TreeState state);
|
|
|
|
|
|
|
|
ClassTreeItem *contextItem;
|
|
|
|
virtual KPopupMenu *createPopup() = 0;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotItemExecuted(TQListViewItem*);
|
|
|
|
void slotItemPressed(int button, TQListViewItem *item);
|
|
|
|
void slotContextMenuRequested(TQListViewItem *item, const TQPoint &p);
|
|
|
|
void slotGotoDeclaration();
|
|
|
|
void slotGotoImplementation();
|
|
|
|
void slotAddMethod();
|
|
|
|
void slotAddAttribute();
|
|
|
|
void slotClassBaseClasses();
|
|
|
|
void slotClassDerivedClasses();
|
|
|
|
void slotClassTool();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ClassViewPart *m_part;
|
|
|
|
friend class ClassTreeItem;
|
|
|
|
friend class ClassTreeScopeItem;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeItem : public TQListViewItem, public NotifyClient
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeItem( ClassTreeBase *tqparent, ClassTreeItem *lastSibling, ParsedItem *parsedItem )
|
|
|
|
: TQListViewItem(tqparent, lastSibling), NotifyClient(), m_item(parsedItem)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
ClassTreeItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling, ParsedItem *parsedItem )
|
|
|
|
: TQListViewItem(tqparent, lastSibling), NotifyClient(), m_item(parsedItem)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
ClassTreeItem( const ClassTreeItem& other )
|
|
|
|
: TQListViewItem( other.tqparent(), other.nextSibling()), NotifyClient()
|
|
|
|
{
|
|
|
|
m_item = other.m_item;
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
ClassTreeItem& operator=( const ClassTreeItem& other )
|
|
|
|
{
|
|
|
|
m_item = other.m_item;
|
|
|
|
init();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
~ClassTreeItem()
|
|
|
|
{
|
|
|
|
if ( m_item )
|
|
|
|
m_item->unregisterNotifyClient( (NotifyClient*)this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// m_item has been deleted.
|
|
|
|
void notify() { m_item = 0; }
|
|
|
|
|
|
|
|
KPopupMenu *createPopup();
|
|
|
|
bool isOrganizer() { return !m_item; }
|
|
|
|
void init()
|
|
|
|
{
|
|
|
|
if ( m_item )
|
|
|
|
m_item->registerNotifyClient( (NotifyClient*)this );
|
|
|
|
}
|
|
|
|
|
|
|
|
void getDeclaration(TQString *toFile, int *toLine);
|
|
|
|
void getImplementation(TQString *toFile, int *toLine);
|
|
|
|
|
|
|
|
virtual TQString scopedText() const;
|
|
|
|
virtual TQString text( int ) const;
|
|
|
|
virtual TQString tipText() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ClassTreeBase *classTree()
|
|
|
|
{ return static_cast<ClassTreeBase*>(listView()); }
|
|
|
|
ParsedItem *m_item;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeOrganizerItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeOrganizerItem( ClassTreeBase *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
const TQString &text )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, 0 )
|
|
|
|
, m_text( text )
|
|
|
|
{ init(); }
|
|
|
|
ClassTreeOrganizerItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
const TQString &text )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, 0 )
|
|
|
|
, m_text( text )
|
|
|
|
{ init(); }
|
|
|
|
~ClassTreeOrganizerItem()
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual TQString text( int ) const { return m_text; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQString m_text;
|
|
|
|
|
|
|
|
void init();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeScopeItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeScopeItem( ClassTreeBase *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedScopeContainer *parsedScope )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, parsedScope)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
ClassTreeScopeItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedScopeContainer *parsedScope )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, parsedScope)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
~ClassTreeScopeItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual TQString text( int ) const;
|
|
|
|
virtual void setOpen(bool o);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeClassItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeClassItem( ClassTreeBase *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedClass *parsedClass, bool isStruct=false )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, parsedClass), m_isStruct( isStruct )
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
ClassTreeClassItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedClass *parsedClass, bool isStruct=false )
|
|
|
|
: ClassTreeItem(tqparent, lastSibling, parsedClass), m_isStruct( isStruct )
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
~ClassTreeClassItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void setOpen(bool o);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_isStruct;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeMethodItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeMethodItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedMethod *parsedMethod );
|
|
|
|
~ClassTreeMethodItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual TQString text( int ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ClassTreeAttrItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeAttrItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedAttribute *parsedAttr );
|
|
|
|
~ClassTreeAttrItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual TQString text( int ) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ClassTreeScriptItem : public ClassTreeItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassTreeScriptItem( ClassTreeItem *tqparent, ClassTreeItem *lastSibling,
|
|
|
|
ParsedScript *parsedScript );
|
|
|
|
~ClassTreeScriptItem()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual TQString text( int ) const;
|
|
|
|
virtual void setOpen(bool o);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|