]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_dialogs.hpp
* wxwidgets/menus.cpp: Added "Open Directory" in the wx popup menu
[vlc] / modules / gui / skins2 / commands / cmd_dialogs.hpp
1 /*****************************************************************************
2  * cmd_dialogs.hpp
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #ifndef CMD_DIALOGS_HPP
26 #define CMD_DIALOGS_HPP
27
28 #include "cmd_generic.hpp"
29 #include "../src/dialogs.hpp"
30 #include "cmd_change_skin.hpp"
31
32
33 template<int TYPE = 0> class CmdDialogs;
34
35 // XXX use an enum instead
36 typedef CmdDialogs<1> CmdDlgChangeSkin;
37 typedef CmdDialogs<2> CmdDlgFileSimple;
38 typedef CmdDialogs<3> CmdDlgFile;
39 typedef CmdDialogs<4> CmdDlgDisc;
40 typedef CmdDialogs<5> CmdDlgNet;
41 typedef CmdDialogs<6> CmdDlgMessages;
42 typedef CmdDialogs<7> CmdDlgPrefs;
43 typedef CmdDialogs<8> CmdDlgFileInfo;
44 typedef CmdDialogs<9> CmdDlgShowPopupMenu;
45 typedef CmdDialogs<10> CmdDlgHidePopupMenu;
46 typedef CmdDialogs<11> CmdDlgAdd;
47 typedef CmdDialogs<12> CmdDlgPlaylistLoad;
48 typedef CmdDialogs<13> CmdDlgPlaylistSave;
49 typedef CmdDialogs<14> CmdDlgDirectory;
50 typedef CmdDialogs<15> CmdDlgStreamingWizard;
51
52
53 /// Generic "Open dialog" command
54 template<int TYPE>
55 class CmdDialogs: public CmdGeneric
56 {
57     public:
58         CmdDialogs( intf_thread_t *pIntf ): CmdGeneric( pIntf ) {}
59         virtual ~CmdDialogs() {}
60
61         /// This method does the real job of the command
62         virtual void execute()
63         {
64             /// Get the dialogs provider
65             Dialogs *pDialogs = Dialogs::instance( getIntf() );
66             if( pDialogs == NULL )
67             {
68                 return;
69             }
70
71             switch( TYPE )
72             {
73                 case 1:
74                     pDialogs->showChangeSkin();
75                     break;
76                 case 2:
77                     pDialogs->showFileSimple( true );
78                     break;
79                 case 3:
80                     pDialogs->showFile( true );
81                     break;
82                 case 4:
83                     pDialogs->showDisc( true );
84                     break;
85                 case 5:
86                     pDialogs->showNet( true );
87                     break;
88                 case 6:
89                     pDialogs->showMessages();
90                     break;
91                 case 7:
92                     pDialogs->showPrefs();
93                     break;
94                 case 8:
95                     pDialogs->showFileInfo();
96                     break;
97                 case 9:
98                     pDialogs->showPopupMenu( true );
99                     break;
100                 case 10:
101                     pDialogs->showPopupMenu( false );
102                     break;
103                 case 11:
104                     pDialogs->showFile( false );
105                     break;
106                 case 12:
107                     pDialogs->showPlaylistLoad();
108                     break;
109                 case 13:
110                     pDialogs->showPlaylistSave();
111                     break;
112                 case 14:
113                     pDialogs->showDirectory( true );
114                     break;
115                 case 15:
116                     pDialogs->showStreamingWizard();
117                     break;
118                 default:
119                     msg_Warn( getIntf(), "Unknown dialog type" );
120                     break;
121             }
122         }
123
124         /// Return the type of the command
125         virtual string getType() const { return "dialog"; }
126 };
127
128
129 #endif