Blame src/lib/MSPUBContentChunkType.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_MSPUBCHUNKTYPE_H
rpm-build 9243a4
#define INCLUDED_MSPUBCHUNKTYPE_H
rpm-build 9243a4
rpm-build 9243a4
namespace libmspub
rpm-build 9243a4
{
rpm-build 9243a4
enum MSPUBContentChunkType //Please fill this in and replace magic constants in MSPUBParser accordingly as you discover what a given chunk type means!
rpm-build 9243a4
{
rpm-build 9243a4
  UNKNOWN_CHUNK  = 0,
rpm-build 9243a4
  SHAPE      = 0x01,
rpm-build 9243a4
  ALTSHAPE   = 0x20,
rpm-build 9243a4
  DOCUMENT   = 0x44,
rpm-build 9243a4
  PAGE       = 0x43,
rpm-build 9243a4
  PALETTE    = 0x5C,
rpm-build 9243a4
  BORDER_ART = 0x46,
rpm-build 9243a4
  GROUP      = 0x30,
rpm-build 9243a4
  LOGO       = 0x31,
rpm-build 9243a4
  TABLE      = 0x10,
rpm-build 9243a4
  CELLS      = 0x63,
rpm-build 9243a4
  FONT       = 0x6C,
rpm-build 9243a4
  IMAGE_2K, //these don't exist in Pub 2k3 so their value in the enum is not used.
rpm-build 9243a4
  IMAGE_2K_DATA
rpm-build 9243a4
};
rpm-build 9243a4
} // namespace libmspub
rpm-build 9243a4
rpm-build 9243a4
#endif /* INCLUDED_MSPUBCHUNKTYPE_H */
rpm-build 9243a4
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */