]> git.sesse.net Git - vlc/blob - modules/gui/skins/src/banks.h
* Fixed wrapping for texts
[vlc] / modules / gui / skins / src / banks.h
1 /*****************************************************************************
2  * banks.h: Bitmap bank, Event bank, Font bank and OffSet bank
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: banks.h,v 1.1 2003/03/18 02:21:47 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 #ifndef VLC_SKIN_BANKS
28 #define VLC_SKIN_BANKS
29
30 //---------------------------------------------------------------------------
31 //--- GENERAL ---------------------------------------------------------------
32 #include <map>
33 #include <list>
34 #include <string>
35 using namespace std;
36
37 //---------------------------------------------------------------------------
38 #define DEFAULT_BITMAP_NAME   "DEFAULT_BITMAP"
39 #define DEFAULT_FONT_NAME     "DEFAULT_FONT"
40 #define DEFAULT_EVENT_NAME    "DEFAULT_EVENT"
41
42 //---------------------------------------------------------------------------
43 struct intf_thread_t;
44 class Bitmap;
45 class Font;
46 class Event;
47
48 //---------------------------------------------------------------------------
49 class BitmapBank
50 {
51     private:
52         map<string,Bitmap *> Bank;
53         intf_thread_t *p_intf;
54     public:
55         BitmapBank( intf_thread_t *_p_intf );
56         ~BitmapBank();
57         bool Add( string Id, string FileName, int AColor );   // Add a bitmap
58         Bitmap * Get( string Id );  // Return the bitmap with matching ID
59 };
60 //---------------------------------------------------------------------------
61 class FontBank
62 {
63     private:
64         map<string,Font *> Bank;
65         intf_thread_t *p_intf;
66     public:
67         FontBank( intf_thread_t *_p_intf );
68         ~FontBank();
69         bool Add( string name, string fontname, int size,
70                   int color, int weight, bool italic, bool underline );
71         Font * Get( string Id ); // Return the font with matching ID
72 };
73 //---------------------------------------------------------------------------
74 class EventBank
75 {
76     private:
77         map<string,Event *> Bank;
78         intf_thread_t *p_intf;
79     public:
80         EventBank( intf_thread_t *_p_intf );
81         ~EventBank();
82         bool Add( string Name, string EventDesc, string shortcut );
83         void TestShortcut( int key, int mod );
84         Event * Get( string Id );   // Return the event with matching ID
85         void Init();
86 };
87 //---------------------------------------------------------------------------
88 class OffSetBank
89 {
90     private:
91         int XOff;
92         int YOff;
93         list<int> XList;
94         list<int> YList;
95         intf_thread_t *p_intf;
96     public:
97         OffSetBank( intf_thread_t *_p_intf );
98         ~OffSetBank();
99         void PushOffSet( int X, int Y );
100         void PopOffSet();
101         void GetOffSet( int &X, int &Y );
102 };
103 //---------------------------------------------------------------------------
104
105 #endif
106