home *** CD-ROM | disk | FTP | other *** search
/ PC Shareware 1997 June / PC_Shareware-1997-06.iso / programy / genesis / toolexmp.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-16  |  4.2 KB  |  158 lines

  1. /*---------------------------------------------------------------------------
  2.                 ExampleTool
  3.                 -----------
  4.  
  5.     Example tool class
  6.  
  7.     (C) Silicon Dream Ltd 1995
  8.  
  9.   ---------------------------------------------------------------------------
  10.  
  11. Changes:                            Date:
  12. * Created file                            08/02/95
  13. */
  14.  
  15. #include <tool.h>
  16.  
  17. #include "resource.h"
  18.  
  19. // YOU DO: Change the class name below to describe your tool and anywhere else
  20. //       this class name is used in this file
  21. class ExampleTool: public Tool
  22.     {
  23.     private:
  24.         // YOU DO: Declare your private variables here. eg.
  25.         //  Vec        vecCursorPos;
  26.         //       (Non C++ users: 'private' means those
  27.         //        variables which have global scope from
  28.         //        within the functions you define here)
  29.  
  30.         // YOU DO: Uncomment any functions to trap events you're interested in
  31.         // void _cppdyn Initialise();            // Called once when DLL loaded
  32.         // Redraw _cppdyn OnSelect(Vec &vec);        // Called when tool is selected
  33.         // Redraw _cppdyn OnUnSelect(bool *pbOkToChange); // Called when tool is selected
  34.         // void _cppdyn OnConfigure();            // Called to configure tool
  35.         // Redraw _cppdyn OnButtonDown(Vec &vec);    // Called when button pressed
  36.         // Redraw _cppdyn OnMouseMove(Vec &vec);    // Called when mouse moves with button down
  37.         // Redraw _cppdyn OnButtonUp(Vec &vec);        // Called when button is released
  38.         // Redraw _cppdyn OnSet(Vec &vec);        // Called when the 'Set' button is clicked
  39.         // Redraw _cppdyn OnDo(Vec &vec);        // Called to end use of tool
  40.         // Redraw _cppdyn OnUndo();            // Called when user wishes to undo effect of tool
  41.         // void _cppdyn FreeUndo();            // Called when tool no longer needs to keep stuff for undoing
  42.         // void _cppdyn OnViewChange(HanCoorSys hcsys, Vec &vec); // Called when active view changes
  43.         // Redraw _cppdyn OnPaste(Vec &vec, HanObject *ahobj, // Called when objects are pasted into the current view
  44.         //              ulong ulNumObjects);
  45.         // void _cppdyn OnCommand(ushort usID);        // Called when a tool specific menu item/toolbar button selected
  46.         // CmdUpdate _cppdyn OnCommandUpdate(ushort usID, // Called when a tool specific menu item/toolbar button needs updating
  47.         //                     char *szText, ushort usBuffSize);
  48.         // void _cppdyn DrawSoFar(HDC hdc, HanCoorSys hcsys, // Called to draw object so far into the view
  49.         //              void *pvViewData, bool bInvalid);
  50.  
  51.     public:
  52.         _cppdyn ~ExampleTool() {};
  53.     };
  54.  
  55. IMPLEMENT_OBJECT(ExampleTool)
  56.  
  57. // YOU DO: Uncomment and fill in any functions for events you want to trap.
  58. //       (Non C++ users: If you create any functions of your own which need
  59. //        to access your private variables (see above), you must make the
  60. //        funtion part of your class by declaring it along with the other
  61. //        functions (see above), and prefixing the function name with
  62. //        'classname::' in the implementation)
  63.  
  64. /*
  65. void _cppdyn ExampleTool::Initialise()
  66.     {
  67.     }
  68. */
  69. /*
  70. Redraw _cppdyn ExampleTool::OnSelect(Vec &vec)
  71.     {
  72.     return REDRAW_NONE;
  73.     }
  74. */
  75. /*
  76. Redraw _cppdyn ExampleTool::OnUnSelect(bool *pbOkToChange)
  77.     {
  78.     *pbOkToChange=TRUE;
  79.     return REDRAW_NONE;
  80.     }
  81. */
  82. /*
  83. void _cppdyn ExampleTool::OnConfigure()
  84.     {
  85.     }
  86. */
  87. /*
  88. Redraw _cppdyn ExampleTool::OnButtonDown(Vec &vec)
  89.     {
  90.     return REDRAW_NONE;
  91.     }
  92. */
  93. /*
  94. Redraw _cppdyn ExampleTool::OnMouseMove(Vec &vec)
  95.     {
  96.     return REDRAW_NONE;
  97.     }
  98. */
  99. /*
  100. Redraw _cppdyn ExampleTool::OnButtonUp(Vec &vec)
  101.     {
  102.     return REDRAW_NONE;
  103.     }
  104. */
  105. /*
  106. Redraw _cppdyn ExampleTool::OnSet(Vec &vec)
  107.     {
  108.     return REDRAW_NONE;
  109.     }
  110. */
  111. /*
  112. Redraw _cppdyn ExampleTool::OnDo(Vec &vec)
  113.     {
  114.     return REDRAW_NONE;
  115.     }
  116. */
  117. /*
  118. Redraw _cppdyn ExampleTool::OnUndo()
  119.     {
  120.     return REDRAW_NONE;
  121.     }
  122. */
  123. /*
  124. void _cppdyn ExampleTool::FreeUndo()
  125.     {
  126.     }
  127. */
  128. /*
  129. void _cppdyn ExampleTool::OnViewChange(HanCoorSys hcsys, Vec &vec)
  130.     {
  131.     }
  132. */
  133. /*
  134. Redraw _cppdyn ExampleTool::OnPaste(Vec &vec, HanObject *ahobj,
  135.                     ulong ulNumObjects)
  136.     {
  137.     return REDRAW_NONE;
  138.     }
  139. */
  140. /*
  141. void _cppdyn ExampleTool::OnCommand(ushort usID)
  142.     {
  143.     }
  144. */
  145. /*
  146. CmdUpdate _cppdyn ExampleTool::OnCommandUpdate(ushort usID,
  147.                            char *szText, ushort usBuffSize)
  148.     {
  149.     return ENABLE;
  150.     }
  151. */
  152. /*
  153. void _cppdyn ExampleTool::DrawSoFar(HDC hdc, HanCoorSys hcsys,
  154.                     void *pvViewData, bool bInvalid)
  155.     {
  156.     }
  157. */
  158.