home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / intrvews / xgrab.lha / xgrab / include / winview.h < prev   
Encoding:
C/C++ Source or Header  |  1990-03-07  |  497 b   |  33 lines

  1. /**
  2.    GRAB Graph Layout and Browser System
  3.  
  4.    Copyright (c) 1989, Tera Computer Company
  5.  **/
  6.  
  7. /* A view of the window (buttons, text, graph) */
  8.  
  9. #ifndef winview_h
  10. #define winview_h
  11.  
  12. #include <InterViews/scene.h>
  13. #include <InterViews/box.h>
  14.  
  15. class ButtonView;
  16. class GView;
  17. class TextView;
  18.  
  19. class GrabWindow : public VBox 
  20. {
  21. public:
  22.     GrabWindow(GView*, TextView*);
  23. private:
  24.     friend class GraphFrame;
  25.  
  26.     ButtonView* bview;
  27.     GView* gview;
  28.     TextView* tview;
  29.     void Init();
  30. };
  31.  
  32. #endif
  33.