Searched refs:style_obj (Results 1 – 12 of 12) sorted by relevance
/plugin/odt/ODT/ |
D | ODTTable.php | 57 $style_obj = clone $params->document->getStyle($tableStyleName); 58 $style_obj->setProperty('style-name', $style_name); 59 if (isset($style_obj)) { 62 $style_obj->setProperty('margin-left', ($indent).'cm'); 63 … if ($style_obj->getProperty('width') == NULL && $style_obj->getProperty('rel-width')) { 64 $style_obj->setProperty('width', ($max-$indent).'cm'); 66 $style_obj->setProperty('align', 'left'); 67 $params->document->addAutomaticStyle($style_obj); 415 $style_obj = ODTTableStyle::createTableTableStyle($properties, NULL, 17); 416 $params->document->addAutomaticStyle($style_obj); [all …]
|
D | ODTIndex.php | 183 $style_obj = ODTParagraphStyle::createParagraphStyle($properties); 184 $doc->addStyle($style_obj); 185 $title_style = $style_obj->getProperty('style-name'); 208 $style_obj = ODTParagraphStyle::createParagraphStyle($properties); 213 $doc->addStyle($style_obj); 214 $p_styles [$count+1] = $style_obj->getProperty('style-name'); 218 $properties ['style-parent'] = $style_obj->getProperty('style-name'); 238 $style_obj = ODTTextStyle::createTextStyle($properties); 239 $stylesLNames [$count+1] = $style_obj->getProperty('style-name'); 240 $doc->addStyle($style_obj);
|
D | ODTList.php | 255 $style_obj = clone $style_last; 257 if (isset($style_obj)) { 258 $style_obj->setProperty('style-name', $style_name); 259 $style_obj->setProperty('style-parent', $last_p_style); 260 $style_obj->setProperty('style-display-name', $style_display_name); 263 … $style_obj->setProperty('margin-top', $style_body->getProperty('margin-top')); 265 $params->document->addStyle($style_obj);
|
D | ODTSpan.php | 91 $style_obj = ODTUnknownStyle::importODTStyle($image_style); 92 $params->document->addAutomaticStyle($style_obj); 98 $style_obj = ODTTextStyle::createTextStyle ($properties, $disabled); 99 $params->document->addAutomaticStyle($style_obj); 100 $style_name = $style_obj->getProperty('style-name');
|
D | ODTParagraph.php | 213 $style_obj = ODTUnknownStyle::importODTStyle($image_style); 214 $params->document->addAutomaticStyle($style_obj); 221 $style_obj = ODTParagraphStyle::createParagraphStyle ($properties); 222 $params->document->addAutomaticStyle($style_obj); 223 $style_name = $style_obj->getProperty('style-name');
|
D | ODTFrame.php | 145 $style_obj = ODTUnknownStyle::createMultiColumnFrameStyle ($properties); 146 $params->document->addAutomaticStyle($style_obj); 147 $style_name = $style_obj->getProperty('style-name'); 315 $style_obj = ODTUnknownStyle::importODTStyle($style); 316 $params->document->addAutomaticStyle($style_obj);
|
D | ODTDocument.php | 897 $style_obj = ODTPageLayoutStyle::createPageLayoutStyle($properties); 898 $style_name = $style_obj->getProperty('style-name'); 902 ODTImport::set_page_properties($this->params, $style_obj); 908 $this->addAutomaticStyle($style_obj); 917 $style_obj = ODTParagraphStyle::createParagraphStyle($properties); 918 $style_name = $style_obj->getProperty('style-name'); 919 $this->addAutomaticStyle($style_obj); 936 $style_obj = ODTParagraphStyle::createPagebreakStyle($style_name, $parent, $before); 937 $this->addAutomaticStyle($style_obj); 1421 $style_obj = ODTTextStyle::createTextStyle($properties, NULL, $this); [all …]
|
D | ODTImage.php | 242 $style_obj = ODTUnknownStyle::importODTStyle($image_style); 243 $params->document->addAutomaticStyle($style_obj);
|
/plugin/odt/ODT/elements/ |
D | ODTElementTable.php | 339 $style_obj = $params->document->getStyle($style_name); 340 if (isset($style_obj)) { 341 $width = $style_obj->getProperty('column-width'); 427 $style_obj = $params->document->getStyle($table_style_name); 428 if (isset($style_obj)) { 429 $style_obj->setProperty('width', $width.'pt'); 443 $style_obj->setProperty('rel-width', $rel_width.'%'); 470 $style_obj = $params->document->getStyle($style_name); 471 if (isset($style_obj)) { 472 if ($style_obj->getProperty('rel-column-width') != NULL) { [all …]
|
D | ODTStateElement.php | 17 protected $style_obj = NULL; variable in ODTStateElement 94 $this->style_obj = $object; 103 return $this->style_obj;
|
/plugin/odt/ODT/styles/ |
D | ODTTextStyle.php | 289 $style_obj = self::createSizeOnlyTextStyle ($name, $odt_fo_size); 290 $doc->addStyle($style_obj); 291 $parent = $style_obj->getProperty('style-name');
|
D | ODTParagraphStyle.php | 405 $style_obj = ODTTextStyle::createSizeOnlyTextStyle ($name, $odt_fo_size); 406 $doc->addStyle($style_obj); 407 $parent = $style_obj->getProperty('style-name');
|