]> git.sesse.net Git - vlc/blob - modules/gui/skins2/controls/ctrl_resize.cpp
Uniformize source files encoding
[vlc] / modules / gui / skins2 / controls / ctrl_resize.cpp
1 /*****************************************************************************
2  * ctrl_resize.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "ctrl_resize.hpp"
26 #include "../events/evt_generic.hpp"
27 #include "../events/evt_mouse.hpp"
28 #include "../events/evt_motion.hpp"
29 #include "../src/generic_layout.hpp"
30 #include "../src/os_factory.hpp"
31 #include "../utils/position.hpp"
32 #include "../commands/async_queue.hpp"
33 #include "../commands/cmd_resize.hpp"
34
35
36 CtrlResize::CtrlResize( intf_thread_t *pIntf, CtrlFlat &rCtrl,
37                         GenericLayout &rLayout, const UString &rHelp,
38                         VarBool *pVisible, Direction_t direction ):
39     CtrlFlat( pIntf, rHelp, pVisible ), m_fsm( pIntf ), m_rCtrl( rCtrl ),
40     m_rLayout( rLayout ), m_direction( direction ),  m_cmdOutStill( this ),
41     m_cmdStillOut( this ),
42     m_cmdStillStill( this ),
43     m_cmdStillResize( this ),
44     m_cmdResizeStill( this ),
45     m_cmdResizeResize( this )
46 {
47     m_pEvt = NULL;
48     m_xPos = 0;
49     m_yPos = 0;
50
51     // States
52     m_fsm.addState( "out" );
53     m_fsm.addState( "still" );
54     m_fsm.addState( "resize" );
55
56     // Transitions
57     m_fsm.addTransition( "out", "enter", "still", &m_cmdOutStill );
58     m_fsm.addTransition( "still", "leave", "out", &m_cmdStillOut );
59     m_fsm.addTransition( "still", "motion", "still", &m_cmdStillStill );
60     m_fsm.addTransition( "resize", "mouse:left:up:none", "still",
61                          &m_cmdResizeStill );
62     m_fsm.addTransition( "still", "mouse:left:down:none", "resize",
63                          &m_cmdStillResize );
64     m_fsm.addTransition( "resize", "motion", "resize", &m_cmdResizeResize );
65
66     m_fsm.setState( "still" );
67 }
68
69
70 bool CtrlResize::mouseOver( int x, int y ) const
71 {
72     return m_rCtrl.mouseOver( x, y );
73 }
74
75
76 void CtrlResize::draw( OSGraphics &rImage, int xDest, int yDest )
77 {
78     m_rCtrl.draw( rImage, xDest, yDest );
79 }
80
81
82 void CtrlResize::setLayout( GenericLayout *pLayout, const Position &rPosition )
83 {
84     CtrlGeneric::setLayout( pLayout, rPosition );
85     // Set the layout of the decorated control as well
86     m_rCtrl.setLayout( pLayout, rPosition );
87 }
88
89
90 const Position *CtrlResize::getPosition() const
91 {
92     return m_rCtrl.getPosition();
93 }
94
95
96 void CtrlResize::handleEvent( EvtGeneric &rEvent )
97 {
98     m_pEvt = &rEvent;
99     m_fsm.handleTransition( rEvent.getAsString() );
100     // Transmit the event to the decorated control
101     // XXX: Is it really a good idea?
102     m_rCtrl.handleEvent( rEvent );
103 }
104
105
106 void CtrlResize::changeCursor( Direction_t direction ) const
107 {
108     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
109     if( direction == kResizeSE )
110         pOsFactory->changeCursor( OSFactory::kResizeNWSE );
111     else if( direction == kResizeS )
112         pOsFactory->changeCursor( OSFactory::kResizeNS );
113     else if( direction == kResizeE )
114         pOsFactory->changeCursor( OSFactory::kResizeWE );
115     else if( direction == kNone )
116         pOsFactory->changeCursor( OSFactory::kDefaultArrow );
117 }
118
119
120 void CtrlResize::CmdOutStill::execute()
121 {
122     m_pParent->changeCursor( m_pParent->m_direction );
123 }
124
125
126 void CtrlResize::CmdStillOut::execute()
127 {
128     m_pParent->changeCursor( kNone );
129 }
130
131
132 void CtrlResize::CmdStillStill::execute()
133 {
134     m_pParent->changeCursor( m_pParent->m_direction );
135 }
136
137
138 void CtrlResize::CmdStillResize::execute()
139 {
140     EvtMouse *pEvtMouse = (EvtMouse*)m_pParent->m_pEvt;
141
142     // Set the cursor
143     m_pParent->changeCursor( m_pParent->m_direction );
144
145     m_pParent->m_xPos = pEvtMouse->getXPos();
146     m_pParent->m_yPos = pEvtMouse->getYPos();
147
148     m_pParent->captureMouse();
149
150     m_pParent->m_width = m_pParent->m_rLayout.getWidth();
151     m_pParent->m_height = m_pParent->m_rLayout.getHeight();
152 }
153
154
155 void CtrlResize::CmdResizeStill::execute()
156 {
157     // Set the cursor
158     m_pParent->changeCursor( m_pParent->m_direction );
159
160     m_pParent->releaseMouse();
161 }
162
163
164 void CtrlResize::CmdResizeResize::execute()
165 {
166     EvtMotion *pEvtMotion = (EvtMotion*)m_pParent->m_pEvt;
167
168     // Set the cursor
169     m_pParent->changeCursor( m_pParent->m_direction );
170
171     int newWidth = m_pParent->m_width;
172     int newHeight = m_pParent->m_height;
173     if( m_pParent->m_direction != kResizeS )
174         newWidth += pEvtMotion->getXPos() - m_pParent->m_xPos;
175     if( m_pParent->m_direction != kResizeE )
176         newHeight += pEvtMotion->getYPos() - m_pParent->m_yPos;
177
178     // Create a resize command
179     CmdGeneric *pCmd = new CmdResize( m_pParent->getIntf(),
180                                       m_pParent->m_rLayout,
181                                       newWidth, newHeight );
182     // Push the command in the asynchronous command queue
183     AsyncQueue *pQueue = AsyncQueue::instance( m_pParent->getIntf() );
184     pQueue->push( CmdGenericPtr( pCmd ) );
185 }