]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/anchor.cpp
* X11 skins now use imlib2 -> you need to bootstrap
[vlc] / modules / gui / skins / src / anchor.cpp
1 /*****************************************************************************
2  * anchor.cpp: Anchor class
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: anchor.cpp,v 1.3 2003/04/22 22:57:40 ipkiss Exp $
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *          Emmanuel Puig    <karibu@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,
23  * USA.
24  *****************************************************************************/
25
26
27 //--- GENERAL ---------------------------------------------------------------
28 #include <math.h>
29
30 //--- VLC -------------------------------------------------------------------
31 #include <vlc/intf.h>
32
33 //--- SKIN ------------------------------------------------------------------
34 #include "anchor.h"
35 #include "window.h"
36
37
38 //---------------------------------------------------------------------------
39 // Anchors
40 //---------------------------------------------------------------------------
41 Anchor::Anchor( intf_thread_t *_p_intf, int x, int y, int len, int priority,
42                 SkinWindow *parent )
43 {
44     p_intf   = _p_intf;
45     Parent   = parent;
46     Left     = x;
47     Top      = y;
48     Priority = priority;
49     Len      = len;
50 }
51 //---------------------------------------------------------------------------
52 bool Anchor::IsInList( Anchor *anc )
53 {
54     // Declare iterator
55     list<Anchor *>::const_iterator elt;
56
57     // Iterate through list
58     for( elt = HangList.begin(); elt != HangList.end(); elt++ )
59     {
60         if( (*elt) == anc )
61             return true;
62     }
63
64     return false;
65 }
66 //---------------------------------------------------------------------------
67 void Anchor::Add( Anchor *anc )
68 {
69     HangList.push_back( anc );
70 }
71 //---------------------------------------------------------------------------
72 void Anchor::Remove( Anchor *anc )
73 {
74     HangList.remove( anc );
75 }
76 //---------------------------------------------------------------------------
77 bool Anchor::Hang( Anchor *anc, int mx, int my )
78 {
79     // Get position of anchor
80     int x, y, px, py;
81     Parent->GetPos( px, py );
82     anc->GetPos( x, y );
83     x += mx - px - Left;
84     y += my - py - Top;
85
86     // Len of 0 is equal to unactivate anchor
87     return( Len > 0 && sqrt( x*x + y*y ) <= Len );
88 }
89 //---------------------------------------------------------------------------
90 void Anchor::GetPos( int &x, int &y )
91 {
92     x = Left;
93     y = Top;
94 }
95 //---------------------------------------------------------------------------
96