|
|
self.add_option(FloatOption(_('Appearance'), 'image_scale', self.image_scale,
_('Image Scale'), _('Scale of image within this Picframe ...'),
min=0.01, max=10.0, digits=2, increment=0.01,hidden=True))
self.add_option(IntOption(_('Appearance'), 'image_offset_x',
self.image_offset_x, _('Image Offset X'), _('X-offset of upper left ')+\
'corner of the image within this Picframe ...',
min=0, max=self.width,hidden=True))
self.add_option(IntOption(_('Appearance'), 'image_offset_y',
self.image_offset_y, _('Image Offset Y'), _('Y-offset of upper left ')+\
'corner of the image within this Picframe ...',
min=0, max=self.height,hidden=True))
self.add_option(IntOption(_('SlideShow'), 'bounding-x',
self.bounding_x, _('Bounding X'),
_('X size of bounding box'), min=50, max=1600))
self.add_option(IntOption(_('SlideShow'), 'bounding-y',
self.bounding_y, _('Bounding Y'),
_('Y size of bounding box'), min=50, max=1200))
|