Home
last modified time | relevance | path

Searched refs:style_name (Results 26 – 36 of 36) sorted by relevance

12

/plugin/odt/ODT/styles/
H A DODTTextStyle.php298 $style_name = $properties ['style-name'];
299 if ( empty($style_name) ) {
300 $style_name = self::getNewStylename ('Text');
301 $properties ['style-name'] = $style_name;
H A DODTPageLayoutStyle.php348 $style_name = $properties ['style-name'];
349 if ( empty($style_name) ) {
350 $style_name = self::getNewStylename ('Page');
351 $properties ['style-name'] = $style_name;
353 $style = '<style:page-layout style:name="'.$style_name.'">
H A DODTStyle.php245 $style_name = self::$style_base_name.$type.'_'.self::$style_count;
246 return $style_name;
/plugin/latexcaption/syntax/
H A Dcaption.php357 $style_name = ($type == 'figure' ? 'Illustration' : 'Table');
358 $labelname = ($label ? $label : 'ref'.$style_name.$count);
360 $out = '<text:p text:style-name="'.$style_name.'">';
363 … $out .= 'text:name="'.$style_name.'" text:formula="ooow:'.$style_name.'+1" style:num-format="1">';
/plugin/wrap/
H A Dhelper.php442 $style_name = 'Plugin_Wrap_Paragraph_'.$name;
443 if (!$renderer->styleExists($style_name)) {
446 $properties ['style-name'] = $style_name;
451 $renderer->p_open($style_name);
597 $style_name = 'Plugin_Wrap_Span_'.$name;
598 if (!$renderer->styleExists($style_name)) {
601 $properties ['style-name'] = $style_name;
621 $renderer->_odtSpanOpen($style_name);
/plugin/odt/ODT/elements/
H A DODTElementFrame.php25 public function __construct($style_name=NULL) { argument
28 if (isset($style_name)) {
29 $this->setStyleName ($style_name);
/plugin/odt/renderer/
H A Dpage.php1061 $style_name = 'highlight_list_paragraph_style';
1062 if (!$this->document->styleExists($style_name)) {
1073 $style_name = 'highlight_list_numbers_text_style';
1074 if (!$this->document->styleExists($style_name)) {
1077 $properties ['style-name'] = $style_name;
1085 $style_name = 'highlight_list_ol_style';
1086 if (!$this->document->styleExists($style_name)) {
1113 $this->_preformatted($text, $style_name);
1725 function _odtSpanOpen($style_name){ argument
1726 $this->document->spanOpen($style_name);
[all …]
/plugin/projects/plugins/file/
H A Dplot_dependency.php51 public function line_style($style_name, $property_name) { argument
52 $style = $this->line_styles[$style_name];
/plugin/odt/ODT/
H A DODTDocument.php384 * @param string $style_name The style to use.
396 * @param string $style_name The style to use.
898 $style_name = $style_obj->getProperty('style-name');
918 $style_name = $style_obj->getProperty('style-name');
922 $this->preventDeletetionStyles [] = $style_name;
924 return $style_name;
928 $style_name = 'pagebreak';
930 $style_name .= '_after';
933 $style_name .= '_'.$parent;
935 if ( !$this->styleExists($style_name) ) {
[all …]
H A DODTIndex.php309 $style_name = $doc->createPagebreakStyle(NULL, false);
310 $content .= '<text:p text:style-name="'.$style_name.'"/>';
/plugin/odp/
H A Drenderer.php968 $style_name = "Source_20_Code";
969 if ($type == "file") $style_name = "Source_20_File";
972 $this->_preformatted($text, $style_name);
996 $this->_preformatted($highlighted_code, $style_name, false);
1011 $style_name = "highlight." . $this->highlight_style_num;
1014 <style:style style:name="'.$style_name.'" style:family="text">
1023 $this->autostyles[$style_name] = $style_content;
1025 return '<text:span text:style-name="'.$style_name.'">';

12