var_list.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * var_list.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: var_list.hpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <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. #ifndef VAR_LIST_HPP
  25. #define VAR_LIST_HPP
  26. #include <list>
  27. #include "variable.hpp"
  28. #include "observer.hpp"
  29. #include "ustring.hpp"
  30. #include "var_percent.hpp"
  31. /// List variable
  32. class VarList: public Variable, public Subject<VarList>
  33. {
  34.     public:
  35.         VarList( intf_thread_t *pIntf );
  36.         virtual ~VarList();
  37.         /// Get the variable type
  38.         virtual const string &getType() const { return m_type; }
  39.         /// Add a pointer on a string in the list
  40.         virtual void add( const UStringPtr &rcString );
  41.         /// Remove the selected elements from the list
  42.         virtual void delSelected();
  43.         /// Remove all the elements from the list
  44.         virtual void clear();
  45.         /// Get the number of items in the list
  46.         int size() const { return m_list.size(); }
  47.         /// Type of an element in the list
  48.         struct Elem_t
  49.         {
  50.             UStringPtr m_cString;
  51.             bool m_selected;
  52.             bool m_playing;
  53.             Elem_t( const UStringPtr &rcString, bool selected = false, bool
  54.                     playing = false ):
  55.                 m_cString( rcString ), m_selected( selected ),
  56.                 m_playing( playing) {}
  57.         };
  58.         /// Iterators
  59.         typedef list<Elem_t>::iterator Iterator;
  60.         typedef list<Elem_t>::const_iterator ConstIterator;
  61.         /// Beginning of the list
  62.         Iterator begin() { return m_list.begin(); }
  63.         ConstIterator begin() const { return m_list.begin(); }
  64.         /// End of the list
  65.         Iterator end() { return m_list.end(); }
  66.         ConstIterator end() const { return m_list.end(); }
  67.         /// Return an iterator on the n'th element of the list
  68.         Iterator operator[]( int n );
  69.         ConstIterator operator[]( int n ) const;
  70.         /// Execute the action associated to this item
  71.         virtual void action( Elem_t *pItem ) {}
  72.         /// Get a reference on the position variable
  73.         VarPercent &getPositionVar() const
  74.             { return *((VarPercent*)m_cPosition.get()); }
  75.         /// Get a counted pointer on the position variable
  76.         const VariablePtr &getPositionVarPtr() const { return m_cPosition; }
  77.     protected:
  78.         /// List of elements
  79.         list<Elem_t> m_list;
  80.     private:
  81.         /// Variable type
  82.         static const string m_type;
  83.         /// Position variable
  84.         VariablePtr m_cPosition;
  85. };
  86. #endif