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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_text.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_text.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 CTRL_TEXT_HPP
  25. #define CTRL_TEXT_HPP
  26. #include "ctrl_generic.hpp"
  27. #include "../utils/fsm.hpp"
  28. #include "../utils/observer.hpp"
  29. #include <string>
  30. class GenericFont;
  31. class GenericBitmap;
  32. class OSTimer;
  33. class UString;
  34. class VarText;
  35. /// Class for control text
  36. class CtrlText: public CtrlGeneric, public Observer<VarText>
  37. {
  38.     public:
  39.         /// Create a text control with the optional given color
  40.         CtrlText( intf_thread_t *pIntf, VarText &rVariable,
  41.                   const GenericFont &rFont, const UString &rHelp,
  42.                   uint32_t color, VarBool *pVisible );
  43.         virtual ~CtrlText();
  44.         /// Handle an event
  45.         virtual void handleEvent( EvtGeneric &rEvent );
  46.         /// Check whether coordinates are inside the control
  47.         virtual bool mouseOver( int x, int y ) const;
  48.         /// Draw the control on the given graphics
  49.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  50.         /// Set the text of the control, with an optional color
  51.         /// This takes effect immediatly
  52.         void setText( const UString &rText, uint32_t color = 0xFFFFFFFF );
  53.     private:
  54.         /// Finite state machine of the control
  55.         FSM m_fsm;
  56.         /// Variable associated to the control
  57.         VarText &m_rVariable;
  58.         /// Callback objects
  59.         Callback m_cmdToManual;
  60.         Callback m_cmdManualMoving;
  61.         Callback m_cmdManualStill;
  62.         Callback m_cmdMove;
  63.         /// The last received event
  64.         EvtGeneric *m_pEvt;
  65.         /// Font used to render the text
  66.         const GenericFont &m_rFont;
  67.         /// Color of the text
  68.         uint32_t m_color;
  69.         /// Image of the text
  70.         GenericBitmap *m_pImg;
  71.         /// Image of the text, repeated twice and with some blank between;
  72.         /// useful to display a 'circular' moving text...
  73.         GenericBitmap *m_pImgDouble;
  74.         /// Current image (should always be equal to m_pImg or m_pImgDouble)
  75.         GenericBitmap *m_pCurrImg;
  76.         /// Position of the left side of the moving text
  77.         int m_xPos;
  78.         /// Offset between the mouse pointer and the left side of the
  79.         /// moving text
  80.         int m_xOffset;
  81.          /// Timer to move the text
  82.         OSTimer *m_pTimer;
  83.         /// Callback functions
  84.         static void transToManual( SkinObject *pCtrl );
  85.         static void transManualMoving( SkinObject *pCtrl );
  86.         static void transManualStill( SkinObject *pCtrl );
  87.         static void transMove( SkinObject *pCtrl );
  88.         /// Callback for the timer
  89.         static void updateText( SkinObject *pCtrl );
  90.         /// Method called when the observed variable is modified
  91.         virtual void onUpdate( Subject<VarText> &rVariable );
  92.         /// Display the text on the control
  93.         void displayText( const UString &rText );
  94.         /// Helper function to set the position in the correct interval
  95.         void adjust( int &position );
  96.         /// Update the behaviour of the text whenever the control size changes
  97.         virtual void onChangePosition();
  98. };
  99. #endif