Exemplo n.º 1
0
    virtual void mousePressed(const MouseEventUnrecPtr e)
    {
        if(dynamic_cast<WindowEventProducer*>(e->getSource())->getKeyModifiers() & KeyEvent::KEY_MODIFIER_CONTROL)
        {
            mgr->mouseButtonPress(e->getButton(), e->getLocation().x(), e->getLocation().y());
        }
        else
        {
            Line TheRay;
            if(e->getButton() == MouseEvent::BUTTON1)
            {

                mgr->getCamera()->calcViewRay(TheRay,e->getLocation().x(),e->getLocation().y(),*(mgr->getWindow()->getPort(0)));
                std::cout<<"Velocity "<<TheRay.getDirection()<<std::endl;
            }
            RocketParticleSystem->addParticle(TheRay.getPosition(),
                                              Vec3f(0.0,1.0f,0.0f),
                                              Color4f(1.0,0.0,0.0,1.0), 
                                              Vec3f(1.0,1.0,1.0), 
                                              10, 
                                              Vec3f(TheRay.getDirection()*50), //Velocity
                                              Vec3f(0.0f,0.0f,0.0f)
                                             );
        }
    }
    virtual void mouseClicked(const MouseEventUnrecPtr e)
    {
        if(e->getButton()== MouseEvent::BUTTON1)
        {
        }

        if(e->getButton()== MouseEvent::BUTTON3)
        {
        }
    }
Exemplo n.º 3
0
void Slider::KnobDraggedListener::mouseDragged(const MouseEventUnrecPtr e)
{
	if(e->getButton() == e->BUTTON1)
	{
		Pnt2f MousePosInComponent = ViewportToComponent(e->getLocation(), _Slider, e->getViewport());
		
        Pnt2f BorderTopLeft, BorderBottomRight;
        _Slider->getInsideInsetsBounds(BorderTopLeft, BorderBottomRight);
        
        UInt16 MajorAxis, MinorAxis;
        if(_Slider->getOrientation() == VERTICAL_ORIENTATION)
        {
            MajorAxis = 1;
        }
        else
        {
            MajorAxis = 0;
        }
        MinorAxis = (MajorAxis+1)%2;

		if(_Slider->getInverted())
		{
			MousePosInComponent[MajorAxis] = _Slider->getTrackMax() - (MousePosInComponent[MajorAxis] - _Slider->getTrackMin());
		}
        
        _Slider->setValue( _Slider->getMinimum() + (_Slider->getMaximum() - _Slider->getMinimum()) * (MousePosInComponent[MajorAxis] - _Slider->getTrackMin())/static_cast<Int32>(_Slider->getTrackLength()) );
	}
}
Exemplo n.º 4
0
void ScrollBar::ScrollBarDraggedListener::mouseReleased(const MouseEventUnrecPtr e)
{
	if(e->getButton() == e->BUTTON1)
	{
        disconnect();
    }
}
Exemplo n.º 5
0
 virtual void mouseReleased(const MouseEventUnrecPtr e)
 {
     if(dynamic_cast<WindowEventProducer*>(e->getSource())->getKeyModifiers() & KeyEvent::KEY_MODIFIER_CONTROL)
     {
         mgr->mouseButtonRelease(e->getButton(), e->getLocation().x(), e->getLocation().y());
     }
 }
Exemplo n.º 6
0
 virtual void mouseReleased(const MouseEventUnrecPtr e)
 {
     if(TutorialWindow->getKeyModifiers() & KeyEvent::KEY_MODIFIER_CAPS_LOCK)
     {
         mgr->mouseButtonRelease(e->getButton(), e->getLocation().x(), e->getLocation().y());
     }
 }
