- /*****************************************************************************
- * cmd_dialogs.hpp
- *****************************************************************************
- * Copyright (C) 2003 VideoLAN
- * $Id: cmd_dialogs.hpp 8524 2004-08-25 21:32:15Z ipkiss $
- *
- * Authors: Cyril Deguet <asmax@via.ecp.fr>
- * Olivier Teuli鑢e <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
- *****************************************************************************/
- #ifndef CMD_DIALOGS_HPP
- #define CMD_DIALOGS_HPP
- #include "cmd_generic.hpp"
- #include "../src/dialogs.hpp"
- #include "cmd_change_skin.hpp"
- template<int TYPE = 0> class CmdDialogs;
- // XXX use an enum instead
- typedef CmdDialogs<1> CmdDlgChangeSkin;
- typedef CmdDialogs<2> CmdDlgFileSimple;
- typedef CmdDialogs<3> CmdDlgFile;
- typedef CmdDialogs<4> CmdDlgDisc;
- typedef CmdDialogs<5> CmdDlgNet;
- typedef CmdDialogs<6> CmdDlgMessages;
- typedef CmdDialogs<7> CmdDlgPrefs;
- typedef CmdDialogs<8> CmdDlgFileInfo;
- typedef CmdDialogs<9> CmdDlgShowPopupMenu;
- typedef CmdDialogs<10> CmdDlgHidePopupMenu;
- typedef CmdDialogs<11> CmdDlgAdd;
- typedef CmdDialogs<12> CmdDlgPlaylistLoad;
- typedef CmdDialogs<13> CmdDlgPlaylistSave;
- /// Generic "Open dialog" command
- template<int TYPE>
- class CmdDialogs: public CmdGeneric
- {
- public:
- CmdDialogs( intf_thread_t *pIntf ): CmdGeneric( pIntf ) {}
- virtual ~CmdDialogs() {}
- /// This method does the real job of the command
- virtual void execute()
- {
- /// Get the dialogs provider
- Dialogs *pDialogs = Dialogs::instance( getIntf() );
- if( pDialogs == NULL )
- {
- return;
- }
- switch( TYPE )
- {
- case 1:
- pDialogs->showChangeSkin();
- break;
- case 2:
- pDialogs->showFileSimple( true );
- break;
- case 3:
- pDialogs->showFile( true );
- break;
- case 4:
- pDialogs->showDisc( true );
- break;
- case 5:
- pDialogs->showNet( true );
- break;
- case 6:
- pDialogs->showMessages();
- break;
- case 7:
- pDialogs->showPrefs();
- break;
- case 8:
- pDialogs->showFileInfo();
- break;
- case 9:
- pDialogs->showPopupMenu( true );
- break;
- case 10:
- pDialogs->showPopupMenu( false );
- break;
- case 11:
- pDialogs->showFile( false );
- break;
- case 12:
- pDialogs->showPlaylistLoad();
- break;
- case 13:
- pDialogs->showPlaylistSave();
- break;
- default:
- msg_Warn( getIntf(), "Unknown dialog type" );
- break;
- }
- }
- /// Return the type of the command
- virtual string getType() const { return "dialog"; }
- };
- #endif