Exemplo n.º 1
0
    public void OnMoved()
    {
        ViMouseHandlerInterface handler = _GetTop();

        if (handler != null)
        {
            handler.OnMoved();
        }
    }
Exemplo n.º 2
0
    public void ClearPress()
    {
        ViMouseHandlerInterface handler = _GetTop();

        if (handler != null)
        {
            handler.Reset();
        }
    }
Exemplo n.º 3
0
 public void AttachBack(ViMouseHandlerInterface handler)
 {
     _handlerList.PushBack(handler);
 }
Exemplo n.º 4
0
 public void AttachFront(ViMouseHandlerInterface handler)
 {
     _handlerList.PushFront(handler);
 }