summaryrefslogtreecommitdiffstats
path: root/tools/trackeditor/code/contexts/ppcontext.h
blob: 04e212d45030fffe93ee3939da9ba8b17d7b6a88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#include "precompiled/PCH.h"

#ifndef PPCONTEXT
#define PPCONTEXT

//----------------------------------------
// System Includes
//----------------------------------------


//----------------------------------------
// Forward References
//----------------------------------------

//-----------------------------------------------------------------------------
//
// B o u n d i n g v o l u m e C o n t e x t
//
//-----------------------------------------------------------------------------
class PPContext : public MPxContext
{
    public:

        enum Stimulus       // Maskable values.
        {
            BUTTONDOWN      = 0x0001,
            BUTTONUP        = 0x0002,
            MOUSEDRAG       = 0x0004,
            COMPLETED       = 0x0008,
            DELETED         = 0x0010,
            ABORTED         = 0x0020
        };
            

                        PPContext();
        virtual        ~PPContext();

        static const char* stringId;

        virtual void    toolOnSetup( MEvent& );
        virtual void    toolOffCleanup();
        virtual MStatus doPress( MEvent& );
        virtual MStatus doDrag( MEvent& );
        virtual MStatus doRelease( MEvent& event );
        virtual MStatus doHold( MEvent& event );
        virtual MStatus doEnterRegion( MEvent& event );
        virtual void    deleteAction();
        virtual void    completeAction();
        virtual void    abortAction();

        static const MString DEFAULT_GROUP_NAME;
        static MObject sCurrentGroup;

    private:
        void    ProcessState( Stimulus stimulus );
        void    AddPoint( MObject obj );
        void    DeleteLast();
        void    CloseLoop();
        void    SetHelpString();

        MObjectArray            mPoints;
        MString                 mHelp;
        
        short                   mXCurrent, mYCurrent;
};

//-----------------------------------------------------------------------------
//
// B o u n d i n g v o l u m e C o n t e x t C m d
//
//-----------------------------------------------------------------------------
class PPContextCmd : public MPxContextCommand
{
    public:
                                PPContextCmd();
        virtual                ~PPContextCmd();
                                
        static  void*           creator();

        virtual MPxContext*     makeObj();

    private:
};

class PPSplitCmd : public MPxCommand
{
public:
    MStatus doIt( const MArgList& args );
    static void* creator();

    static const char* stringId;

private:
    void Split( MObject& node1, MObject& node2 ); 
};

#endif