home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / demos / gredit / RectangleDrawe < prev    next >
Text File  |  1992-02-27  |  525b  |  22 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : RectangleDrawer.C   Version 1.1
  4. //   LastSCCS    : 2/18/92  15:12:05
  5. //   LastEdit    : "Mon Feb 17 16:43:41 1992"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. RectangleDrawer::
  11. RectangleDrawer( GnView *view, int x, int y )
  12. : ViewObjectDrawer(view, x, y)
  13. {
  14. }
  15.  
  16. void RectangleDrawer::
  17. create_view_object(int width, int height)
  18. {
  19.     view_object = new GnRectangleO( document->gc_values(), width, height );
  20. }
  21.  
  22.