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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * builder.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: builder.cpp 7626 2004-05-08 18:10:38Z ipkiss $
  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. #include <string.h>
  25. #include "builder.hpp"
  26. #include "builder_data.hpp"
  27. #include "interpreter.hpp"
  28. #include "../src/png_bitmap.hpp"
  29. #include "../src/os_factory.hpp"
  30. #include "../src/generic_bitmap.hpp"
  31. #include "../src/top_window.hpp"
  32. #include "../src/anchor.hpp"
  33. #include "../src/bitmap_font.hpp"
  34. #include "../src/ft2_font.hpp"
  35. #include "../src/theme.hpp"
  36. #include "../controls/ctrl_button.hpp"
  37. #include "../controls/ctrl_checkbox.hpp"
  38. #include "../controls/ctrl_image.hpp"
  39. #include "../controls/ctrl_list.hpp"
  40. #include "../controls/ctrl_move.hpp"
  41. #include "../controls/ctrl_resize.hpp"
  42. #include "../controls/ctrl_slider.hpp"
  43. #include "../controls/ctrl_radialslider.hpp"
  44. #include "../controls/ctrl_text.hpp"
  45. #include "../controls/ctrl_video.hpp"
  46. #include "../utils/position.hpp"
  47. #include "../utils/var_bool.hpp"
  48. #include "../utils/var_text.hpp"
  49. Builder::Builder( intf_thread_t *pIntf, const BuilderData &rData):
  50.     SkinObject( pIntf ), m_rData( rData ), m_pTheme( NULL )
  51. {
  52. }
  53. CmdGeneric *Builder::parseAction( const string &rAction )
  54. {
  55.     return Interpreter::instance( getIntf() )->parseAction( rAction, m_pTheme );
  56. }
  57. // Useful macro
  58. #define ADD_OBJECTS( type ) 
  59.     list<BuilderData::type>::const_iterator it##type; 
  60.     for( it##type = m_rData.m_list##type.begin(); 
  61.          it##type != m_rData.m_list##type.end(); it##type++ ) 
  62.     { 
  63.         add##type( *it##type ); 
  64.     }
  65. Theme *Builder::build()
  66. {
  67.     m_pTheme = new Theme( getIntf() );
  68.     if( m_pTheme == NULL )
  69.     {
  70.         return NULL;
  71.     }
  72.     // Create everything from the data in the XML
  73.     ADD_OBJECTS( Theme );
  74.     ADD_OBJECTS( Bitmap );
  75.     ADD_OBJECTS( BitmapFont );
  76.     ADD_OBJECTS( Font );
  77.     ADD_OBJECTS( Window );
  78.     ADD_OBJECTS( Layout );
  79.     ADD_OBJECTS( Anchor );
  80.     ADD_OBJECTS( Button );
  81.     ADD_OBJECTS( Checkbox );
  82.     ADD_OBJECTS( Image );
  83.     ADD_OBJECTS( Text );
  84.     ADD_OBJECTS( RadialSlider );
  85.     ADD_OBJECTS( Slider );
  86.     ADD_OBJECTS( List );
  87.     ADD_OBJECTS( Video );
  88.     return m_pTheme;
  89. }
  90. // Macro to get a bitmap by its ID in the builder
  91. #define GET_BMP( pBmp, id ) 
  92.     if( id != "none" ) 
  93.     { 
  94.         pBmp = m_pTheme->getBitmapById(id); 
  95.         if( pBmp == NULL ) 
  96.         { 
  97.             msg_Err( getIntf(), "unknown bitmap id: %s", id.c_str() ); 
  98.             return; 
  99.         } 
  100.     }
  101. void Builder::addTheme( const BuilderData::Theme &rData )
  102. {
  103.     WindowManager &rManager = m_pTheme->getWindowManager();
  104.     rManager.setMagnetValue( rData.m_magnet );
  105.     rManager.setAlphaValue( rData.m_alpha );
  106.     rManager.setMoveAlphaValue( rData.m_moveAlpha );
  107.     GenericFont *pFont = getFont( rData.m_tooltipfont );
  108.     if( pFont )
  109.     {
  110.         rManager.createTooltip( *pFont );
  111.     }
  112.     else
  113.     {
  114.         msg_Warn( getIntf(), "Invalid tooltip font: %s",
  115.                   rData.m_tooltipfont.c_str() );
  116.     }
  117. }
  118. void Builder::addBitmap( const BuilderData::Bitmap &rData )
  119. {
  120.     GenericBitmap *pBmp = new PngBitmap( getIntf(), rData.m_fileName,
  121.                                          rData.m_alphaColor );
  122.     m_pTheme->m_bitmaps[rData.m_id] = GenericBitmapPtr( pBmp );
  123. }
  124. void Builder::addBitmapFont( const BuilderData::BitmapFont &rData )
  125. {
  126.     GenericBitmap *pBmp = new PngBitmap( getIntf(), rData.m_file, 0 );
  127.     m_pTheme->m_bitmaps[rData.m_id] = GenericBitmapPtr( pBmp );
  128.     GenericFont *pFont = new BitmapFont( getIntf(), *pBmp, rData.m_type );
  129.     if( pFont->init() )
  130.     {
  131.         m_pTheme->m_fonts[rData.m_id] = GenericFontPtr( pFont );
  132.     }
  133.     else
  134.     {
  135.         delete pFont;
  136.     }
  137. }
  138. void Builder::addFont( const BuilderData::Font &rData )
  139. {
  140.     GenericFont *pFont = new FT2Font( getIntf(), rData.m_fontFile,
  141.                                       rData.m_size );
  142.     if( pFont->init() )
  143.     {
  144.         m_pTheme->m_fonts[rData.m_id] = GenericFontPtr( pFont );
  145.     }
  146.     else
  147.     {
  148.         delete pFont;
  149.     }
  150. }
  151. void Builder::addWindow( const BuilderData::Window &rData )
  152. {
  153.     TopWindow *pWin =
  154.         new TopWindow( getIntf(), rData.m_xPos, rData.m_yPos,
  155.                            m_pTheme->getWindowManager(),
  156.                            rData.m_dragDrop, rData.m_playOnDrop );
  157.     m_pTheme->m_windows[rData.m_id] = TopWindowPtr( pWin );
  158. }
  159. void Builder::addLayout( const BuilderData::Layout &rData )
  160. {
  161.     TopWindow *pWin = m_pTheme->getWindowById(rData.m_windowId);
  162.     if( pWin == NULL )
  163.     {
  164.         msg_Err( getIntf(), "unknown window id: %s", rData.m_windowId.c_str() );
  165.         return;
  166.     }
  167.     int minWidth = rData.m_minWidth != -1 ? rData.m_minWidth : rData.m_width;
  168.     int maxWidth = rData.m_maxWidth != -1 ? rData.m_maxWidth : rData.m_width;
  169.     int minHeight = rData.m_minHeight != -1 ? rData.m_minHeight :
  170.                     rData.m_height;
  171.     int maxHeight = rData.m_maxHeight != -1 ? rData.m_maxHeight :
  172.                     rData.m_height;
  173.     GenericLayout *pLayout = new GenericLayout( getIntf(), rData.m_width,
  174.                                                 rData.m_height,
  175.                                                 minWidth, maxWidth, minHeight,
  176.                                                 maxHeight );
  177.     m_pTheme->m_layouts[rData.m_id] = GenericLayoutPtr( pLayout );
  178.     // Attach the layout to its window
  179.     m_pTheme->getWindowManager().addLayout( *pWin, *pLayout );
  180. }
  181. void Builder::addAnchor( const BuilderData::Anchor &rData )
  182. {
  183.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  184.     if( pLayout == NULL )
  185.     {
  186.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  187.         return;
  188.     }
  189.     Bezier *pCurve = getPoints( rData.m_points.c_str() );
  190.     if( pCurve == NULL )
  191.     {
  192.         msg_Err( getIntf(), "Invalid format in tag points="%s"",
  193.                  rData.m_points.c_str() );
  194.         return;
  195.     }
  196.     m_pTheme->m_curves.push_back( BezierPtr( pCurve ) );
  197.     Anchor *pAnc = new Anchor( getIntf(), rData.m_xPos, rData.m_yPos,
  198.                                rData.m_range, rData.m_priority,
  199.                                *pCurve, *pLayout );
  200.     pLayout->addAnchor( pAnc );
  201. }
  202. void Builder::addButton( const BuilderData::Button &rData )
  203. {
  204.     // Get the bitmaps of the button
  205.     GenericBitmap *pBmpUp = NULL;
  206.     GET_BMP( pBmpUp, rData.m_upId );
  207.     GenericBitmap *pBmpDown = pBmpUp;
  208.     GET_BMP( pBmpDown, rData.m_downId );
  209.     GenericBitmap *pBmpOver = pBmpUp;
  210.     GET_BMP( pBmpOver, rData.m_overId );
  211.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  212.     if( pLayout == NULL )
  213.     {
  214.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  215.         return;
  216.     }
  217.     CmdGeneric *pCommand = parseAction( rData.m_actionId );
  218.     if( pCommand == NULL )
  219.     {
  220.         msg_Err( getIntf(), "Invalid action: %s", rData.m_actionId.c_str() );
  221.         return;
  222.     }
  223.     // Get the visibility variable
  224.     // XXX check when it is null
  225.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  226.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  227.     CtrlButton *pButton = new CtrlButton( getIntf(), *pBmpUp, *pBmpOver,
  228.         *pBmpDown, *pCommand, UString( getIntf(), rData.m_tooltip.c_str() ),
  229.         UString( getIntf(), rData.m_help.c_str() ), pVisible );
  230.     // Compute the position of the control
  231.     // XXX (we suppose all the images have the same size...)
  232.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  233.                                        rData.m_xPos, rData.m_yPos,
  234.                                        pBmpUp->getWidth(),
  235.                                        pBmpUp->getHeight(), *pLayout );
  236.     pLayout->addControl( pButton, pos, rData.m_layer );
  237.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pButton );
  238. }
  239. void Builder::addCheckbox( const BuilderData::Checkbox &rData )
  240. {
  241.     // Get the bitmaps of the checkbox
  242.     GenericBitmap *pBmpUp1 = NULL;
  243.     GET_BMP( pBmpUp1, rData.m_up1Id );
  244.     GenericBitmap *pBmpDown1 = pBmpUp1;
  245.     GET_BMP( pBmpDown1, rData.m_down1Id );
  246.     GenericBitmap *pBmpOver1 = pBmpUp1;
  247.     GET_BMP( pBmpOver1, rData.m_over1Id );
  248.     GenericBitmap *pBmpUp2 = NULL;
  249.     GET_BMP( pBmpUp2, rData.m_up2Id );
  250.     GenericBitmap *pBmpDown2 = pBmpUp2;
  251.     GET_BMP( pBmpDown2, rData.m_down2Id );
  252.     GenericBitmap *pBmpOver2 = pBmpUp2;
  253.     GET_BMP( pBmpOver2, rData.m_over2Id );
  254.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  255.     if( pLayout == NULL )
  256.     {
  257.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  258.         return;
  259.     }
  260.     CmdGeneric *pCommand1 = parseAction( rData.m_action1 );
  261.     if( pCommand1 == NULL )
  262.     {
  263.         msg_Err( getIntf(), "Invalid action: %s", rData.m_action1.c_str() );
  264.         return;
  265.     }
  266.     CmdGeneric *pCommand2 = parseAction( rData.m_action2 );
  267.     if( pCommand2 == NULL )
  268.     {
  269.         msg_Err( getIntf(), "Invalid action: %s", rData.m_action2.c_str() );
  270.         return;
  271.     }
  272.     // Get the state variable
  273.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  274.     VarBool *pVar = pInterpreter->getVarBool( rData.m_state, m_pTheme );
  275.     if( pVar == NULL )
  276.     {
  277.         // TODO: default state
  278.         return;
  279.     }
  280.     // Get the visibility variable
  281.     // XXX check when it is null
  282.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  283.     // Create the control
  284.     CtrlCheckbox *pCheckbox = new CtrlCheckbox( getIntf(), *pBmpUp1,
  285.         *pBmpOver1, *pBmpDown1, *pBmpUp2, *pBmpOver2, *pBmpDown2, *pCommand1,
  286.         *pCommand2, UString( getIntf(), rData.m_tooltip1.c_str() ),
  287.         UString( getIntf(), rData.m_tooltip2.c_str() ), *pVar,
  288.         UString( getIntf(), rData.m_help.c_str() ), pVisible );
  289.     // Compute the position of the control
  290.     // XXX (we suppose all the images have the same size...)
  291.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  292.                                        rData.m_xPos, rData.m_yPos,
  293.                                        pBmpUp1->getWidth(),
  294.                                        pBmpUp1->getHeight(), *pLayout );
  295.     pLayout->addControl( pCheckbox, pos, rData.m_layer );
  296.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pCheckbox );
  297. }
  298. void Builder::addImage( const BuilderData::Image &rData )
  299. {
  300.     GenericBitmap *pBmp = NULL;
  301.     GET_BMP( pBmp, rData.m_bmpId );
  302.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  303.     if( pLayout == NULL )
  304.     {
  305.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  306.         return;
  307.     }
  308.     TopWindow *pWindow = m_pTheme->getWindowById(rData.m_windowId);
  309.     if( pWindow == NULL )
  310.     {
  311.         msg_Err( getIntf(), "unknown window id: %s", rData.m_windowId.c_str() );
  312.         return;
  313.     }
  314.     // Get the visibility variable
  315.     // XXX check when it is null
  316.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  317.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  318.     CtrlImage *pImage = new CtrlImage( getIntf(), *pBmp,
  319.         UString( getIntf(), rData.m_help.c_str() ), pVisible );
  320.     // Compute the position of the control
  321.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  322.                                        rData.m_xPos,
  323.                                        rData.m_yPos, pBmp->getWidth(),
  324.                                        pBmp->getHeight(), *pLayout );
  325.     // XXX: test to be changed! XXX
  326.     if( rData.m_actionId == "move" )
  327.     {
  328.         CtrlMove *pMove = new CtrlMove( getIntf(), m_pTheme->getWindowManager(),
  329.              *pImage, *pWindow, UString( getIntf(), rData.m_help.c_str() ),
  330.              NULL);
  331.         pLayout->addControl( pMove, pos, rData.m_layer );
  332.     }
  333.     else if( rData.m_actionId == "resizeSE" )
  334.     {
  335.         CtrlResize *pResize = new CtrlResize( getIntf(), *pImage, *pLayout,
  336.                 UString( getIntf(), rData.m_help.c_str() ), NULL );
  337.         pLayout->addControl( pResize, pos, rData.m_layer );
  338.     }
  339.     else
  340.     {
  341.         pLayout->addControl( pImage, pos, rData.m_layer );
  342.     }
  343.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pImage );
  344. }
  345. void Builder::addText( const BuilderData::Text &rData )
  346. {
  347.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  348.     if( pLayout == NULL )
  349.     {
  350.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  351.         return;
  352.     }
  353.     GenericFont *pFont = getFont( rData.m_fontId );
  354.     if( pFont == NULL )
  355.     {
  356.         msg_Err( getIntf(), "Unknown font id: %s", rData.m_fontId.c_str() );
  357.         return;
  358.     }
  359.     // Create a text variable
  360.     VarText *pVar = new VarText( getIntf() );
  361.     UString msg( getIntf(), rData.m_text.c_str() );
  362.     pVar->set( msg );
  363.     m_pTheme->m_vars.push_back( VariablePtr( pVar ) );
  364.     // Get the visibility variable
  365.     // XXX check when it is null
  366.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  367.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  368.     CtrlText *pText = new CtrlText( getIntf(), *pVar, *pFont,
  369.         UString( getIntf(), rData.m_help.c_str() ), rData.m_color, pVisible );
  370.     int height = pFont->getSize();
  371.     pLayout->addControl( pText, Position( rData.m_xPos, rData.m_yPos,
  372.                                           rData.m_xPos + rData.m_width,
  373.                                           rData.m_yPos + height, *pLayout ),
  374.                          rData.m_layer );
  375.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pText );
  376. }
  377. void Builder::addRadialSlider( const BuilderData::RadialSlider &rData )
  378. {
  379.     // Get the bitmaps of the slider
  380.     GenericBitmap *pSeq = NULL;
  381.     GET_BMP( pSeq, rData.m_sequence );
  382.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  383.     if( pLayout == NULL )
  384.     {
  385.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  386.         return;
  387.     }
  388.     // Get the variable associated to the slider
  389.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  390.     VarPercent *pVar = pInterpreter->getVarPercent( rData.m_value, m_pTheme );
  391.     if( pVar == NULL )
  392.     {
  393.         msg_Err( getIntf(), "Unknown slider value: %s", rData.m_value.c_str() );
  394.         return;
  395.     }
  396.     // Get the visibility variable
  397.     // XXX check when it is null
  398.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  399.     // Create the control
  400.     CtrlRadialSlider *pRadial =
  401.         new CtrlRadialSlider( getIntf(), *pSeq, rData.m_nbImages, *pVar,
  402.                               rData.m_minAngle, rData.m_maxAngle,
  403.                               UString( getIntf(), rData.m_help.c_str() ),
  404.                               pVisible );
  405.     // XXX: resizing is not supported
  406.     // Compute the position of the control
  407.     const Position pos =
  408.         makePosition( rData.m_leftTop, rData.m_rightBottom, rData.m_xPos,
  409.                       rData.m_yPos, pSeq->getWidth(),
  410.                       pSeq->getHeight() / rData.m_nbImages, *pLayout );
  411.     pLayout->addControl( pRadial, pos, rData.m_layer );
  412.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pRadial );
  413. }
  414. void Builder::addSlider( const BuilderData::Slider &rData )
  415. {
  416.     // Get the bitmaps of the slider
  417.     GenericBitmap *pBmpUp = NULL;
  418.     GET_BMP( pBmpUp, rData.m_upId );
  419.     GenericBitmap *pBmpDown = pBmpUp;
  420.     GET_BMP( pBmpDown, rData.m_downId );
  421.     GenericBitmap *pBmpOver = pBmpUp;
  422.     GET_BMP( pBmpOver, rData.m_overId );
  423.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  424.     if( pLayout == NULL )
  425.     {
  426.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  427.         return;
  428.     }
  429.     Bezier *pCurve = getPoints( rData.m_points.c_str() );
  430.     if( pCurve == NULL )
  431.     {
  432.         msg_Err( getIntf(), "Invalid format in tag points="%s"",
  433.                  rData.m_points.c_str() );
  434.         return;
  435.     }
  436.     m_pTheme->m_curves.push_back( BezierPtr( pCurve ) );
  437.     // Get the visibility variable
  438.     // XXX check when it is null
  439.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  440.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  441.     // Get the variable associated to the slider
  442.     VarPercent *pVar = pInterpreter->getVarPercent( rData.m_value, m_pTheme );
  443.     if( pVar == NULL )
  444.     {
  445.         msg_Err( getIntf(), "Unknown slider value: %s", rData.m_value.c_str() );
  446.         return;
  447.     }
  448.     // Create the cursor and background controls
  449.     CtrlSliderCursor *pCursor = new CtrlSliderCursor( getIntf(), *pBmpUp,
  450.         *pBmpOver, *pBmpDown, *pCurve, *pVar, pVisible,
  451.         UString( getIntf(), rData.m_tooltip.c_str() ),
  452.         UString( getIntf(), rData.m_help.c_str() ) );
  453.     CtrlSliderBg *pBackground = new CtrlSliderBg( getIntf(), *pCursor,
  454.         *pCurve, *pVar, rData.m_thickness, pVisible,
  455.         UString( getIntf(), rData.m_help.c_str() ) );
  456.     // Compute the position of the control
  457.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  458.                                        rData.m_xPos, rData.m_yPos,
  459.                                        pCurve->getWidth(), pCurve->getHeight(),
  460.                                        *pLayout );
  461.     pLayout->addControl( pBackground, pos, rData.m_layer );
  462.     pLayout->addControl( pCursor, pos, rData.m_layer );
  463.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pCursor );
  464.     m_pTheme->m_controls[rData.m_id + "_bg"] = CtrlGenericPtr( pBackground );
  465. }
  466. void Builder::addList( const BuilderData::List &rData )
  467. {
  468.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  469.     if( pLayout == NULL )
  470.     {
  471.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  472.         return;
  473.     }
  474.     GenericFont *pFont = getFont( rData.m_fontId );
  475.     if( pFont == NULL )
  476.     {
  477.         msg_Err( getIntf(), "Unknown font id: %s", rData.m_fontId.c_str() );
  478.         return;
  479.     }
  480.     // Get the list variable
  481.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  482.     VarList *pVar = pInterpreter->getVarList( rData.m_var, m_pTheme );
  483.     if( pVar == NULL )
  484.     {
  485.         msg_Err( getIntf(), "No such list variable: %s", rData.m_var.c_str() );
  486.         return;
  487.     }
  488.     // Get the visibility variable
  489.     // XXX check when it is null
  490.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  491.     // Create the list control
  492.     CtrlList *pList = new CtrlList( getIntf(), *pVar, *pFont,
  493.        rData.m_fgColor, rData.m_playColor, rData.m_bgColor1,
  494.        rData.m_bgColor2, rData.m_selColor,
  495.        UString( getIntf(), rData.m_help.c_str() ), pVisible );
  496.     // Compute the position of the control
  497.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  498.                                        rData.m_xPos, rData.m_yPos,
  499.                                        rData.m_width, rData.m_height,
  500.                                        *pLayout );
  501.     pLayout->addControl( pList, pos, rData.m_layer );
  502.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pList );
  503. }
  504. void Builder::addVideo( const BuilderData::Video &rData )
  505. {
  506.     GenericLayout *pLayout = m_pTheme->getLayoutById(rData.m_layoutId);
  507.     if( pLayout == NULL )
  508.     {
  509.         msg_Err( getIntf(), "unknown layout id: %s", rData.m_layoutId.c_str() );
  510.         return;
  511.     }
  512.     // Get the visibility variable
  513.     // XXX check when it is null
  514.     Interpreter *pInterpreter = Interpreter::instance( getIntf() );
  515.     VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
  516.     CtrlVideo *pVideo = new CtrlVideo( getIntf(),
  517.         UString( getIntf(), rData.m_help.c_str() ), pVisible );
  518.     // Compute the position of the control
  519.     const Position pos = makePosition( rData.m_leftTop, rData.m_rightBottom,
  520.                                        rData.m_xPos, rData.m_yPos,
  521.                                        rData.m_width, rData.m_height,
  522.                                        *pLayout );
  523.     pLayout->addControl( pVideo, pos, rData.m_layer );
  524.     m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pVideo );
  525. }
  526. const Position Builder::makePosition( const string &rLeftTop,
  527.                                       const string &rRightBottom,
  528.                                       int xPos, int yPos, int width,
  529.                                       int height, const Box &rBox ) const
  530. {
  531.     int left = 0, top = 0, right = 0, bottom = 0;
  532.     Position::Ref_t refLeftTop = Position::kLeftTop;
  533.     Position::Ref_t refRightBottom = Position::kLeftTop;
  534.     int boxWidth = rBox.getWidth();
  535.     int boxHeight = rBox.getHeight();
  536.     // Position of the left top corner
  537.     if( rLeftTop == "lefttop" )
  538.     {
  539.         left = xPos;
  540.         top = yPos;
  541.         refLeftTop = Position::kLeftTop;
  542.     }
  543.     else if( rLeftTop == "righttop" )
  544.     {
  545.         left = xPos - boxWidth + 1;
  546.         top = yPos;
  547.         refLeftTop = Position::kRightTop;
  548.     }
  549.     else if( rLeftTop == "leftbottom" )
  550.     {
  551.         left = xPos;
  552.         top = yPos - boxHeight + 1;
  553.         refLeftTop = Position::kLeftBottom;
  554.     }
  555.     else if( rLeftTop == "rightbottom" )
  556.     {
  557.         left = xPos - boxWidth + 1;
  558.         top = yPos - boxHeight + 1;
  559.         refLeftTop = Position::kRightBottom;
  560.     }
  561.     // Position of the right bottom corner
  562.     if( rRightBottom == "lefttop" )
  563.     {
  564.         right = xPos + width - 1;
  565.         bottom = yPos + height - 1;
  566.         refRightBottom = Position::kLeftTop;
  567.     }
  568.     else if( rRightBottom == "righttop" )
  569.     {
  570.         right = xPos + width - boxWidth;
  571.         bottom = yPos + height - 1;
  572.         refRightBottom = Position::kRightTop;
  573.     }
  574.     else if( rRightBottom == "leftbottom" )
  575.     {
  576.         right = xPos + width - 1;
  577.         bottom = yPos + height - boxHeight;
  578.         refRightBottom = Position::kLeftBottom;
  579.     }
  580.     else if( rRightBottom == "rightbottom" )
  581.     {
  582.         right = xPos + width - boxWidth;
  583.         bottom = yPos + height - boxHeight;
  584.         refRightBottom = Position::kRightBottom;
  585.     }
  586.     return Position( left, top, right, bottom, rBox, refLeftTop,
  587.                      refRightBottom );
  588. }
  589. GenericFont *Builder::getFont( const string &fontId )
  590. {
  591.     GenericFont *pFont = m_pTheme->getFontById(fontId);
  592.     if( !pFont && fontId == "defaultfont" )
  593.     {
  594.         // Get the resource path and try to load the default font
  595.         OSFactory *pOSFactory = OSFactory::instance( getIntf() );
  596.         const list<string> &resPath = pOSFactory->getResourcePath();
  597.         const string &sep = pOSFactory->getDirSeparator();
  598.         list<string>::const_iterator it;
  599.         for( it = resPath.begin(); it != resPath.end(); it++ )
  600.         {
  601.             string path = (*it) + sep + "fonts" + sep + "FreeSans.ttf";
  602.             pFont = new FT2Font( getIntf(), path, 12 );
  603.             if( pFont->init() )
  604.             {
  605.                 // Font loaded successfully
  606.                 m_pTheme->m_fonts["defaultfont"] = GenericFontPtr( pFont );
  607.                 break;
  608.             }
  609.             else
  610.             {
  611.                 delete pFont;
  612.                 pFont = NULL;
  613.             }
  614.         }
  615.         if( !pFont )
  616.         {
  617.             msg_Err( getIntf(), "Failed to open the default font" );
  618.         }
  619.     }
  620.     return pFont;
  621. }
  622. Bezier *Builder::getPoints( const char *pTag ) const
  623. {
  624.     vector<float> xBez, yBez;
  625.     int x, y, n;
  626.     while( 1 )
  627.     {
  628.         if( sscanf( pTag, "(%d,%d)%n", &x, &y, &n ) < 1 )
  629.         {
  630.             return NULL;
  631.         }
  632. #if 0
  633.         if( x < 0 || y < 0 )
  634.         {
  635.             msg_Err( getIntf(),
  636.                      "Slider points cannot have negative coordinates!" );
  637.             return NULL;
  638.         }
  639. #endif
  640.         xBez.push_back( x );
  641.         yBez.push_back( y );
  642.         pTag += n;
  643.         if( *pTag == '' )
  644.         {
  645.             break;
  646.         }
  647.         if( *(pTag++) != ',' )
  648.         {
  649.             return NULL;
  650.         }
  651.     }
  652.     // Create the Bezier curve
  653.     return new Bezier( getIntf(), xBez, yBez );
  654. }