Exemplo n.º 7
0
void TableHeader::MarginDraggedListener::mouseDragged(const MouseEventUnrecPtr e)
{
	if(e->getButton() == e->BUTTON1)
	{
		Pnt2f MousePosInComponent = ViewportToComponent(e->getLocation(), TableHeaderRefPtr(_TableHeader), e->getViewport());


        TableColumnRefPtr TheColumn(_TableHeader->getColumnModel()->getColumn(_TableHeader->_ResizingColumn));
        Real32 NewWidth(MousePosInComponent.x() - _TableHeader->getColumnHeaders(_TableHeader->_ResizingColumn)->getPosition().x());

        if(NewWidth <= 0 || NewWidth < TheColumn->getMinWidth())
        {
            NewWidth = TheColumn->getMinWidth();
        }

        if(NewWidth > TheColumn->getMaxWidth())
        {
            NewWidth = TheColumn->getMaxWidth();
        }
        
		//Get the new desired center for this margin
	        TheColumn->setWidth(NewWidth);
        _TableHeader->updateLayout();
	}
}
Exemplo n.º 8
0
void Slider::KnobDraggedListener::mouseReleased(const MouseEventUnrecPtr e)
{
    if(e->getButton() == e->BUTTON1 &&
       _Slider->getParentWindow() != NULL &&
       _Slider->getParentWindow()->getDrawingSurface() != NULL &&
       _Slider->getParentWindow()->getDrawingSurface()->getEventProducer() != NULL)
    {
        disconnect();
    }
}
Exemplo n.º 9
0
void ScrollBar::ScrollBarListener::mousePressed(const MouseEventUnrecPtr e)
{
	if(_ScrollBar->getEnabled() && e->getButton() == e->BUTTON1)
	{
        _ScrollBar->_ScrollBarDraggedListener.setInitialMousePosition(ViewportToComponent(e->getLocation(), _ScrollBar, e->getViewport()));
        _ScrollBar->_ScrollBarDraggedListener.setInitialScrollBarPosition(_ScrollBar->editScrollBar()->getPosition());
        _ScrollBar->getParentWindow()->getDrawingSurface()->getEventProducer()->addMouseMotionListener(&(_ScrollBar->_ScrollBarDraggedListener));
        _ScrollBar->getParentWindow()->getDrawingSurface()->getEventProducer()->addMouseListener(&(_ScrollBar->_ScrollBarDraggedListener));
    }
}
Exemplo n.º 10
0
void ContentPanel::SceneEditorPanelListener::mouseClicked(const MouseEventUnrecPtr e)
{
    switch (e->getButton())
    {
        case MouseEvent::BUTTON1: 
            //Cast a ray into the scene and select the closest node
            _ContentPanel->_ApplicationPlayer->selectNode(e->getLocation());
            break;
    }
}
Exemplo n.º 11
0
void ContentPanel::SceneEditorPanelListener::mouseReleased(const MouseEventUnrecPtr e)
{
    switch (e->getButton())
    {
        case MouseEvent::BUTTON1: 
            _ContentPanel->_ApplicationPlayer->getDebugSceneNavigator().buttonRelease(Navigator::LEFT_MOUSE,e->getX(),e->getY());
            break;
        case MouseEvent::BUTTON2:
            _ContentPanel->_ApplicationPlayer->getDebugSceneNavigator().buttonRelease(Navigator::RIGHT_MOUSE,e->getX(),e->getY());
            break;
        case MouseEvent::BUTTON3:
            _ContentPanel->_ApplicationPlayer->getDebugSceneNavigator().buttonRelease(Navigator::MIDDLE_MOUSE,e->getX(),e->getY());
            break;
    }
}
Exemplo n.º 12
0
void Slider::KnobDraggedListener::mousePressed(const MouseEventUnrecPtr e)
{
    if(e->getButton() == e->BUTTON1 &&
		_Slider->getEnabled() &&
       _Slider->getParentWindow() != NULL &&
       _Slider->getParentWindow()->getDrawingSurface() != NULL &&
       _Slider->getParentWindow()->getDrawingSurface()->getEventProducer() != NULL)
    {
		_InitialValue = _Slider->getValue();
        _Slider->getKnobButton()->removeMouseListener(this);
        _Slider->getParentWindow()->getDrawingSurface()->getEventProducer()->addMouseListener(this);
        _Slider->getParentWindow()->getDrawingSurface()->getEventProducer()->addMouseMotionListener(this);
        _Slider->getParentWindow()->getDrawingSurface()->getEventProducer()->addKeyListener(this);
		_Slider->getRangeModel()->setValueIsAdjusting(true);
    }
}
Exemplo n.º 13
0
 virtual void mouseReleased(const MouseEventUnrecPtr e)
 {
     mgr->mouseButtonRelease(e->getButton(), e->getLocation().x(), e->getLocation().y());
 }
Exemplo n.º 14
0
 virtual void mousePressed(const MouseEventUnrecPtr e)
 {
     mgr->mouseButtonPress(e->getButton(), e->getLocation().x(), e->getLocation().y());
 }