Changeset 56 for trunk/src/IDocument.h

Show
Ignore:
Timestamp:
04/14/06 06:50:46 (3 years ago)
Author:
jordi
Message:

Added the documentation comments for PageMode? and PageLayout?.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/IDocument.h

    r54 r56  
    6161         
    6262    /// 
    63     /// @brief Defines the document's page mode. 
     63    /// @brief Defines the document's page mode when opened. 
    6464    /// 
    6565    typedef enum  
    6666    { 
     67        /// Document outline visible. 
    6768        PageModeOutlines, 
     69        /// Thumbnail images visible. 
    6870        PageModeThumbs, 
     71        /// Full-screen mode, with no menu bar, window controls or any 
     72        /// other window visible. 
    6973        PageModeFullScreen, 
     74        /// Optional content group panel visible. 
    7075        PageModeOC, 
     76        /// Attachments panel visible. 
    7177        PageModeAttach, 
    72         /// Not set yet. 
     78        /// Not set and neither outline nor thumbnail images visible. 
    7379        PageModeUnset 
    7480    } PageMode; 
    7581 
    7682    /// 
    77     /// @brief Defines the document's page layout. 
     83    /// @brief Defines the document's page layout when opened. 
    7884    /// 
    7985    typedef enum 
    8086    { 
     87        /// Display one page at a time. 
    8188        PageLayoutSinglePage, 
     89        /// Display the pages on one column. 
    8290        PageLayoutOneColumn, 
     91        /// Display the pages in two columns, with odd-numbered pages 
     92        /// on the left. 
    8393        PageLayoutTwoColumnLeft, 
     94        /// Display the pages in two columns, with odd-numbered pages 
     95        /// on the right. 
    8496        PageLayoutTwoColumnRight, 
     97        /// Display the pages two at a time, with odd-numbered pages 
     98        /// on the left. 
    8599        PageLayoutTwoPageLeft, 
     100        /// Display the pages two at a time, with odd-numbered pages 
     101        /// on the right. 
    86102        PageLayoutTwoPageRight, 
    87         // Not set yet. 
     103        /// The page layout was not set yet. 
    88104        PageLayoutUnset 
    89105    } PageLayout;