ctrl_list.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_list.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: b0c9363d711b1eff60f522c6e366ea10ed935ecd $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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 GenericBitmap;
  32. /// Class for control list
  33. class CtrlList: public CtrlGeneric, public Observer<VarList>,
  34.     public Observer<VarPercent>
  35. {
  36.     public:
  37.         CtrlList( intf_thread_t *pIntf, VarList &rList,
  38.                   const GenericFont &rFont, const GenericBitmap *pBitmap,
  39.                   uint32_t fgcolor, uint32_t playcolor, uint32_t bgcolor1,
  40.                   uint32_t bgcolor2, uint32_t selColor,
  41.                   const UString &rHelp, VarBool *pVisible );
  42.         virtual ~CtrlList();
  43.         /// Handle an event on the control.
  44.         virtual void handleEvent( EvtGeneric &rEvent );
  45.         /// Check whether coordinates are inside the control.
  46.         virtual bool mouseOver( int x, int y ) const;
  47.         /// Draw the control on the given graphics
  48.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  49.         /// Called when the layout is resized
  50.         virtual void onResize();
  51.         /// Return true if the control can gain the focus
  52.         virtual bool isFocusable() const { return true; }
  53.         /// Get the type of control (custom RTTI)
  54.         virtual string getType() const { return "list"; }
  55.     private:
  56.         /// List associated to the control
  57.         VarList &m_rList;
  58.         /// Font
  59.         const GenericFont &m_rFont;
  60.         /// Background bitmap
  61.         /** If NULL, the 2 background colors defined below will be used */
  62.         const GenericBitmap *m_pBitmap;
  63.         /// Color of normal text
  64.         uint32_t m_fgColor;
  65.         /// Color of the playing item
  66.         uint32_t m_playColor;
  67.         /// Background colors, used when no background bitmap is given
  68.         uint32_t m_bgColor1, m_bgColor2;
  69.         /// Background of selected items
  70.         uint32_t m_selColor;
  71.         /// Pointer on the last selected item in the list
  72.         VarList::Elem_t *m_pLastSelected;
  73.         /// Image of the control
  74.         OSGraphics *m_pImage;
  75.         /// Last position
  76.         int m_lastPos;
  77.         /// Method called when the list variable is modified
  78.         virtual void onUpdate( Subject<VarList> &rList, void* );
  79.         /// Method called when the position variable of the list is modified
  80.         virtual void onUpdate( Subject<VarPercent> &rPercent, void*  );
  81.         /// Called when the position is set
  82.         virtual void onPositionChange();
  83.         /// Check if the list must be scrolled
  84.         void autoScroll();
  85.         /// Draw the image of the control
  86.         void makeImage();
  87. };
  88. #endif