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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_list.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_list.hpp 7261 2004-04-03 13:57:46Z asmax $
  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 CTRL_LIST_HPP
  25. #define CTRL_LIST_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/observer.hpp"
  28. #include "../utils/var_list.hpp"
  29. class OSGraphics;
  30. class GenericFont;
  31. /// Class for control list
  32. class CtrlList: public CtrlGeneric, public Observer<VarList>,
  33.     public Observer<VarPercent>
  34. {
  35.     public:
  36.         CtrlList( intf_thread_t *pIntf, VarList &rList, GenericFont &rFont,
  37.                   uint32_t fgcolor, uint32_t playcolor, uint32_t bgcolor1,
  38.                   uint32_t bgcolor2, uint32_t selColor,
  39.                   const UString &rHelp, VarBool *pVisible );
  40.         virtual ~CtrlList();
  41.         /// Handle an event on the control.
  42.         virtual void handleEvent( EvtGeneric &rEvent );
  43.         /// Check whether coordinates are inside the control.
  44.         virtual bool mouseOver( int x, int y ) const;
  45.         /// Draw the control on the given graphics
  46.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  47.         /// Called when the layout is resized
  48.         virtual void onResize();
  49.         /// Return true if the control can gain the focus
  50.         virtual bool isFocusable() const { return true; }
  51.     private:
  52.         /// List associated to the control
  53.         VarList &m_rList;
  54.         /// Font
  55.         GenericFont &m_rFont;
  56.         /// Color of normal text
  57.         uint32_t m_fgColor;
  58.         /// Color of the playing item
  59.         uint32_t m_playColor;
  60.         /// Background colors
  61.         uint32_t m_bgColor1, m_bgColor2;
  62.         /// Background of selected items
  63.         uint32_t m_selColor;
  64.         /// Pointer on the last selected item in the list
  65.         VarList::Elem_t *m_pLastSelected;
  66.         /// Image of the control
  67.         OSGraphics *m_pImage;
  68.         /// Last position
  69.         int m_lastPos;
  70.         /// Method called when the list variable is modified
  71.         virtual void onUpdate( Subject<VarList> &rList );
  72.         /// Method called when the position variable of the list is modified
  73.         virtual void onUpdate( Subject<VarPercent> &rPercent );
  74.         /// Called when the position is set
  75.         virtual void onPositionChange();
  76.         /// Check if the list must be scrolled
  77.         void autoScroll();
  78.         /// Draw the image of the control
  79.         void makeImage();
  80. };
  81. #endif