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

通讯编程

开发平台:

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/editview.h,v 1.19 2007/02/12 07:08:43 tom_henderson Exp $
  43.  */
  44. #ifndef nam_EditView_h
  45. #define nam_EditView_h
  46. extern "C" {
  47. #include <tcl.h>
  48. #include <tk.h>
  49. }
  50. #include "tkcompat.h"
  51. #include "enetmodel.h"
  52. #include "transform.h"
  53. #include "view.h"
  54. #include "netview.h"
  55. #include "bbox.h"
  56. #include "tag.h"
  57. #include "trafficsource.h"
  58. class NetModel;
  59. struct TraceEvent;
  60. class Tcl;
  61. class Paint;
  62. class EditView : public NetView {
  63. public:
  64. EditView(const char* name, NetModel *m);
  65.   EditView(const char* name, NetModel *m, int height, int width);
  66. virtual ~EditView();
  67. static int command(ClientData, Tcl_Interp*, int argc, CONST84 char **argv);
  68. static void DeleteCmdProc(ClientData);
  69. virtual void draw();
  70. virtual void draw(double current_time);
  71. virtual void render();
  72. virtual void BoundingBox(BBox &bb);
  73. virtual void getWorldBox(BBox & world_boundary);
  74. int cmdSetPoint(float, float, int);
  75. int cmdMoveTo(float, float);
  76. int cmdReleasePoint(float, float);
  77. int cmdRemoveSel(float, float);
  78. int cmdaddNode(float, float);
  79. int cmdaddLink(float, float);
  80. int cmdaddAgent(float, float, const char*);
  81. int showAgentLink(float cx, float cy);
  82. int cmdaddAgentLinker(float, float);
  83. int cmdaddTrafficSource(float cx, float cy, const char * type);
  84. int cmdaddLossModel(float cx, float cy, const char * type);
  85. int cmdgetObjectInformation(float cx, float cy);
  86. int cmdgetObjProperty(float cx, float cy);
  87. int cmdgetObjectProperties(float cx, float cy, const char * type);
  88. int cmdsetNodeProperty(int id, 
  89.        const char * value, const char * variable);
  90. int cmdsetAgentProperty(int id, 
  91. const char * value, const char * variable);
  92. int cmdsetLinkProperty(int sid, int did,
  93.                        const char * value, const char * variable);
  94. int cmdsetTrafficSourceProperty(int id, const char * value, const char * variable);
  95. int cmdsetLossModelProperty(int id, const char * value, const char * variable);
  96. int cmdDeleteObj(float, float);
  97. void moveNode(Node *n) const {
  98. model_->moveNode(n);
  99. }
  100. virtual void line(float x0, float y0, float x1, float y1, int color);
  101. virtual void rect(float x0, float y0, float x1, float y1, int color);
  102. virtual void polygon(const float* x, const float* y, int n, int color);
  103. virtual void fill(const float* x, const float* y, int n, int color);
  104. virtual void circle(float x, float y, float r, int color);
  105. virtual void string(float fx, float fy, float dim, const char* s, int anchor);
  106. void view_mode() {
  107. defTag_->remove();
  108. draw();
  109. }
  110. protected:
  111. // xor-draw rectangle
  112. void xrect(float x0, float y0, float x1, float y1, GC gc);
  113. void xline(float x0, float y0, float x1, float y1, GC gc);
  114. enum EditType { START_RUBBERBAND, MOVE_RUBBERBAND, END_RUBBERBAND,
  115. START_OBJECT, MOVE_OBJECT, END_OBJECT, NONE,
  116. START_LINK, MOVE_LINK, END_LINK };
  117. inline void startRubberBand(float cx, float cy); 
  118. inline void startSetObject(Animation *p, float cx, float cy);
  119. // Grouping/interactive stuff
  120. Tag * defTag_;  // This is a tag object that is used for adding
  121.                 // animation object into a selection group so that
  122.                 // they can be moved together
  123.                 
  124. Animation * curObj_;
  125. float cx_, cy_;  // current point
  126. EditType editing_stage_; // current selection type
  127. BBox rb_; // rubber band rectangle
  128. float oldx_, oldy_; // old rubber band position, used for erasion
  129. float link_start_x_, link_start_y_;       // link origin
  130. float link_end_x_, link_end_y_;           // link destination
  131. };
  132. #endif