Changeset 58 for trunk/src/DocumentOutline.h
- Timestamp:
- 04/14/06 10:13:02 (3 years ago)
- Files:
-
- 1 moved
-
trunk/src/DocumentOutline.h (moved) (moved from trunk/src/DocumentIndex.h) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/DocumentOutline.h
r49 r58 16 16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 17 18 #if !defined (__DOCUMENT_ INDEX_H__)19 #define __DOCUMENT_ INDEX_H__18 #if !defined (__DOCUMENT_OUTLINE_H__) 19 #define __DOCUMENT_OUTLINE_H__ 20 20 21 21 namespace ePDFView 22 22 { 23 23 /// 24 /// @class Document Index25 /// @brief Stores the document's index name, actionand its children.24 /// @class DocumentOutline 25 /// @brief Stores the document's outline title, page num. and its children. 26 26 /// 27 27 /// Some documents have an index with them. This index can be used to … … 29 29 /// contents. 30 30 /// 31 /// Each node contains a name, an action an possibly children nodes. The32 /// only node that have an empty name and no action is the top level33 /// DocumentIndex, that is only used as a container for all other34 /// DocumentIndexobjects.31 /// Each node contains a title, a destination page an possibly children 32 /// nodes. The only node that have an empty name and a 0 page number is the 33 /// top level DocumentOutline, that is only used as a container for all 34 /// other DocumentOutline objects. 35 35 /// 36 class Document Index36 class DocumentOutline 37 37 { 38 38 public: 39 Document Index(void);40 ~Document Index(void);39 DocumentOutline (void); 40 ~DocumentOutline (void); 41 41 42 gint getDestinationPage (void); 43 DocumentOutline *getFirstChild (void); 42 44 gint getNumChildren (void); 45 const gchar *getTitle (void); 43 46 }; 44 47 } 45 48 46 #endif // !__DOCUMENT_ INDEX_H__49 #endif // !__DOCUMENT_OUTLINE_H__
