]> git.sesse.net Git - vlc/blob - modules/gui/skins2/controls/ctrl_move.hpp
* controls/*, src/generic_window.cpp, src/generic_layout.cpp: a visibiliy
[vlc] / modules / gui / skins2 / controls / ctrl_move.hpp
1 /*****************************************************************************
2  * ctrl_move.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: ctrl_move.hpp,v 1.2 2004/02/29 16:49:55 asmax Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #ifndef CTRL_MOVE_HPP
26 #define CTRL_MOVE_HPP
27
28 #include "../commands/cmd_generic.hpp"
29 #include "../utils/fsm.hpp"
30 #include "ctrl_flat.hpp"
31
32 class GenericWindow;
33 class WindowManager;
34
35
36 /// Control for moving windows
37 class CtrlMove: public CtrlFlat
38 {
39     public:
40         CtrlMove( intf_thread_t *pIntf, WindowManager &rWindowManager,
41                   CtrlFlat &rCtrl, GenericWindow &rWindow,
42                   const UString &rHelp, VarBool *pVisible );
43         virtual ~CtrlMove() {}
44
45         /// Handle an event
46         virtual void handleEvent( EvtGeneric &rEvent );
47
48         /// Check whether coordinates are inside the decorated control
49         virtual bool mouseOver( int x, int y ) const;
50
51         /// Draw the control on the given graphics
52         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
53
54         /// Set the position and the associated layout of the decorated control
55         virtual void setLayout( GenericLayout *pLayout,
56                                 const Position &rPosition );
57
58         /// Get the position of the decorated control in the layout, if any
59         virtual const Position *getPosition() const;
60
61         static void transMovingMoving( SkinObject *pCtrl );
62         static void transStillMoving( SkinObject *pCtrl );
63         static void transMovingStill( SkinObject *pCtrl );
64
65     private:
66         FSM m_fsm;
67         /// Window manager
68         WindowManager &m_rWindowManager;
69         /// Decorated CtrlFlat
70         CtrlFlat &m_rCtrl;
71         /// The window moved by this control
72         GenericWindow &m_rWindow;
73         /// The last received event
74         EvtGeneric *m_pEvt;
75         /// Position of the click that started the move
76         int m_xPos, m_yPos;
77         /// Callbacks
78         Callback m_cmdMovingMoving;
79         Callback m_cmdStillMoving;
80         Callback m_cmdMovingStill;
81 };
82
83 #endif