Source for file GraphicProperties.php
Documentation is available at GraphicProperties.php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
* Created on 03. Mar. 2007 by Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
* GraphicProperties class file.
* This class handles the '<style:graphic-properties>' tag.
* This is the basic class for all DOMDocuments used in this project.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* This software consists of voluntary contributions made by many individuals
* and is licensed under the GPL. For more information please see
* <http://opendocumentphp.org>.
* $Id: GraphicProperties.php 256 2007-08-01 14:16:10Z nmarkgraf $
* @package OpenDocumentPHP
* @subpackage styles_properties
* @author Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
* @copyright Copyright in 2006, 2007 by The OpenDocumentPHP Team
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License 2.0.
* @version SVN: $Id: GraphicProperties.php 256 2007-08-01 14:16:10Z nmarkgraf $
* @link http://opendocumentphp.org
* @since 0.5.2 - 04. Mar. 2007
require_once 'OpenDocumentPHP/util/ODPElement.php';
* GraphicProperties class.
* '<style:graphic-properties>'
* @package OpenDocumentPHP
* @subpackage style_properties
* @author Norman Markgraf (nmarkgraf(at)user.sourceforge.net)
* @copyright Copyright in 2006, 2007 by The OpenDocumentPHP Team
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License 2.0.
* @version Release: @package_version@
* @link http://opendocumentphp.org
* @since 0.5.2 - 04. Mar. 2007
* @since 0.5.3 - 01. Aug. 2007
parent::__construct('style:graphic-properties', '', self::STYLE);
* style:flow-with-text="false"
* @since 0.5.2 - 21. Mar. 2007
if (Validate::checkBoolean($value)) {
* draw:shadow-offset-x="0.3cm"
* @since 0.5.2 - 21. Mar. 2007
* draw:shadow-offset-y="0.3cm"
* @since 0.5.2 - 21. Mar. 2007
* draw:start-line-spacing-horizontal="0.283cm"
* @since 0.5.2 - 21. Mar. 2007
* draw:start-line-spacing-vertical="0.283cm"
* @since 0.5.2 - 21. Mar. 2007
* draw:end-line-spacing-horizontal="0.283cm"
* @since 0.5.2 - 21. Mar. 2007
* draw:end-line-spacing-vertical="0.283cm"
* @since 0.5.2 - 21. Mar. 2007
|