Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

85 lines
1.7 KiB
C++

//========================================================================
//
// Outline.h
//
// Copyright 2002-2013 Glyph & Cog, LLC
//
//========================================================================
#ifndef OUTLINE_H
#define OUTLINE_H
#include <aconf.h>
#ifdef USE_GCC_PRAGMAS
#pragma interface
#endif
#include "Object.h"
#include "CharTypes.h"
class GString;
class GList;
class XRef;
class LinkAction;
class TextString;
//------------------------------------------------------------------------
class Outline {
public:
Outline(Object *outlineObj, XRef *xref);
~Outline();
GList *getItems() { return items; }
private:
GList *items; // NULL if document has no outline
// [OutlineItem]
};
//------------------------------------------------------------------------
class OutlineItem {
public:
OutlineItem(Object *itemRefA, Dict *dict, OutlineItem *parentA, XRef *xrefA);
~OutlineItem();
static GList *readItemList(Object *firstItemRef, Object *lastItemRef,
OutlineItem *parentA, XRef *xrefA);
void open();
void close();
Unicode *getTitle();
int getTitleLength();
TextString *getTitleTextString() { return title; }
LinkAction *getAction() { return action; }
GBool isOpen() { return startsOpen; }
GBool hasKids() { return firstRef.isRef(); }
GList *getKids() { return kids; }
OutlineItem *getParent() { return parent; }
private:
friend class PDFDoc;
XRef *xref;
TextString *title; // may be NULL
LinkAction *action;
Object itemRef;
Object firstRef;
Object lastRef;
Object nextRef;
GBool startsOpen;
int pageNum; // page number (used by
// PDFDoc::getOutlineTargetPage)
GList *kids; // NULL unless this item is open [OutlineItem]
OutlineItem *parent;
};
#endif