class CCL::EditorComponent::ContextMenuBuilder

#include <editor.h>

class ContextMenuBuilder
{
public:
    // construction

    ContextMenuBuilder (EditorComponent& component, IContextMenu& contextMenu);

    // methods

    void build ();
    void appendToolCommands ();
    void appendEditCommands (bool includingPaste);
    void appendSelectionCommands ();
    void appendUndoCommands ();
    void appendEditCut ();
    void appendEditCopy ();
    void appendEditPaste ();
    void appendEditDelete ();
};