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.
ktechlab/src/mechanics/mechanicsdocument.h

68 lines
2.1 KiB

/***************************************************************************
* Copyright (C) 2004 by David Saxton *
* david@bluehaze.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 MECHANICSDOCUMENT_H
#define MECHANICSDOCUMENT_H
#include "itemdocument.h"
class KTechlab;
class MechanicsGroup;
class MechanicsItem;
class MechanicsSimulation;
typedef TQValueList<MechanicsItem*> MechItemList;
typedef TQValueList<MechanicsItem*> MechanicsItemList;
/**
@author David Saxton
*/
class MechanicsDocument : public ItemDocument
{
TQ_OBJECT
public:
MechanicsDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0 );
~MechanicsDocument();
virtual View *createView( ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l );
virtual bool isValidItem( const TQString &itemId );
virtual bool isValidItem( Item *item );
virtual void deleteSelection();
virtual void copy();
virtual void selectAll();
virtual ItemGroup *selectList() const;
MechanicsItem *mechanicsItemWithID( const TQString &id );
virtual Item* addItem( const TQString &id, const TQPoint &p, bool newItem );
/**
* Adds a TQCanvasItem to the delete list to be deleted, when
* flushDeleteList() is called
*/
virtual void appendDeleteList( TQCanvasItem *qcanvasItem );
/**
* Permantly deletes all items that have been added to the delete list with
* the appendDeleteList( TQCanvasItem *qcanvasItem ) function.
*/
virtual void flushDeleteList();
/**
* Register an item with the ICNDocument.
*/
virtual bool registerItem( TQCanvasItem *qcanvasItem );
protected:
MechanicsGroup *m_selectList;
MechanicsSimulation *m_mechanicsSimulation;
};
#endif