tag.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1997 by the University of Southern California
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License,
  6.  * version 2, as published by the Free Software Foundation.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License along
  14.  * with this program; if not, write to the Free Software Foundation, Inc.,
  15.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  16.  *
  17.  *
  18.  * The copyright of this module includes the following
  19.  * linking-with-specific-other-licenses addition:
  20.  *
  21.  * In addition, as a special exception, the copyright holders of
  22.  * this module give you permission to combine (via static or
  23.  * dynamic linking) this module with free software programs or
  24.  * libraries that are released under the GNU LGPL and with code
  25.  * included in the standard release of ns-2 under the Apache 2.0
  26.  * license or under otherwise-compatible licenses with advertising
  27.  * requirements (or modified versions of such code, with unchanged
  28.  * license).  You may copy and distribute such a system following the
  29.  * terms of the GNU GPL for this module and the licenses of the
  30.  * other code concerned, provided that you include the source code of
  31.  * that other code when and as the GNU GPL requires distribution of
  32.  * source code.
  33.  *
  34.  * Note that people who make modified versions of this module
  35.  * are not obligated to grant this special exception for their
  36.  * modified versions; it is their choice whether to do so.  The GNU
  37.  * General Public License gives permission to release a modified
  38.  * version without this exception; this exception also makes it
  39.  * possible to release a modified version which carries forward this
  40.  * exception.
  41.  *
  42.  * $Header: /cvsroot/nsnam/nam-1/tag.h,v 1.4 2007/02/12 07:08:44 tom_henderson Exp $
  43.  */
  44. #ifndef nam_tag_h
  45. #define nam_tag_h
  46. #include <tcl.h>
  47. #include "animation.h"
  48. class EditView;
  49. class Tag : public Animation {
  50. public:
  51. Tag();
  52. Tag(const char *name);
  53. virtual ~Tag();
  54. void setname(const char *name);
  55. inline const char *name() const { return name_; }
  56. virtual void move(EditView *v, float wdx, float wdy);
  57. void add(Animation *);
  58. void remove(void);
  59. void remove(Animation *);
  60. void update_bb(); // Recompute bbox after a member leaves
  61. virtual void reset(double now);
  62. virtual void draw(View *, double now);
  63. virtual void xdraw(View *v, double now) const; // xor-draw
  64. virtual const char *info() const;
  65. inline int classid() const { return ClassTagID; }
  66. inline int isMember(unsigned int id) const {
  67. return (Tcl_FindHashEntry(mbrHash_, (const char *)id) != NULL);
  68. }
  69. inline int isMember(Animation *a) const {
  70. return isMember(a->id());
  71. }
  72. void addNodeMovementDestination(EditView * editview, 
  73.                                 double dx, double dy, double current_time);
  74. int getNodeMovementTimes(char * buffer, int buffer_size);
  75. protected:
  76. Tcl_HashTable *mbrHash_;
  77. unsigned int nMbr_;
  78. char *name_;
  79. };
  80. #endif // nam_tag_h