| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769 |
- // Permission is hereby , free of , to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without , including
- // without limitation the rights to , , , , ,
- // , , and/or sell copies of the , and to
- // permit persons to whom the Software is furnished to do , subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY ,
- // EXPRESS OR , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // , FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY , DAMAGES OR OTHER , WHETHER IN AN ACTION
- // OF , TORT OR , ARISING , OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- // Copyright (c) 2005 , Inc. (http://www.novell.com)
- //
- // Authors:
- // Peter Bartok ([email protected])
- //
- //
- // COMPLETE
- namespace System.Windows.Forms.RTF {
- internal enum Minor {
- Undefined,
- Skip,
- // Major.CharSet
- AnsiCharSet,
- MacCharSet,
- PcCharSet,
- PcaCharSet,
- // Major.Destinan
- FontTbl,
- FontAltName,
- EmbeddedFont,
- FontFile,
- FileTbl,
- FileInfo,
- ColorTbl,
- StyleSheet,
- KeyCode,
- RevisionTbl,
- Info,
- ITitle,
- ISubject,
- IAuthor,
- IOperator,
- IKeywords,
- IComment,
- IVersion,
- IDoccomm,
- IVerscomm,
- NextFile,
- Template,
- FNSep,
- FNContSep,
- FNContNotice,
- ENSep,
- ENContSep,
- ENContNotice,
- PageNumLevel,
- ParNumLevelStyle,
- Header,
- Footer,
- HeaderLeft,
- HeaderRight,
- HeaderFirst,
- FooterLeft,
- FooterRight,
- FooterFirst,
- ParNumText,
- ParNumbering,
- ParNumTextAfter,
- ParNumTextBefore,
- BookmarkStart,
- BookmarkEnd,
- Pict,
- Object,
- ObjClass,
- ObjName,
- ObjTime,
- ObjData,
- ObjAlias,
- ObjSection,
- ObjResult,
- ObjItem,
- ObjTopic,
- DrawObject,
- Footnote,
- AnnotRefStart,
- AnnotRefEnd,
- AnnotID,
- AnnotAuthor,
- Annotation,
- AnnotRef,
- AnnotTime,
- AnnotIcon,
- Field,
- FieldInst,
- FieldResult,
- DataField,
- Index,
- IndexText,
- IndexRange,
- TOC,
- NeXTGraphic,
- MaxDestination,
- // Major.FontFamily
- FFNil,
- FFRoman,
- FFSwiss,
- FFModern,
- FFScript,
- FFDecor,
- FFTech,
- FFBidirectional,
- // Major.ColorName
- Red,
- Green,
- Blue,
- // Major.SpecialChar
- IIntVersion,
- ICreateTime,
- IRevisionTime,
- IPrintTime,
- IBackupTime,
- IEditTime,
- IYear,
- IMonth,
- IDay,
- IHour,
- IMinute,
- ISecond,
- INPages,
- INWords,
- INChars,
- IIntID,
- CurHeadDate,
- CurHeadDateLong,
- CurHeadDateAbbrev,
- CurHeadTime,
- CurHeadPage,
- SectNum,
- CurFNote,
- CurAnnotRef,
- FNoteSep,
- FNoteCont,
- Cell,
- Row,
- Par,
- Sect,
- Page,
- Column,
- Line,
- SoftPage,
- SoftColumn,
- SoftLine,
- SoftLineHt,
- Tab,
- EmDash,
- EnDash,
- EmSpace,
- EnSpace,
- Bullet,
- LQuote,
- RQuote,
- LDblQuote,
- RDblQuote,
- Formula,
- NoBrkSpace,
- NoReqHyphen,
- NoBrkHyphen,
- OptDest,
- LTRMark,
- RTLMark,
- NoWidthJoiner,
- NoWidthNonJoiner,
- CurHeadPict,
- // Major.StyleAttr
- Additive,
- BasedOn,
- Next,
- // Major.DocAttr
- DefTab,
- HyphHotZone,
- HyphConsecLines,
- HyphCaps,
- HyphAuto,
- LineStart,
- FracWidth,
- MakeBackup,
- RTFDefault,
- PSOverlay,
- DocTemplate,
- DefLanguage,
- FENoteType,
- FNoteEndSect,
- FNoteEndDoc,
- FNoteText,
- FNoteBottom,
- ENoteEndSect,
- ENoteEndDoc,
- ENoteText,
- ENoteBottom,
- FNoteStart,
- ENoteStart,
- FNoteRestartPage,
- FNoteRestart,
- FNoteRestartCont,
- ENoteRestart,
- ENoteRestartCont,
- FNoteNumArabic,
- FNoteNumLLetter,
- FNoteNumULetter,
- FNoteNumLRoman,
- FNoteNumURoman,
- FNoteNumChicago,
- ENoteNumArabic,
- ENoteNumLLetter,
- ENoteNumULetter,
- ENoteNumLRoman,
- ENoteNumURoman,
- ENoteNumChicago,
- PaperWidth,
- PaperHeight,
- PaperSize,
- LeftMargin,
- RightMargin,
- TopMargin,
- BottomMargin,
- FacingPage,
- GutterWid,
- MirrorMargin,
- Landscape,
- PageStart,
- WidowCtrl,
- LinkStyles,
- NoAutoTabIndent,
- WrapSpaces,
- PrintColorsBlack,
- NoExtraSpaceRL,
- NoColumnBalance,
- CvtMailMergeQuote,
- SuppressTopSpace,
- SuppressPreParSpace,
- CombineTblBorders,
- TranspMetafiles,
- SwapBorders,
- ShowHardBreaks,
- FormProtected,
- AllProtected,
- FormShading,
- FormDisplay,
- PrintData,
- RevProtected,
- Revisions,
- RevDisplay,
- RevBar,
- AnnotProtected,
- RTLDoc,
- LTRDoc,
- // Major.SectAttr
- SectDef,
- ENoteHere,
- PrtBinFirst,
- PrtBin,
- SectStyleNum,
- NoBreak,
- ColBreak,
- PageBreak,
- EvenBreak,
- OddBreak,
- Columns,
- ColumnSpace,
- ColumnNumber,
- ColumnSpRight,
- ColumnWidth,
- ColumnLine,
- LineModulus,
- LineDist,
- LineStarts,
- LineRestart,
- LineRestartPg,
- LineCont,
- SectPageWid,
- SectPageHt,
- SectMarginLeft,
- SectMarginRight,
- SectMarginTop,
- SectMarginBottom,
- SectMarginGutter,
- SectLandscape,
- TitleSpecial,
- HeaderY,
- FooterY,
- PageStarts,
- PageCont,
- PageRestart,
- PageNumRight,
- PageNumTop,
- PageDecimal,
- PageURoman,
- PageLRoman,
- PageULetter,
- PageLLetter,
- PageNumHyphSep,
- PageNumSpaceSep,
- PageNumColonSep,
- PageNumEmdashSep,
- PageNumEndashSep,
- TopVAlign,
- BottomVAlign,
- CenterVAlign,
- JustVAlign,
- RTLSect,
- LTRSect,
- // Major.TblAttr
- RowDef,
- RowGapH,
- CellPos,
- MergeRngFirst,
- MergePrevious,
- RowLeft,
- RowRight,
- RowCenter,
- RowLeftEdge,
- RowHt,
- RowHeader,
- RowKeep,
- RTLRow,
- LTRRow,
- RowBordTop,
- RowBordLeft,
- RowBordBottom,
- RowBordRight,
- RowBordHoriz,
- RowBordVert,
- CellBordBottom,
- CellBordTop,
- CellBordLeft,
- CellBordRight,
- CellShading,
- CellBgPatH,
- CellBgPatV,
- CellFwdDiagBgPat,
- CellBwdDiagBgPat,
- CellHatchBgPat,
- CellDiagHatchBgPat,
- CellDarkBgPatH,
- CellDarkBgPatV,
- CellFwdDarkBgPat,
- CellBwdDarkBgPat,
- CellDarkHatchBgPat,
- CellDarkDiagHatchBgPat,
- CellBgPatLineColor,
- CellBgPatColor,
- // Major.ParAttr
- ParDef,
- StyleNum,
- Hyphenate,
- InTable,
- Keep,
- NoWidowControl,
- KeepNext,
- OutlineLevel,
- NoLineNum,
- PBBefore,
- SideBySide,
- QuadLeft,
- QuadRight,
- QuadJust,
- QuadCenter,
- FirstIndent,
- LeftIndent,
- RightIndent,
- SpaceBefore,
- SpaceAfter,
- SpaceBetween,
- SpaceMultiply,
- SubDocument,
- RTLPar,
- LTRPar,
- TabPos,
- TabLeft,
- TabRight,
- TabCenter,
- TabDecimal,
- TabBar,
- LeaderDot,
- LeaderHyphen,
- LeaderUnder,
- LeaderThick,
- LeaderEqual,
- ParLevel,
- ParBullet,
- ParSimple,
- ParNumCont,
- ParNumOnce,
- ParNumAcross,
- ParHangIndent,
- ParNumRestart,
- ParNumCardinal,
- ParNumDecimal,
- ParNumULetter,
- ParNumURoman,
- ParNumLLetter,
- ParNumLRoman,
- ParNumOrdinal,
- ParNumOrdinalText,
- ParNumBold,
- ParNumItalic,
- ParNumAllCaps,
- ParNumSmallCaps,
- ParNumUnder,
- ParNumDotUnder,
- ParNumDbUnder,
- ParNumNoUnder,
- ParNumWordUnder,
- ParNumStrikethru,
- ParNumForeColor,
- ParNumFont,
- ParNumFontSize,
- ParNumIndent,
- ParNumSpacing,
- ParNumInclPrev,
- ParNumCenter,
- ParNumLeft,
- ParNumRight,
- ParNumStartAt,
- BorderTop,
- BorderBottom,
- BorderLeft,
- BorderRight,
- BorderBetween,
- BorderBar,
- BorderBox,
- BorderSingle,
- BorderThick,
- BorderShadow,
- BorderDouble,
- BorderDot,
- BorderDash,
- BorderHair,
- BorderWidth,
- BorderColor,
- BorderSpace,
- Shading,
- BgPatH,
- BgPatV,
- FwdDiagBgPat,
- BwdDiagBgPat,
- HatchBgPat,
- DiagHatchBgPat,
- DarkBgPatH,
- DarkBgPatV,
- FwdDarkBgPat,
- BwdDarkBgPat,
- DarkHatchBgPat,
- DarkDiagHatchBgPat,
- BgPatLineColor,
- BgPatColor,
- // Major.CharAttr
- Plain,
- Bold,
- AllCaps,
- Deleted,
- SubScript,
- SubScrShrink,
- NoSuperSub,
- Expand,
- ExpandTwips,
- Kerning,
- FontNum,
- FontSize,
- Italic,
- Outline,
- Revised,
- RevAuthor,
- RevDTTM,
- SmallCaps,
- Shadow,
- StrikeThru,
- Underline,
- DotUnderline,
- DbUnderline,
- NoUnderline,
- WordUnderline,
- SuperScript,
- SuperScrShrink,
- Invisible,
- ForeColor,
- BackColor,
- RTLChar,
- LTRChar,
- CharStyleNum,
- CharCharSet,
- Language,
- Gray,
- // Major.PictAttr
- MacQD,
- PMMetafile,
- WinMetafile,
- DevIndBitmap,
- WinBitmap,
- PngBlip,
- PixelBits,
- BitmapPlanes,
- BitmapWid,
- PicWid,
- PicHt,
- PicGoalWid,
- PicGoalHt,
- PicScaleX,
- PicScaleY,
- PicScaled,
- PicCropTop,
- PicCropBottom,
- PicCropLeft,
- PicCropRight,
- PicMFHasBitmap,
- PicMFBitsPerPixel,
- PicBinary,
- // Major.BookmarkAttr
- BookmarkFirstCol,
- BookmarkLastCol ,
- // Major.NeXTGrAttr
- NeXTGWidth,
- NeXTGHeight,
- // Major.FieldAttr
- FieldDirty,
- FieldEdited,
- FieldLocked,
- FieldPrivate,
- FieldAlt,
- // Major.TOCAttr
- TOCType,
- TOCLevel,
- // Major.PosAttr
- AbsWid,
- AbsHt,
- RPosMargH,
- RPosPageH,
- RPosColH,
- PosX,
- PosNegX,
- PosXCenter,
- PosXInside,
- PosXOutSide,
- PosXRight,
- PosXLeft,
- RPosMargV,
- RPosPageV,
- RPosParaV,
- PosY,
- PosNegY,
- PosYInline,
- PosYTop,
- PosYCenter,
- PosYBottom,
- NoWrap,
- DistFromTextAll,
- DistFromTextX,
- DistFromTextY,
- TextDistY,
- DropCapLines,
- DropCapType,
- // Major.ObjAttr
- ObjEmb,
- ObjLink,
- ObjAutoLink,
- ObjSubscriber,
- ObjPublisher,
- ObjICEmb,
- ObjLinkSelf,
- ObjLock,
- ObjUpdate,
- ObjHt,
- ObjWid,
- ObjSetSize,
- ObjAlign,
- ObjTransposeY,
- ObjCropTop,
- ObjCropBottom,
- ObjCropLeft,
- ObjCropRight,
- ObjScaleX,
- ObjScaleY,
- ObjResRTF,
- ObjResPict,
- ObjResBitmap,
- ObjResText,
- ObjResMerge,
- ObjBookmarkPubObj,
- ObjPubAutoUpdate,
- // Major.FNoteAttr
- FNAlt,
- // Major.KeyCodeAttr
- AltKey,
- ShiftKey,
- ControlKey,
- FunctionKey,
- // Major.ACharAttr
- ACBold,
- ACAllCaps,
- ACForeColor,
- ACSubScript,
- ACExpand,
- ACFontNum,
- ACFontSize,
- ACItalic,
- ACLanguage,
- ACOutline,
- ACSmallCaps,
- ACShadow,
- ACStrikeThru,
- ACUnderline,
- ACDotUnderline,
- ACDbUnderline,
- ACNoUnderline,
- ACWordUnderline,
- ACSuperScript,
- // Major.FontAttr
- FontCharSet,
- FontPitch,
- FontCodePage,
- FTypeNil,
- FTypeTrueType,
- // Major.FileAttr
- FileNum,
- FileRelPath,
- FileOSNum,
- // Major.FileSource
- SrcMacintosh,
- SrcDOS,
- SrcNTFS,
- SrcHPFS,
- SrcNetwork,
- // Major.DrawAttr
- DrawLock,
- DrawPageRelX,
- DrawColumnRelX,
- DrawMarginRelX,
- DrawPageRelY,
- DrawColumnRelY,
- DrawMarginRelY,
- DrawHeight,
- DrawBeginGroup,
- DrawGroupCount,
- DrawEndGroup,
- DrawArc,
- DrawCallout,
- DrawEllipse,
- DrawLine,
- DrawPolygon,
- DrawPolyLine,
- DrawRect,
- DrawTextBox,
- DrawOffsetX,
- DrawSizeX,
- DrawOffsetY,
- DrawSizeY,
- COAngle,
- COAccentBar,
- COBestFit,
- COBorder,
- COAttachAbsDist,
- COAttachBottom,
- COAttachCenter,
- COAttachTop,
- COLength,
- CONegXQuadrant,
- CONegYQuadrant,
- COOffset,
- COAttachSmart,
- CODoubleLine,
- CORightAngle,
- COSingleLine,
- COTripleLine,
- DrawTextBoxMargin,
- DrawTextBoxText,
- DrawRoundRect,
- DrawPointX,
- DrawPointY,
- DrawPolyCount,
- DrawArcFlipX,
- DrawArcFlipY,
- DrawLineBlue,
- DrawLineGreen,
- DrawLineRed,
- DrawLinePalette,
- DrawLineDashDot,
- DrawLineDashDotDot,
- DrawLineDash,
- DrawLineDot,
- DrawLineGray,
- DrawLineHollow,
- DrawLineSolid,
- DrawLineWidth,
- DrawHollowEndArrow,
- DrawEndArrowLength,
- DrawSolidEndArrow,
- DrawEndArrowWidth,
- DrawHollowStartArrow,
- DrawStartArrowLength,
- DrawSolidStartArrow,
- DrawStartArrowWidth,
- DrawBgFillBlue,
- DrawBgFillGreen,
- DrawBgFillRed,
- DrawBgFillPalette,
- DrawBgFillGray,
- DrawFgFillBlue,
- DrawFgFillGreen,
- DrawFgFillRed,
- DrawFgFillPalette,
- DrawFgFillGray,
- DrawFillPatIndex,
- DrawShadow,
- DrawShadowXOffset,
- DrawShadowYOffset,
- // Major.IndexAttr
- IndexNumber,
- IndexBold,
- IndexItalic,
- // Major.Unicode
- UnicodeCharBytes,
- UnicodeChar,
- UnicodeDestination,
- UnicodeDualDestination,
- UnicodeAnsiCodepage
- }
- }
|