/*************************************************************************** * snippet feature from tdevelop/plugins/snippet/ * * * * Copyright (C) 2007 by Robert Gruber * * rgruber@users.sourceforge.net * * * * 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 "snippetitem.h" #include #include SnippetItem::SnippetItem(TQListView * parent, TQString name, TQString text ) : TQListViewItem( parent, name ), action(0) { strName = name; strText = text; iParent = -1; setOpen( true ); } SnippetItem::SnippetItem(TQListViewItem * parent, TQString name, TQString text) : TQListViewItem( parent, name ), action(0) { strName = name; strText = text; iParent = ((SnippetGroup *)parent)->getId(); setOpen( true ); } SnippetItem::~SnippetItem() { if ( action ) { action->unplugAll(); delete action; } } /*! \fn SnippetItem::getName() */ TQString SnippetItem::getName() { return strName; } /*! \fn SnippetItem::getText */ TQString SnippetItem::getText() { return strText; } /*! \fn SnippetItem::setText(TQString text) */ void SnippetItem::setText(TQString text) { strText = text; } /*! \fn SnippetItem::setName(TQString name) */ void SnippetItem::setName(TQString name) { strName = name; } void SnippetItem::resetParent() { SnippetGroup * group = dynamic_cast(parent()); if (group) iParent = group->getId(); } TDEAction* SnippetItem::getAction() { return action; } void SnippetItem::setAction(TDEAction * anAction) { action = anAction; } void SnippetItem::slotExecute() { emit execute( this ); } SnippetItem * SnippetItem::findItemByName(TQString name, TQPtrList &list) { for ( SnippetItem * item = list.first(); item; item = list.next() ) { //write the snippet-list if (item->getName() == name) return item; } return NULL; } SnippetGroup * SnippetItem::findGroupById(int id, TQPtrList &list) { for ( SnippetItem * item = list.first(); item; item = list.next() ) { //write the snippet-list SnippetGroup * group = dynamic_cast(item); if (group && group->getId() == id) return group; } return NULL; } /* * * * * * * * * * * * * * * * * * * * Deklaration for class SnippetGroup * * * * * * * * * * * * * * * * * * * */ int SnippetGroup::iMaxId = 1; SnippetGroup::SnippetGroup(TQListView * parent, TQString name, int id) : SnippetItem(parent, name, i18n("GROUP")) { if (id > 0) { iId = id; if (id >= iMaxId) iMaxId = id+1; } else { iId = iMaxId; iMaxId++; } } SnippetGroup::~SnippetGroup() { } void SnippetGroup::setId(int id) { iId = id; if (iId >= iMaxId) iMaxId = iId+1; } #include "snippetitem.moc"