;ò
¹0sDc           @   s"  d  Z  d k Z d k l Z d k l Z d k l Z d k Td k	 Td f  d „  ƒ  YZ
 d e
 e i f d	 „  ƒ  YZ h  Z d
 e
 f d „  ƒ  YZ d e
 f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d „  Z e d j o e ƒ  n d S(   s9    $Id: widgetbase.py 2668 2005-09-05 10:23:51Z rgbecker $ N(   s   shapes(   s	   rl_config(   s   colors(   s   *s
   PropHolderc           B   sU   t  Z d  Z e Z d „  Z e i o d „  Z n d d „ Z	 d „  Z
 d d „ Z RS(   s   Base for property holdersc         C   s   |  i t j	 oì xY |  i i ƒ  D]H } | d d j o1 d | |  f } |  i i | ƒ p
 t | ‚ q  q  Wx |  i i	 ƒ  D]x \ } } d | |  f } t |  | ƒ p
 t | ‚ t |  | ƒ } | | |  i i f } | i | ƒ p t d | ‚ q| Wn d S(   s0  If the _attrMap attribute is not None, this
        checks all expected attributes are present; no
        unwanted attributes are present; and (if a
        checking function is found) checks each
        attribute has a valid value.  Either succeeds
        or raises an informative exception.
        i    s   _s#   Unexpected attribute %s found in %ss   Missing attribute %s from %ss-   Invalid value %s for attribute %s in class %sN(   s   selfs   _attrMaps   Nones   __dict__s   keyss   keys   msgs   has_keys   AssertionErrors   itemss   attrs	   metavalues   hasattrs   getattrs   values	   __class__s   __name__s   argss   validate(   s   selfs   attrs	   metavalues   argss   values   keys   msg(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   verify   s      % c         C   s   t  |  | | ƒ d S(   sS   By default we verify.  This could be off
            in some parallel base classes.N(   s   validateSetattrs   selfs   names   value(   s   selfs   names   value(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __setattr__.   s     i   c   	      C   sê   d k  l } h  } xÌ |  i i ƒ  D]» } | d d !d j o¡ t |  | ƒ } | o
 | | ƒ op | i
 d | ƒ } xe | i ƒ  D]I \ } } | d d j o | | d | | f <q | | d | | f <q WqÞ | | | <q# q# W| Sd	 S(
   sJ  Returns a list of all properties which can be edited and
        which are not marked as private. This may include 'child
        widgets' or 'primitive shapes'.  You are free to override
        this and provide alternative implementations; the default
        one simply returns everything without a leading underscore.
        (   s   isValidChildi    i   s   _s   recurs   [s   %s%ss   %s.%sN(   s   reportlab.lib.validatorss   isValidChilds   propss   selfs   __dict__s   keyss   names   getattrs	   components   recurs   getPropertiess
   childPropss   itemss   childKeys
   childValue(	   s   selfs   recurs   names   childKeys
   childValues	   components
   childPropss   propss   isValidChild(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   getProperties4   s        c   
      C   sã   h  }	 x | i ƒ  D] \ } } t i | d d ƒ } t | ƒ d j o t	 |  | | ƒ q | \ } } y | |	 | | <Wq t j
 o h  | | <|	 | <q Xq Wx6 |	 i ƒ  D]( \ } } t |  | ƒ } | i | ƒ q³ Wd S(   s…  Permits bulk setting of properties.  These may include
        child objects e.g. "chart.legend.width = 200".

        All assignments will be validated by the object as if they
        were set individually in python code.

        All properties of a top-level object are guaranteed to be
        set before any of the children, which may be helpful to
        widget designers.
        s   .i   N(   s   childPropDictss   propDicts   itemss   names   values   strings   splits   partss   lens   setattrs   selfs	   childNames   remainss   KeyErrors   childPropDicts   getattrs   childs   setProperties(
   s   selfs   propDicts   childPropDicts   names   remainss   values   partss	   childNames   childs   childPropDicts(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   setPropertiesW   s     
   s    c         C   s^   |  i ƒ  i ƒ  } | i ƒ  | o | d } n x& | D] \ } } d | | | f GHq8 Wd S(   s™   Convenience. Lists them on standard output.  You
        may provide a prefix - mostly helps to generate code
        samples for documentation.
        s   .s	   %s%s = %sN(   s   selfs   getPropertiess   itemss   propLists   sorts   prefixs   names   value(   s   selfs   prefixs   values   names   propList(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   dumpPropertiesv   s     
 (   s   __name__s
   __module__s   __doc__s   Nones   _attrMaps   verifys	   rl_configs   shapeCheckings   __setattr__s   getPropertiess   setPropertiess   dumpProperties(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys
   PropHolder   s    	
 #	s   Widgetc           B   s;   t  Z d  Z d „  Z d „  Z d „  Z d „  Z d „  Z RS(   sª   Base for all user-defined widgets.  Keep as simple as possible. Does
    not inherit from Shape so that we can rewrite shapes without breaking
    widgets and vice versa.c         K   sI   xB | i ƒ  D]4 \ } } |  i i | ƒ o t |  | | ƒ q q Wd  S(   N(   s   kws   itemss   ks   vs   selfs   __dict__s   has_keys   setattr(   s   selfs   kws   ks   v(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   _setKeywords‰   s     c         C   s   d } t i | ‚ d  S(   Ns+   draw() must be implemented for each Widget!(   s   msgs   shapess   NotImplementedError(   s   selfs   msg(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   drawŽ   s    c         C   s   d } t i | ‚ d  S(   Ns+   demo() must be implemented for each Widget!(   s   msgs   shapess   NotImplementedError(   s   selfs   msg(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   demo’   s    c         C   s   |  i ƒ  Sd  S(   N(   s   selfs   draw(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   provideNode–   s    c         C   s   |  i ƒ  i ƒ  Sd S(   sG   Return outer boundary as x1,y1,x2,y2.  Can be overridden for efficiencyN(   s   selfs   draws	   getBounds(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys	   getBounds™   s     (   s   __name__s
   __module__s   __doc__s   _setKeywordss   draws   demos   provideNodes	   getBounds(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   Widget„   s    				s   TypedPropertyCollectionc           B   sk   t  Z d  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d d „ Z	 d	 „  Z
 d
 „  Z d „  Z RS(   s~  A container with properties for objects of the same kind.

    This makes it easy to create lists of objects. You initialize
    it with a class of what it is to contain, and that is all you
    can add to it.  You can assign properties to the collection
    as a whole, or to a numeric index within it; if so it creates
    a new child object to hold that data.

    So:
        wedges = TypedPropertyCollection(WedgeProperties)
        wedges.strokeWidth = 2                # applies to all
        wedges.strokeColor = colors.red       # applies to all
        wedges[3].strokeColor = colors.blue   # only to one

    The last line should be taken as a prescription of how to
    create wedge no. 3 if one is needed; no error is raised if
    there are only two data points.

    We try and make sensible use of tuple indeces.
        line[(3,x)] is backed by line[(3,)], line[3] & line
    c         C   s!   | ƒ  |  i d <h  |  i d <d  S(   Ns   _values	   _children(   s   exampleClasss   selfs   __dict__(   s   selfs   exampleClass(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__¶   s    c         C   s   d | f d „  ƒ  Y} | Sd  S(   Ns   WKlassc           B   s   t  Z d „  Z RS(   Nc         C   sõ   y |  i i d i |  | ƒ SWnÐ |  i } | o© |  i i } | i
 | ƒ o | | i i
 | ƒ o t | | | ƒ SqÝ t | ƒ d j oJ | d } | i
 | ƒ o | | i i
 | ƒ o t | | | ƒ SqÙ qÝ n t |  i | ƒ Sn Xd  S(   Ni    i   (   s   selfs	   __class__s	   __bases__s   __getattr__s   names   _indexs   is   _parents	   _childrens   cs   has_keys   __dict__s   getattrs   len(   s   selfs   names   cs   i(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __getattr__½   s    	'
'(   s   __name__s
   __module__s   __getattr__(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   WKlass¼   s   (   s   Klasss   WKlass(   s   selfs   Klasss   WKlass(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   wKlassFactory»   s    c         C   s:  y |  i | SWn$t j
 o|  i i } t i | ƒ o t | } n |  i
 | ƒ t | <} | ƒ  } |  | _ t | ƒ t f  ƒ t g  ƒ f j oC t | ƒ } t | ƒ d j o t | d  ƒ | _ qä t | _ n
 t | _ x9 t | i i ƒ  d „ | i i ƒ  ƒ D] } | i | =qW| |  i | <| Sn Xd  S(   Ni   iÿÿÿÿc         C   s
   |  | j S(   N(   s   xs   K(   s   xs   K(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   <lambda>á   s    (   s   selfs	   _childrens   indexs   KeyErrors   _values	   __class__s   Klasss   _ItemWrappers   has_keys   WKlasss   wKlassFactorys   childs   _parents   types   tuples   lens   _indexs   Nones   filters   __dict__s   keyss   _attrMaps   i(   s   selfs   indexs   is   WKlasss   Klasss   child(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __getitem__Í   s(    		%	( c         C   sI   t  | ƒ t  f  ƒ t  g  ƒ f j o t | ƒ } n |  i i | ƒ Sd  S(   N(   s   types   keys   tuples   selfs	   _childrens   has_key(   s   selfs   key(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   has_keyç   s    % c         C   s7   d |  i i i } t | |  i i ƒ p
 t | ‚ d  S(   Ns0   This collection can only hold objects of type %s(   s   selfs   _values	   __class__s   __name__s   msgs
   isinstances   values   AssertionError(   s   selfs   keys   values   msg(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __setitem__ë   s    c         C   s   t  |  i i ƒ  ƒ Sd  S(   N(   s   lens   selfs	   _childrens   keys(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __len__ï   s    i   c         C   sÝ   h  } x7 |  i i d | ƒ i ƒ  D] \ } } | | d | <q" Wx’ |  i i	 ƒ  D] } |  i | i d | ƒ } x_ | i ƒ  D]Q \ } } t |  | ƒ p t |  | ƒ | j o d | | f } | | | <q| q| WqP W| Sd  S(   Ns   recurs   %ss   [%s].%s(   s   propss   selfs   _values   getPropertiess   recurs   itemss   keys   values	   _childrens   keyss   idxs
   childPropss   hasattrs   getattrs   newKey(   s   selfs   recurs   newKeys   idxs   values
   childPropss   keys   props(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   getPropertiesò   s       'c         K   sV   xO | i ƒ  D]A \ } } x2 t t | ƒ ƒ D] } t |  | | | | ƒ q, Wq Wd  S(   N(	   s   kws   itemss   names   values   xranges   lens   is   setattrs   self(   s   selfs   kws   names   is   value(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys	   setVector  s
      c         C   s   t  |  i | ƒ Sd  S(   N(   s   getattrs   selfs   _values   name(   s   selfs   name(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __getattr__  s    c         C   s   t  |  i | | ƒ Sd  S(   N(   s   setattrs   selfs   _values   names   value(   s   selfs   names   value(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __setattr__
  s    (   s   __name__s
   __module__s   __doc__s   __init__s   wKlassFactorys   __getitem__s   has_keys   __setitem__s   __len__s   getPropertiess	   setVectors   __getattr__s   __setattr__(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   TypedPropertyCollectionŸ   s    								s   StylePropertiesc           B   s•   t  Z d  Z e d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e ƒ d	 e e	 ƒ ƒ 	Z
 d
 „  Z d „  Z RS(   sæ  A container class for attributes used in charts and legends.

    Attributes contained can be those for any graphical element
    (shape?) in the ReportLab graphics package. The idea for this
    container class is to be useful in combination with legends
    and/or the individual appearance of data series in charts.

    A legend could be as simple as a wrapper around a list of style
    properties, where the 'desc' attribute contains a descriptive
    string and the rest could be used by the legend e.g. to draw
    something like a color swatch. The graphical presentation of
    the legend would be its own business, though.

    A chart could be inspecting a legend or, more directly, a list
    of style properties to pick individual attributes that it knows
    about in order to render a particular row of the data. A bar
    chart e.g. could simply use 'strokeColor' and 'fillColor' for
    drawing the bars while a line chart could also use additional
    ones like strokeWidth.
    s   strokeWidths   strokeLineCaps   strokeLineJoins   strokeMiterLimits   strokeDashArrays   strokeOpacitys   strokeColors	   fillColors   descc         K   s1   x* | i ƒ  D] \ } } t |  | | ƒ q Wd S(   s"   Initialize with attributes if any.N(   s   kwargss   itemss   ks   vs   setattrs   self(   s   selfs   kwargss   vs   k(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__0  s      c         C   s   t  |  | | ƒ d S(   s3   Verify attribute name and value, before setting it.N(   s   validateSetattrs   selfs   names   value(   s   selfs   names   value(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __setattr__7  s     (   s   __name__s
   __module__s   __doc__s   AttrMaps   AttrMapValues   isNumbers   Nones   isListOfNumbersOrNones   isColorOrNones   isStrings   _attrMaps   __init__s   __setattr__(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   StyleProperties  s    	s
   TwoCirclesc           B   s   t  Z d „  Z d „  Z RS(   Nc         C   sF   t  i d d d d t i ƒ|  _ t  i d d d d t i ƒ|  _ d  S(   Nid   i   s	   fillColori,  (   s   shapess   Circles   colorss   reds   selfs
   leftCircles   rightCircle(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__=  s    !c         C   s   t  i |  i |  i ƒ Sd  S(   N(   s   shapess   Groups   selfs
   leftCircles   rightCircle(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   drawA  s    (   s   __name__s
   __module__s   __init__s   draw(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys
   TwoCircles<  s   	s   Facec           B   s†   t  Z d  Z e d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e ƒ d e e d d d	 ƒ ƒ ƒ Z d
 „  Z	 d „  Z
 d „  Z RS(   s   This draws a face with two eyes.

    It exposes a couple of properties
    to configure itself and hides all other details.
    s   xs   ys   sizes	   skinColors   eyeColors   moods   happys   sads   okc         C   s=   d |  _ d |  _ d |  _ t |  _ t i |  _ d |  _	 d  S(   Ni
   iP   s   happy(
   s   selfs   xs   ys   sizes   Nones	   skinColors   colorss   blues   eyeColors   mood(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__U  s    				c         C   s   d  S(   N(    (   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   demo]  s    c         C   s,  |  i } t i ƒ  } d d d d |  i |  i g | _ | i	 t i
 | d | d | d d |  i ƒƒ | i	 t i
 | d | d | d d t i ƒƒ | i	 t i
 | d | d | d d |  i ƒƒ | i	 t i
 | d | d | d d t i ƒƒ | i	 t i
 | d | d | d d |  i ƒƒ | i	 t i d	 | d | d
 | d | d | d
 | d g d t ƒ ƒ |  i d j o d } n! |  i d j o
 d } n d } | i	 t i d	 | d | d | d | d | d
 | d | | d | d | g d t i d t i d | d ƒ ƒ | Sd  S(   Ni   i    f0.5s	   fillColorf0.34999999999999998f0.65000000000000002f0.10000000000000001f0.050000000000000003s   pointsf0.59999999999999998f0.40000000000000002f0.29999999999999999s   happys   sadf0.20000000000000001f0.69999999999999996s   strokeColors   strokeWidthf0.029999999999999999(   s   selfs   sizes   ss   shapess   Groups   gs   xs   ys	   transforms   adds   Circles	   skinColors   colorss   whites   eyeColors   Polygons   Nones   moods   offsets   pinks   red(   s   selfs   gs   ss   offset(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   draw`  s(    	!11111<
R		(   s   __name__s
   __module__s   __doc__s   AttrMaps   AttrMapValues   isNumbers   isColorOrNones   OneOfs   _attrMaps   __init__s   demos   draw(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   FaceE  s    		s   TwoFacesc           B   s#   t  Z d „  Z d „  Z d „  Z RS(   Nc         C   s@   t  ƒ  |  _ d |  i _ t  ƒ  |  _ d |  i _ d |  i _ d  S(   Ns   happyid   s   sad(   s   Faces   selfs   faceOnes   moods   faceTwos   x(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__  s
    c         C   s   t  i |  i |  i ƒ Sd S(   s   Just return a groupN(   s   shapess   Groups   selfs   faceOnes   faceTwo(   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   draw”  s     c         C   s   d S(   sQ   The default case already looks good enough,
        no implementation needed hereN(    (   s   self(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   demo˜  s     (   s   __name__s
   __module__s   __init__s   draws   demo(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   TwoFacesŒ  s   		s   Sizerc           B   sb   t  Z d  Z e d e i d e e d d ƒƒ Z d „  Z	 d „  Z
 e d „ Z d „  Z d	 „  Z RS(
   s.   Container to show size of all enclosed objectss   BASEs   contentss   descs   Contained drawable elementsc         G   sC   g  |  _ t i |  _ t i |  _ x | D] } |  i	 | ƒ q( Wd  S(   N(
   s   selfs   contentss   colorss   cyans	   fillColors   magentas   strokeColors   elementss   elems   add(   s   selfs   elementss   elem(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   __init__£  s    	 c         C   sL   | oA | |  i i ƒ  j o t t ƒ |  i | <n t |  | | ƒ n d S(   sL   if name is not None add an attribute pointing to node and add to the attrMapN(   s   names   selfs   _attrMaps   keyss   AttrMapValues   isValidChilds   setattrs   node(   s   selfs   names   node(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   _addNamedNode«  s
     c         C   sL   | t j	 o; t | ƒ p
 t d ‚ |  i i | ƒ |  i | | ƒ n d S(   s“   Appends non-None child node to the 'contents' attribute. In addition,
        if a name is provided, it is subsequently accessible by name
        s1   Can only add Shape or UserNode objects to a GroupN(	   s   nodes   Nones   isValidChilds   AssertionErrors   selfs   contentss   appends   _addNamedNodes   name(   s   selfs   nodes   name(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   add²  s
     c         C   s\   |  i o> g  } x$ |  i D] } | i | i ƒ  ƒ q Wt i | ƒ Sn d d d d f Sd  S(   Ni    (   s   selfs   contentss   bs   elems   appends	   getBoundss   shapess   getRectsBounds(   s   selfs   bs   elem(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys	   getBounds¼  s    

 c         C   s˜   t  i ƒ  } |  i ƒ  \ } } } } t  i	 d | d | d | | d | | d |  i
 d |  i ƒ } | i | ƒ x |  i D] } | i | ƒ qy W| Sd  S(   Ns   xs   ys   widths   heights	   fillColors   strokeColor(   s   shapess   Groups   gs   selfs	   getBoundss   x1s   y1s   x2s   y2s   Rects	   fillColors   strokeColors   rs   adds   contentss   elem(   s   selfs   y2s   gs   elems   x2s   rs   y1s   x1(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   drawÆ  s    

	
 (   s   __name__s
   __module__s   __doc__s   AttrMaps   shapess
   SolidShapes   AttrMapValues   isListOfShapess   _attrMaps   __init__s   _addNamedNodes   Nones   adds	   getBoundss   draw(    (    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   Sizer  s    		
	
c          C   s<  d k  l } t | ƒ } t i | _ | i d t i t i	 t i
 f ƒ t t ƒ GHt i d d ƒ }  t ƒ  } |  i | ƒ d  k } | i |  d d ƒ d GHt i d d ƒ }  t ƒ  } t i | _ d | _ |  i | d	 d
 ƒd GH|  i ƒ  | i |  d d ƒ d GH|  i ƒ  } | i | d d ƒ d GHd GH| i ƒ  d  S(   N(   s   WedgePropertiess	   fillColori  iÈ   s   sample_widget.pdfs   A Sample Widgets   saved sample_widget.pdfs   sads   names   theFaces   drawing 1 properties:s   face.pdfs   saved face.pdfs   face_copy.pdfs   An expanded drawings   saved face_copy.pdfs   drawing 2 properties:(   s#   reportlab.graphics.charts.piechartss   WedgePropertiess   TypedPropertyCollections   wedgess   colorss   reds	   fillColors	   setVectors   blues   greens   whites   lens   _ItemWrappers   shapess   Drawings   ds
   TwoCircless   tcs   adds	   renderPDFs
   drawToFiles   Faces   fs   yellows	   skinColors   moods   dumpPropertiess   expandUserNodess   d2(   s   ds   fs   d2s	   renderPDFs   WedgePropertiess   wedgess   tc(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   testÖ  s2    "				
s   __main__(   s   __version__s   strings   reportlab.graphicss   shapess	   reportlabs	   rl_configs   reportlab.libs   colorss   reportlab.lib.validatorss   reportlab.lib.attrmaps
   PropHolders   UserNodes   Widgets   _ItemWrappers   TypedPropertyCollections   StylePropertiess
   TwoCircless   Faces   TwoFacess   Sizers   tests   __name__(   s   Widgets
   TwoCircless   strings   Sizers   StylePropertiess   colorss   Faces   shapess   tests	   rl_configs
   PropHolders   TwoFacess   __version__s   TypedPropertyCollections   _ItemWrapper(    (    sG   /home/packages/reportlab/reportlab_2_0/reportlab/graphics/widgetbase.pys   ?   s$   	vo.	G9	