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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ctrl_text.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 30695f4e25e281438249028a8f6655718b42db91 $
  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_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.         enum Align_t
  40.         {
  41.             kLeft,
  42.             kCenter,
  43.             kRight
  44.         };
  45.         enum Scrolling_t
  46.         {
  47.             // The text starts scrolling automatically if it is larger than the
  48.             // width of the control. The user can still stop it or make it
  49.             // scroll manually with the mouse.
  50.             kAutomatic,
  51.             // Only manual scrolling is allowed (with the mouse)
  52.             kManual,
  53.             // No scrolling of the text is allowed
  54.             kNone
  55.         };
  56.         /// Create a text control with the optional given color
  57.         CtrlText( intf_thread_t *pIntf, VarText &rVariable,
  58.                   const GenericFont &rFont, const UString &rHelp,
  59.                   uint32_t color, VarBool *pVisible, Scrolling_t scrollMode,
  60.                   Align_t alignment);
  61.         virtual ~CtrlText();
  62.         /// Handle an event
  63.         virtual void handleEvent( EvtGeneric &rEvent );
  64.         /// Check whether coordinates are inside the control
  65.         virtual bool mouseOver( int x, int y ) const;
  66.         /// Draw the control on the given graphics
  67.         virtual void draw( OSGraphics &rImage, int xDest, int yDest );
  68.         /// Set the text of the control, with an optional color
  69.         /// This takes effect immediatly
  70.         void setText( const UString &rText, uint32_t color = 0xFFFFFFFF );
  71.         /// Get the type of control (custom RTTI)
  72.         virtual string getType() const { return "text"; }
  73.     private:
  74.         /// Finite state machine of the control
  75.         FSM m_fsm;
  76.         /// Variable associated to the control
  77.         VarText &m_rVariable;
  78.         /// Callback objects
  79.         DEFINE_CALLBACK( CtrlText, ToManual )
  80.         DEFINE_CALLBACK( CtrlText, ManualMoving )
  81.         DEFINE_CALLBACK( CtrlText, ManualStill )
  82.         DEFINE_CALLBACK( CtrlText, Move )
  83.         /// The last received event
  84.         EvtGeneric *m_pEvt;
  85.         /// Font used to render the text
  86.         const GenericFont &m_rFont;
  87.         /// Color of the text
  88.         uint32_t m_color;
  89.         /// Scrolling mode
  90.         Scrolling_t m_scrollMode;
  91.         /// Type of alignment
  92.         Align_t m_alignment;
  93.         /// Image of the text
  94.         GenericBitmap *m_pImg;
  95.         /// Image of the text, repeated twice and with some blank between;
  96.         /// useful to display a 'circular' moving text...
  97.         GenericBitmap *m_pImgDouble;
  98.         /// Current image (should always be equal to m_pImg or m_pImgDouble)
  99.         GenericBitmap *m_pCurrImg;
  100.         /// Position of the left side of the moving text (always <= 0)
  101.         int m_xPos;
  102.         /// Offset between the mouse pointer and the left side of the
  103.         /// moving text
  104.         int m_xOffset;
  105.          /// Timer to move the text
  106.         OSTimer *m_pTimer;
  107.         /// Callback for the timer
  108.         DEFINE_CALLBACK( CtrlText, UpdateText );
  109.         /// Method called when the observed variable is modified
  110.         virtual void onUpdate( Subject<VarText> &rVariable, void* );
  111.         /// Display the text on the control
  112.         void displayText( const UString &rText );
  113.         /// Helper function to set the position in the correct interval
  114.         void adjust( int &position );
  115.         /// Update the behaviour of the text whenever the control size changes
  116.         virtual void onPositionChange();
  117.         /// Update the behaviour of the text whenever the control size changes
  118.         virtual void onResize();
  119. };
  120. #endif