Home
last modified time | relevance | path

Searched refs:properties (Results 76 – 100 of 802) sorted by last modified time

12345678910>>...33

/plugin/odt/ODT/css/
H A Dcssdocument.php126 * @param array $properties
128 public function setProperties (array &$properties) { argument
129 $this->doc->entries [$this->index]['properties'] = $properties;
H A Dcssimportnew.php1142 $properties = $parent->getProperties ();
1143 if (isset($properties [$key])) {
1144 return $properties [$key];
1164 if (isset($properties ['calculated']) && $properties ['calculated'] == '1') {
1169 $properties ['calculated'] = '1';
1190 if (isset($properties ['font-size']) || isset($properties ['line-height'])) {
1199 $properties ['font-size'] = $units->toPoints($properties ['font-size'], 'y');
1221 foreach ($properties as $key => $value) {
1247 $element->setProperties($properties);
1368 if (!isset($properties)) {
[all …]
/plugin/odt/ODT/styles/
H A DODTMasterPageStyle.php58 public function importProperties($properties, $disabled=array()) { argument
59 …$this->importPropertiesInternal(self::$master_fields, $properties, $disabled, $this->master_style);
H A DODTPageLayoutStyle.php135 public function importProperties($properties, $disabled=array()) { argument
136 …$this->importPropertiesInternal(self::$page_layout_fields, $properties, $disabled, $this->page_lay…
137 …$this->importPropertiesInternal(self::$layout_props_fields, $properties, $disabled, $this->layout_…
138 … $this->importPropertiesInternal(self::$bgi_fields, $properties, $disabled, $this->bgi_props);
139 …$this->importPropertiesInternal(self::$columns_fields, $properties, $disabled, $this->columns_prop…
140 …$this->importPropertiesInternal(self::$footnote_props, $properties, $disabled, $this->footnote_fie…
346 public static function createPageLayoutStyle(array $properties, array $disabled_props = NULL) { argument
348 $style_name = $properties ['style-name'];
351 $properties ['style-name'] = $style_name;
354properties ['width'].'cm" fo:page-height="'.$properties ['height'].'cm" style:num-format="1" style…
H A DODTParagraphStyle.php349 $valign = $properties ['vertical-align'];
361 $lang = $properties ['lang'];
362 $country = $properties ['country'];
368 $properties ['lang'] = trim($lang);
370 if (!empty($properties ['country'])) {
372 $properties ['country-asian'] = $properties ['country'];
375 $properties ['country-complex'] = $properties ['country'];
414 $style_name = $properties ['style-name'];
450 $properties = array();
451 $properties ['style-name'] = $style_name;
[all …]
H A DODTStyle.php29 protected $properties = array(); variable in ODTStyle
47 abstract public function importProperties($properties, $disabled); argument
78 …return (isset($this->properties [$property]['value']) ? $this->properties [$property]['value'] : N…
89 public function getPropertyInternal($property, $properties=NULL) { argument
90 if ( !isset($properties) ) {
91 return $this->properties [$property]['value'];
93 return $properties [$property]['value'];
104 return $this->properties [$property]['section'];
162 $this->properties [$property] = array ('odt_property' => $odt_property,
172 unset ($this->properties [$property]);
[all …]
H A DODTStyleStyle.php110 foreach ($this->properties as $property => $items) {
216 … protected function importPropertiesInternal(array $fields, $properties, $disabled, &$dest=NULL) { argument
217 parent::importPropertiesInternal($fields, $properties, $disabled, $dest);
225 foreach ($this->properties as $property => $items) {
232 $this->properties [$property] = NULL;
233 unset ($this->properties [$property]);
H A DODTTableCellStyle.php84 public function importProperties($properties, $disabled=array()) { argument
85 … $this->importPropertiesInternal(ODTStyleStyle::getStyleProperties (), $properties, $disabled);
86 $this->importPropertiesInternal(ODTTextStyle::getTextProperties (), $properties, $disabled);
87 …$this->importPropertiesInternal(ODTParagraphStyle::getParagraphProperties (), $properties, $disabl…
88 $this->importPropertiesInternal(self::$table_cell_fields, $properties, $disabled);
206 public static function createTableCellStyle(array $properties, array $disabled_props = NULL){ argument
208 $style_name = $properties ['style-name'];
211 $properties ['style-name'] = $style_name;
221 $object->importProperties($properties, $disabled_props);
H A DODTTableColumnStyle.php42 public function importProperties($properties, $disabled=array()) { argument
43 … $this->importPropertiesInternal(ODTStyleStyle::getStyleProperties (), $properties, $disabled);
44 $this->importPropertiesInternal(self::$table_column_fields, $properties, $disabled);
143 public static function createTableColumnStyle(array $properties, array $disabled_props = NULL){ argument
145 $style_name = $properties ['style-name'];
148 $properties ['style-name'] = $style_name;
152 $table_co_width = $properties ['width'];
156 $properties ['column-width'] = $table_co_width;
164 $properties ['rel-column-width'] = ($table_co_width*10).'*';
175 $object->importProperties($properties, $disabled_props);
H A DODTTableRowStyle.php61 public function importProperties($properties, $disabled=array()) { argument
62 … $this->importPropertiesInternal(ODTStyleStyle::getStyleProperties (), $properties, $disabled);
63 $this->importPropertiesInternal(self::$table_row_fields, $properties, $disabled);
160 * @param array $properties
164 public static function createTableRowStyle(array $properties, array $disabled_props = NULL){ argument
166 $style_name = $properties ['style-name'];
169 $properties ['style-name'] = $style_name;
179 $object->importProperties($properties, $disabled_props);
H A DODTTableStyle.php178 if (empty($properties ['align'])) {
179 $properties ['align'] = 'center';
181 if ($properties ['margin-left'] == '0') {
182 unset($properties ['margin-left']);
185 unset($properties ['margin-right']);
189 if (empty ($properties ['width'])) {
190 $properties ['width'] = '100%';
194 if ( $properties ['width'] [strlen($properties ['width'])-1] == '%' ) {
195 $properties ['rel-width'] = $properties ['width'];
196 unset($properties ['width']);
[all …]
H A DODTTextListStyle.php96 public function importProperties($properties, $disabled=array()) { argument
97 $this->importPropertiesInternal(ODTTextStyle::getTextProperties (), $properties, $disabled);
98 $this->importPropertiesInternal(self::$list_fields, $properties, $disabled);
157 $properties = array();
182 $properties ['list-style'] = $list_style_properties;
183 $properties ['list-level'] = $list_level_properties;
184 $properties ['label'] = $label_properties;
185 $properties ['text'] = $text_properties;
186 $style->list_level_styles [$level_number] = $properties;
214 foreach ($this->properties as $property => $items) {
[all …]
H A DODTTextOutlineStyle.php67 public function importProperties($properties, $disabled=array()) { argument
68 $this->importPropertiesInternal(ODTTextStyle::getTextProperties (), $properties, $disabled);
69 $this->importPropertiesInternal(self::$outline_fields, $properties, $disabled);
130 $properties = array();
131 $attrs += $style->importODTStyleInternal($text_fields, $level, $properties);
132 … $attrs += $style->importODTStyleInternal(self::$outline_fields, $level, $properties);
135 $level_number = $style->getPropertyInternal('level', $properties);
136 $style->outline_level_styles [$level_number] = $properties;
165 foreach ($this->properties as $property => $items) {
170 foreach ($this->outline_level_styles as $key => $properties) {
[all …]
H A DODTTextStyle.php248 $valign = $properties ['vertical-align'];
260 $lang = $properties ['lang'];
261 $country = $properties ['country'];
267 $properties ['lang'] = trim($lang);
269 if (!empty($properties ['country'])) {
271 $properties ['country-asian'] = $properties ['country'];
274 $properties ['country-complex'] = $properties ['country'];
328 $properties = array();
329 $properties ['style-name'] = $name;
331 $properties ['font-size'] = $size;
[all …]
H A DODTUnknownStyle.php58 public function importProperties($properties, $disabled=array()) { argument
159 …public static function createMultiColumnFrameStyle(array $properties, array $disabled_props = NULL… argument
164 $columns = $properties ['column-count'];
170 $rule_width = $properties ['column-rule-width'];
176 $rule_style = $properties ['column-rule-style'];
182 $rule_color = $properties ['column-rule-color'];
188 $gap = $properties ['column-gap'];
199 $style_name = $properties ['style-name'];
202 $properties ['style-name'] = $style_name;
/plugin/odt/
H A Dexample.css9 * Notice: this is pseudo CSS. It can include elements or properties
H A Dsyntax.php311 $properties = array();
315 if (empty($properties ['page'])) {
316 $properties ['anchor-type'] = 'page';
318 if (empty($properties ['wrap'])) {
319 $properties ['wrap'] = 'run-through';
342 if (empty($properties ['margin-top'])) {
343 $properties ['margin-top'] = '0cm';
352 $properties ['margin-left'] = '0cm';
355 $properties ['padding-top'] = '0cm';
366 if (empty($properties ['border-top'])) {
[all …]
H A DChangeLog.txt87 …Every function that only builds the ODT style from given properties has been moved to the new help…
118 …+ A function which takes the properties from an assoziative array (this is called by the other two)
129 The class support reading of CSS and DokuWiki replacement files. The CSS properties
/plugin/odt/helper/
H A Dstylefactory.php104 public static function createTextStyle(array $properties, array $disabled_props = NULL){ argument
105 return ODTTextStyle::createTextStyle($properties, $disabled_props);
125 public static function createParagraphStyle(array $properties, array $disabled_props = NULL){ argument
126 return ODTParagraphStyle::createParagraphStyle($properties, $disabled_props);
147 return ODTTableStyle::createTableTableStyle($properties, $disabled_props, $max_width_cm);
166 public static function createTableRowStyle(array $properties, array $disabled_props = NULL){ argument
167 return ODTTableRowStyle::createTableRowStyle($properties, $disabled_props);
187 return ODTTableCellStyle::createTableCellStyle($properties, $disabled_props);
210 return ODTTableColumnStyle::createTableColumnStyle($properties, $disabled_props);
232 return ODTUnknownStyle::createMultiColumnFrameStyle($properties, $disabled_props);
[all …]
/plugin/odt/renderer/
H A Dpage.php1076 $properties = array();
1077 $properties ['style-name'] = $style_name;
1080 if (empty($properties ['color'])) {
1081 $properties ['color'] = '#000000';
1143 $properties = array();
1721 function _odtSpanOpenUseProperties($properties){ argument
1756 function _odtParagraphOpenUseProperties($properties){ argument
1784 * @param array $properties
1888 function _odtTableRowOpenUseProperties ($properties){ argument
1922 function _odtOpenMultiColumnFrame ($properties) { argument
[all …]
/plugin/odt/ODT/
H A DODTDocument.php371 function spanOpenUseProperties($properties){ argument
447 function paragraphOpenUseProperties($properties){ argument
891 $properties ['width'] = $data ['width'];
892 $properties ['height'] = $data ['height'];
912 $properties = array();
914 $properties ['style-parent'] = $parent;
916 $properties ['page-number'] = 'auto';
1211 function tableAddColumnUseProperties ($properties){ argument
1269 function tableRowOpenUseProperties($properties){ argument
1327 function openTextBoxUseProperties ($properties) { argument
[all …]
H A DODTFrame.php76 $properties = array();
159 $properties = array();
239 $width = $properties ['width'];
271 if (!empty($properties ['x'])) {
272 $svgX = $properties ['x'];
274 if (!empty($properties ['left'])) {
275 $svgX = $properties ['left'];
277 if (!empty($properties ['y'])) {
278 $svgY = $properties ['y'];
280 if (!empty($properties ['top'])) {
[all …]
/plugin/keyboard/
H A Dsyntax.php185 $properties = array();
188 unset ($properties['font-family']);
195 $properties ['style-class'] = NULL;
196 $properties ['style-name'] = $style_name;
198 $renderer->createTextStyle($properties);
206 $properties = array();
208 if ($properties['font-family'] == 'inherit') {
209 unset ($properties['font-family']);
219 $properties ['style-class'] = NULL;
220 $properties ['style-name'] = $style_name;
[all …]
/plugin/prosemirror/
H A Dstyle.less173 div.image-properties {
/plugin/edittable/lib/
H A Dhandsontable.full.js17642 return function getMethodFromProperties(properties) {
17644 if (!properties) {
17646 …} else if ((0, _object.hasOwnProperty)(properties, methodName) && properties[methodName] !== void …
17648 return properties[methodName]; // method defined directly
17649 } else if ((0, _object.hasOwnProperty)(properties, 'type') && properties.type) {
17653 if (typeof properties.type != 'string') {
17656 type = (0, _cellTypes.getCellType)(properties.type);
17665 return getMethodFromProperties(Object.getPrototypeOf(properties));

12345678910>>...33