Blame src/lib/FillType.h

rpm-build 9243a4
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
rpm-build 9243a4
/*
rpm-build 9243a4
 * This file is part of the libmspub project.
rpm-build 9243a4
 *
rpm-build 9243a4
 * This Source Code Form is subject to the terms of the Mozilla Public
rpm-build 9243a4
 * License, v. 2.0. If a copy of the MPL was not distributed with this
rpm-build 9243a4
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
rpm-build 9243a4
 */
rpm-build 9243a4
rpm-build 9243a4
#ifndef INCLUDED_FILLTYPE_H
rpm-build 9243a4
#define INCLUDED_FILLTYPE_H
rpm-build 9243a4
rpm-build 9243a4
namespace libmspub
rpm-build 9243a4
{
rpm-build 9243a4
enum FillType
rpm-build 9243a4
{
rpm-build 9243a4
  SOLID = 0x00,
rpm-build 9243a4
  PATTERN = 0x01,
rpm-build 9243a4
  TEXTURE = 0x02,
rpm-build 9243a4
  BITMAP = 0x03,
rpm-build 9243a4
  SHADE = 0x04, // msofillShade       Shade from start to end points
rpm-build 9243a4
  SHADE_CENTER = 0x05,  // msofillShadeCenter Shade from bounding rectangle to end point
rpm-build 9243a4
  SHADE_SHAPE = 0x06, // msofillShadeShape  Shade from shape outline to end point
rpm-build 9243a4
  SHADE_SCALE = 0x07, // msofillShadeScale Similar to msofillShade, but the fillAngle
rpm-build 9243a4
  // is additionally scaled by the aspect ratio of
rpm-build 9243a4
  // the shape. If shape is square, it is the
rpm-build 9243a4
  // same as msofillShade
rpm-build 9243a4
  SHADE_TITLE = 0x08,
rpm-build 9243a4
  BACKGROUND = 0x09
rpm-build 9243a4
};
rpm-build 9243a4
} // libmspub
rpm-build 9243a4
#endif /* INCLUDED_FILLTYPE_H */
rpm-build 9243a4
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */