Return-Path: X-Original-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ooo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05A4ED0C9 for ; Wed, 10 Oct 2012 21:15:52 +0000 (UTC) Received: (qmail 85400 invoked by uid 500); 10 Oct 2012 21:15:51 -0000 Delivered-To: apmail-incubator-ooo-commits-archive@incubator.apache.org Received: (qmail 85357 invoked by uid 500); 10 Oct 2012 21:15:51 -0000 Mailing-List: contact ooo-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ooo-dev@incubator.apache.org Delivered-To: mailing list ooo-commits@incubator.apache.org Received: (qmail 85285 invoked by uid 99); 10 Oct 2012 21:15:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Oct 2012 21:15:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Oct 2012 21:15:47 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A26C32388C52; Wed, 10 Oct 2012 21:14:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1396797 [18/25] - in /incubator/ooo/branches/buildsys/main: ./ basebmp/ basebmp/prj/ basegfx/ basegfx/inc/basegfx/ basegfx/prj/ canvas/ canvas/inc/canvas/ canvas/prj/ cppcanvas/ cppcanvas/inc/cppcanvas/ cppcanvas/prj/ dbaccess/ dbaccess/in... Date: Wed, 10 Oct 2012 21:13:21 -0000 To: ooo-commits@incubator.apache.org From: arist@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121010211417.A26C32388C52@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOLEVerb.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOLEVerb.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOLEVerb.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOLEVerb.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdOLEVerb { + const long wdOLEVerbDiscardUndoState = -6; + const long wdOLEVerbHide = -3; + const long wdOLEVerbInPlaceActivate = -5; + const long wdOLEVerbOpen = -2; + const long wdOLEVerbPrimary = 0; + const long wdOLEVerbShow = -1; + const long wdOLEVerbUIActivate = -4; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOpenFormat.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOpenFormat.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOpenFormat.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOpenFormat.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,14 @@ +module ooo { module vba { module word { + constants WdOpenFormat { + const long wdOpenFormatAllWord = 6; + const long wdOpenFormatAuto = 0; + const long wdOpenFormatDocument = 1; + const long wdOpenFormatEncodedText = 5; + const long wdOpenFormatRTF = 3; + const long wdOpenFormatTemplate = 2; + const long wdOpenFormatText = 4; + const long wdOpenFormatUnicodeText = 5; + const long wdOpenFormatWebPages = 7; + const long wdOpenFormatXML = 8; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrganizerObject.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrganizerObject.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrganizerObject.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrganizerObject.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdOrganizerObject { + const long wdOrganizerObjectAutoText = 1; + const long wdOrganizerObjectCommandBars = 2; + const long wdOrganizerObjectProjectItems = 3; + const long wdOrganizerObjectStyles = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrientation.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrientation.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrientation.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOrientation.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdOrientation { + const long wdOrientLandscape = 1; + const long wdOrientPortrait = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOriginalFormat.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOriginalFormat.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOriginalFormat.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOriginalFormat.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdOriginalFormat { + const long wdOriginalDocumentFormat = 1; + const long wdPromptUser = 2; + const long wdWordDocument = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOutlineLevel.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOutlineLevel.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOutlineLevel.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdOutlineLevel.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,14 @@ +module ooo { module vba { module word { + constants WdOutlineLevel { + const long wdOutlineLevel1 = 1; + const long wdOutlineLevel2 = 2; + const long wdOutlineLevel3 = 3; + const long wdOutlineLevel4 = 4; + const long wdOutlineLevel5 = 5; + const long wdOutlineLevel6 = 6; + const long wdOutlineLevel7 = 7; + const long wdOutlineLevel8 = 8; + const long wdOutlineLevel9 = 9; + const long wdOutlineLevelBodyText = 10; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageBorderArt.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageBorderArt.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageBorderArt.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageBorderArt.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,168 @@ +module ooo { module vba { module word { + constants WdPageBorderArt { + const long wdArtApples = 1; + const long wdArtArchedScallops = 97; + const long wdArtBabyPacifier = 70; + const long wdArtBabyRattle = 71; + const long wdArtBalloons3Colors = 11; + const long wdArtBalloonsHotAir = 12; + const long wdArtBasicBlackDashes = 155; + const long wdArtBasicBlackDots = 156; + const long wdArtBasicBlackSquares = 154; + const long wdArtBasicThinLines = 151; + const long wdArtBasicWhiteDashes = 152; + const long wdArtBasicWhiteDots = 147; + const long wdArtBasicWhiteSquares = 153; + const long wdArtBasicWideInline = 150; + const long wdArtBasicWideMidline = 148; + const long wdArtBasicWideOutline = 149; + const long wdArtBats = 37; + const long wdArtBirds = 102; + const long wdArtBirdsFlight = 35; + const long wdArtCabins = 72; + const long wdArtCakeSlice = 3; + const long wdArtCandyCorn = 4; + const long wdArtCelticKnotwork = 99; + const long wdArtCertificateBanner = 158; + const long wdArtChainLink = 128; + const long wdArtChampagneBottle = 6; + const long wdArtCheckedBarBlack = 145; + const long wdArtCheckedBarColor = 61; + const long wdArtCheckered = 144; + const long wdArtChristmasTree = 8; + const long wdArtCirclesLines = 91; + const long wdArtCirclesRectangles = 140; + const long wdArtClassicalWave = 56; + const long wdArtClocks = 27; + const long wdArtCompass = 54; + const long wdArtConfetti = 31; + const long wdArtConfettiGrays = 115; + const long wdArtConfettiOutline = 116; + const long wdArtConfettiStreamers = 14; + const long wdArtConfettiWhite = 117; + const long wdArtCornerTriangles = 141; + const long wdArtCouponCutoutDashes = 163; + const long wdArtCouponCutoutDots = 164; + const long wdArtCrazyMaze = 100; + const long wdArtCreaturesButterfly = 32; + const long wdArtCreaturesFish = 34; + const long wdArtCreaturesInsects = 142; + const long wdArtCreaturesLadyBug = 33; + const long wdArtCrossStitch = 138; + const long wdArtCup = 67; + const long wdArtDecoArch = 89; + const long wdArtDecoArchColor = 50; + const long wdArtDecoBlocks = 90; + const long wdArtDiamondsGray = 88; + const long wdArtDoubleD = 55; + const long wdArtDoubleDiamonds = 127; + const long wdArtEarth1 = 22; + const long wdArtEarth2 = 21; + const long wdArtEclipsingSquares1 = 101; + const long wdArtEclipsingSquares2 = 86; + const long wdArtEggsBlack = 66; + const long wdArtFans = 51; + const long wdArtFilm = 52; + const long wdArtFirecrackers = 28; + const long wdArtFlowersBlockPrint = 49; + const long wdArtFlowersDaisies = 48; + const long wdArtFlowersModern1 = 45; + const long wdArtFlowersModern2 = 44; + const long wdArtFlowersPansy = 43; + const long wdArtFlowersRedRose = 39; + const long wdArtFlowersRoses = 38; + const long wdArtFlowersTeacup = 103; + const long wdArtFlowersTiny = 42; + const long wdArtGems = 139; + const long wdArtGingerbreadMan = 69; + const long wdArtGradient = 122; + const long wdArtHandmade1 = 159; + const long wdArtHandmade2 = 160; + const long wdArtHeartBalloon = 16; + const long wdArtHeartGray = 68; + const long wdArtHearts = 15; + const long wdArtHeebieJeebies = 120; + const long wdArtHolly = 41; + const long wdArtHouseFunky = 73; + const long wdArtHypnotic = 87; + const long wdArtIceCreamCones = 5; + const long wdArtLightBulb = 121; + const long wdArtLightning1 = 53; + const long wdArtLightning2 = 119; + const long wdArtMapleLeaf = 81; + const long wdArtMapleMuffins = 2; + const long wdArtMapPins = 30; + const long wdArtMarquee = 146; + const long wdArtMarqueeToothed = 131; + const long wdArtMoons = 125; + const long wdArtMosaic = 118; + const long wdArtMusicNotes = 79; + const long wdArtNorthwest = 104; + const long wdArtOvals = 126; + const long wdArtPackages = 26; + const long wdArtPalmsBlack = 80; + const long wdArtPalmsColor = 10; + const long wdArtPaperClips = 82; + const long wdArtPapyrus = 92; + const long wdArtPartyFavor = 13; + const long wdArtPartyGlass = 7; + const long wdArtPencils = 25; + const long wdArtPeople = 84; + const long wdArtPeopleHats = 23; + const long wdArtPeopleWaving = 85; + const long wdArtPoinsettias = 40; + const long wdArtPostageStamp = 135; + const long wdArtPumpkin1 = 65; + const long wdArtPushPinNote1 = 63; + const long wdArtPushPinNote2 = 64; + const long wdArtPyramids = 113; + const long wdArtPyramidsAbove = 114; + const long wdArtQuadrants = 60; + const long wdArtRings = 29; + const long wdArtSafari = 98; + const long wdArtSawtooth = 133; + const long wdArtSawtoothGray = 134; + const long wdArtScaredCat = 36; + const long wdArtSeattle = 78; + const long wdArtShadowedSquares = 57; + const long wdArtSharksTeeth = 132; + const long wdArtShorebirdTracks = 83; + const long wdArtSkyrocket = 77; + const long wdArtSnowflakeFancy = 76; + const long wdArtSnowflakes = 75; + const long wdArtSombrero = 24; + const long wdArtSouthwest = 105; + const long wdArtStars = 19; + const long wdArtStars3D = 17; + const long wdArtStarsBlack = 74; + const long wdArtStarsShadowed = 18; + const long wdArtStarsTop = 157; + const long wdArtSun = 20; + const long wdArtSwirligig = 62; + const long wdArtTornPaper = 161; + const long wdArtTornPaperBlack = 162; + const long wdArtTrees = 9; + const long wdArtTriangleParty = 123; + const long wdArtTriangles = 129; + const long wdArtTribal1 = 130; + const long wdArtTribal2 = 109; + const long wdArtTribal3 = 108; + const long wdArtTribal4 = 107; + const long wdArtTribal5 = 110; + const long wdArtTribal6 = 106; + const long wdArtTwistedLines1 = 58; + const long wdArtTwistedLines2 = 124; + const long wdArtVine = 47; + const long wdArtWaveline = 59; + const long wdArtWeavingAngles = 96; + const long wdArtWeavingBraid = 94; + const long wdArtWeavingRibbon = 95; + const long wdArtWeavingStrips = 136; + const long wdArtWhiteFlowers = 46; + const long wdArtWoodwork = 93; + const long wdArtXIllusions = 111; + const long wdArtZanyTriangles = 112; + const long wdArtZigZag = 137; + const long wdArtZigZagStitch = 143; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageFit.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageFit.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageFit.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageFit.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdPageFit { + const long wdPageFitBestFit = 2; + const long wdPageFitFullPage = 1; + const long wdPageFitNone = 0; + const long wdPageFitTextFit = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberAlignment.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberAlignment.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberAlignment.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberAlignment.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdPageNumberAlignment { + const long wdAlignPageNumberCenter = 1; + const long wdAlignPageNumberInside = 3; + const long wdAlignPageNumberLeft = 0; + const long wdAlignPageNumberOutside = 4; + const long wdAlignPageNumberRight = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyle.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyle.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyle.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyle.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,33 @@ +module ooo { module vba { module word { + constants WdPageNumberStyle { + const long wdPageNumberStyleArabic = 0; + const long wdPageNumberStyleArabicFullWidth = 14; + const long wdPageNumberStyleArabicLetter1 = 46; + const long wdPageNumberStyleArabicLetter2 = 48; + const long wdPageNumberStyleHanjaRead = 41; + const long wdPageNumberStyleHanjaReadDigit = 42; + const long wdPageNumberStyleHebrewLetter1 = 45; + const long wdPageNumberStyleHebrewLetter2 = 47; + const long wdPageNumberStyleHindiArabic = 51; + const long wdPageNumberStyleHindiCardinalText = 52; + const long wdPageNumberStyleHindiLetter1 = 49; + const long wdPageNumberStyleHindiLetter2 = 50; + const long wdPageNumberStyleKanji = 10; + const long wdPageNumberStyleKanjiDigit = 11; + const long wdPageNumberStyleKanjiTraditional = 16; + const long wdPageNumberStyleLowercaseLetter = 4; + const long wdPageNumberStyleLowercaseRoman = 2; + const long wdPageNumberStyleNumberInCircle = 18; + const long wdPageNumberStyleNumberInDash = 57; + const long wdPageNumberStyleSimpChinNum1 = 37; + const long wdPageNumberStyleSimpChinNum2 = 38; + const long wdPageNumberStyleThaiArabic = 54; + const long wdPageNumberStyleThaiCardinalText = 55; + const long wdPageNumberStyleThaiLetter = 53; + const long wdPageNumberStyleTradChinNum1 = 33; + const long wdPageNumberStyleTradChinNum2 = 34; + const long wdPageNumberStyleUppercaseLetter = 3; + const long wdPageNumberStyleUppercaseRoman = 1; + const long wdPageNumberStyleVietCardinalText = 56; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyleHID.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyleHID.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyleHID.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPageNumberStyleHID.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,5 @@ +module ooo { module vba { module word { + constants WdPageNumberStyleHID { + const long emptyenum = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperSize.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperSize.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperSize.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperSize.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,46 @@ +module ooo { module vba { module word { + constants WdPaperSize { + const long wdPaper10x14 = 0; + const long wdPaper11x17 = 1; + const long wdPaperA3 = 6; + const long wdPaperA4 = 7; + const long wdPaperA4Small = 8; + const long wdPaperA5 = 9; + const long wdPaperB4 = 10; + const long wdPaperB5 = 11; + const long wdPaperCSheet = 12; + const long wdPaperCustom = 41; + const long wdPaperDSheet = 13; + const long wdPaperEnvelope10 = 25; + const long wdPaperEnvelope11 = 26; + const long wdPaperEnvelope12 = 27; + const long wdPaperEnvelope14 = 28; + const long wdPaperEnvelope9 = 24; + const long wdPaperEnvelopeB4 = 29; + const long wdPaperEnvelopeB5 = 30; + const long wdPaperEnvelopeB6 = 31; + const long wdPaperEnvelopeC3 = 32; + const long wdPaperEnvelopeC4 = 33; + const long wdPaperEnvelopeC5 = 34; + const long wdPaperEnvelopeC6 = 35; + const long wdPaperEnvelopeC65 = 36; + const long wdPaperEnvelopeDL = 37; + const long wdPaperEnvelopeItaly = 38; + const long wdPaperEnvelopeMonarch = 39; + const long wdPaperEnvelopePersonal = 40; + const long wdPaperESheet = 14; + const long wdPaperExecutive = 5; + const long wdPaperFanfoldLegalGerman = 15; + const long wdPaperFanfoldStdGerman = 16; + const long wdPaperFanfoldUS = 17; + const long wdPaperFolio = 18; + const long wdPaperLedger = 19; + const long wdPaperLegal = 4; + const long wdPaperLetter = 2; + const long wdPaperLetterSmall = 3; + const long wdPaperNote = 20; + const long wdPaperQuarto = 21; + const long wdPaperStatement = 22; + const long wdPaperTabloid = 23; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperTray.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperTray.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperTray.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPaperTray.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,19 @@ +module ooo { module vba { module word { + constants WdPaperTray { + const long wdPrinterAutomaticSheetFeed = 7; + const long wdPrinterDefaultBin = 0; + const long wdPrinterEnvelopeFeed = 5; + const long wdPrinterFormSource = 15; + const long wdPrinterLargeCapacityBin = 11; + const long wdPrinterLargeFormatBin = 10; + const long wdPrinterLowerBin = 2; + const long wdPrinterManualEnvelopeFeed = 6; + const long wdPrinterManualFeed = 4; + const long wdPrinterMiddleBin = 3; + const long wdPrinterOnlyBin = 1; + const long wdPrinterPaperCassette = 14; + const long wdPrinterSmallFormatBin = 9; + const long wdPrinterTractorFeed = 8; + const long wdPrinterUpperBin = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignment.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignment.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignment.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignment.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,13 @@ +module ooo { module vba { module word { + constants WdParagraphAlignment { + const long wdAlignParagraphCenter = 1; + const long wdAlignParagraphDistribute = 4; + const long wdAlignParagraphJustify = 3; + const long wdAlignParagraphJustifyHi = 7; + const long wdAlignParagraphJustifyLow = 8; + const long wdAlignParagraphJustifyMed = 5; + const long wdAlignParagraphLeft = 0; + const long wdAlignParagraphRight = 2; + const long wdAlignParagraphThaiJustify = 9; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignmentHID.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignmentHID.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignmentHID.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdParagraphAlignmentHID.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,5 @@ +module ooo { module vba { module word { + constants WdParagraphAlignmentHID { + const long emptyenum = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,14 @@ +module ooo { module vba { module word { + constants WdPartOfSpeech { + const long wdAdjective = 0; + const long wdAdverb = 2; + const long wdConjunction = 5; + const long wdIdiom = 8; + const long wdInterjection = 7; + const long wdNoun = 1; + const long wdOther = 9; + const long wdPreposition = 6; + const long wdPronoun = 4; + const long wdVerb = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPasteDataType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPasteDataType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPasteDataType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPasteDataType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,14 @@ +module ooo { module vba { module word { + constants WdPasteDataType { + const long wdPasteBitmap = 4; + const long wdPasteDeviceIndependentBitmap = 5; + const long wdPasteEnhancedMetafile = 9; + const long wdPasteHTML = 10; + const long wdPasteHyperlink = 7; + const long wdPasteMetafilePicture = 3; + const long wdPasteOLEObject = 0; + const long wdPasteRTF = 1; + const long wdPasteShape = 8; + const long wdPasteText = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPhoneticGuideAlignmentType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPhoneticGuideAlignmentType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPhoneticGuideAlignmentType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPhoneticGuideAlignmentType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,10 @@ +module ooo { module vba { module word { + constants WdPhoneticGuideAlignmentType { + const long wdPhoneticGuideAlignmentCenter = 0; + const long wdPhoneticGuideAlignmentLeft = 3; + const long wdPhoneticGuideAlignmentOneTwoOne = 2; + const long wdPhoneticGuideAlignmentRight = 4; + const long wdPhoneticGuideAlignmentRightVertical = 5; + const long wdPhoneticGuideAlignmentZeroOneZero = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPictureLinkType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPictureLinkType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPictureLinkType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPictureLinkType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdPictureLinkType { + const long wdLinkDataInDoc = 1; + const long wdLinkDataOnDisk = 2; + const long wdLinkNone = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPreferredWidthType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPreferredWidthType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPreferredWidthType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPreferredWidthType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdPreferredWidthType { + const long wdPreferredWidthAuto = 1; + const long wdPreferredWidthPercent = 2; + const long wdPreferredWidthPoints = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutItem.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutItem.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutItem.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutItem.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,13 @@ +module ooo { module vba { module word { + constants WdPrintOutItem { + const long wdPrintAutoTextEntries = 4; + const long wdPrintComments = 2; + const long wdPrintDocumentContent = 0; + const long wdPrintDocumentWithMarkup = 7; + const long wdPrintEnvelope = 6; + const long wdPrintKeyAssignments = 5; + const long wdPrintMarkup = 2; + const long wdPrintProperties = 1; + const long wdPrintStyles = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutPages.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutPages.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutPages.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutPages.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdPrintOutPages { + const long wdPrintAllPages = 0; + const long wdPrintEvenPagesOnly = 2; + const long wdPrintOddPagesOnly = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutRange.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutRange.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutRange.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdPrintOutRange.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdPrintOutRange { + const long wdPrintAllDocument = 0; + const long wdPrintCurrentPage = 2; + const long wdPrintFromTo = 3; + const long wdPrintRangeOfPages = 4; + const long wdPrintSelection = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProofreadingErrorType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProofreadingErrorType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProofreadingErrorType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProofreadingErrorType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdProofreadingErrorType { + const long wdGrammaticalError = 1; + const long wdSpellingError = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProtectionType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProtectionType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProtectionType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdProtectionType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdProtectionType { + const long wdAllowOnlyComments = 1; + const long wdAllowOnlyFormFields = 2; + const long wdAllowOnlyReading = 3; + const long wdAllowOnlyRevisions = 0; + const long wdNoProtection = -1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReadingOrder.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReadingOrder.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReadingOrder.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReadingOrder.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdReadingOrder { + const long wdReadingOrderLtr = 1; + const long wdReadingOrderRtl = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRecoveryType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRecoveryType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRecoveryType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRecoveryType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,21 @@ +module ooo { module vba { module word { + constants WdRecoveryType { + const long wdChart = 14; + const long wdChartLinked = 15; + const long wdChartPicture = 13; + const long wdFormatOriginalFormatting = 16; + const long wdFormatPlainText = 22; + const long wdFormatSurroundingFormattingWithEmphasis = 20; + const long wdListCombineWithExistingList = 24; + const long wdListContinueNumbering = 7; + const long wdListDontMerge = 25; + const long wdListRestartNumbering = 8; + const long wdPasteDefault = 0; + const long wdSingleCellTable = 6; + const long wdSingleCellText = 5; + const long wdTableAppendTable = 10; + const long wdTableInsertAsRows = 11; + const long wdTableOriginalFormatting = 12; + const long wdTableOverwriteCells = 23; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRectangleType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRectangleType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRectangleType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRectangleType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,12 @@ +module ooo { module vba { module word { + constants WdRectangleType { + const long wdLineBetweenColumnRectangle = 5; + const long wdMarkupRectangle = 2; + const long wdMarkupRectangleButton = 3; + const long wdPageBorderRectangle = 4; + const long wdSelection = 6; + const long wdShapeRectangle = 1; + const long wdSystem = 7; + const long wdTextRectangle = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceKind.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceKind.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceKind.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceKind.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,17 @@ +module ooo { module vba { module word { + constants WdReferenceKind { + const long wdContentText = -1; + const long wdEndnoteNumber = 6; + const long wdEndnoteNumberFormatted = 17; + const long wdEntireCaption = 2; + const long wdFootnoteNumber = 5; + const long wdFootnoteNumberFormatted = 16; + const long wdNumberFullContext = -4; + const long wdNumberNoContext = -3; + const long wdNumberRelativeContext = -2; + const long wdOnlyCaptionText = 4; + const long wdOnlyLabelAndNumber = 3; + const long wdPageNumber = 7; + const long wdPosition = 15; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReferenceType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdReferenceType { + const long wdRefTypeBookmark = 2; + const long wdRefTypeEndnote = 4; + const long wdRefTypeFootnote = 3; + const long wdRefTypeHeading = 1; + const long wdRefTypeNumberedItem = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeHorizontalPosition.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeHorizontalPosition.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeHorizontalPosition.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeHorizontalPosition.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdRelativeHorizontalPosition { + const long wdRelativeHorizontalPositionCharacter = 3; + const long wdRelativeHorizontalPositionColumn = 2; + const long wdRelativeHorizontalPositionMargin = 0; + const long wdRelativeHorizontalPositionPage = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeVerticalPosition.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeVerticalPosition.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeVerticalPosition.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelativeVerticalPosition.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdRelativeVerticalPosition { + const long wdRelativeVerticalPositionLine = 3; + const long wdRelativeVerticalPositionMargin = 0; + const long wdRelativeVerticalPositionPage = 1; + const long wdRelativeVerticalPositionParagraph = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelocate.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelocate.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelocate.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRelocate.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdRelocate { + const long wdRelocateDown = 1; + const long wdRelocateUp = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReplace.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReplace.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReplace.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdReplace.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdReplace { + const long wdReplaceAll = 2; + const long wdReplaceNone = 0; + const long wdReplaceOne = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedLinesMark.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedLinesMark.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedLinesMark.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedLinesMark.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdRevisedLinesMark { + const long wdRevisedLinesMarkLeftBorder = 1; + const long wdRevisedLinesMarkNone = 0; + const long wdRevisedLinesMarkOutsideBorder = 3; + const long wdRevisedLinesMarkRightBorder = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedPropertiesMark.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedPropertiesMark.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedPropertiesMark.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisedPropertiesMark.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdRevisedPropertiesMark { + const long wdRevisedPropertiesMarkBold = 1; + const long wdRevisedPropertiesMarkColorOnly = 5; + const long wdRevisedPropertiesMarkDoubleUnderline = 4; + const long wdRevisedPropertiesMarkItalic = 2; + const long wdRevisedPropertiesMarkNone = 0; + const long wdRevisedPropertiesMarkStrikeThrough = 6; + const long wdRevisedPropertiesMarkUnderline = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,18 @@ +module ooo { module vba { module word { + constants WdRevisionType { + const long wdNoRevision = 0; + const long wdRevisionConflict = 7; + const long wdRevisionDelete = 2; + const long wdRevisionDisplayField = 5; + const long wdRevisionInsert = 1; + const long wdRevisionParagraphNumber = 4; + const long wdRevisionParagraphProperty = 10; + const long wdRevisionProperty = 3; + const long wdRevisionReconcile = 6; + const long wdRevisionReplace = 9; + const long wdRevisionSectionProperty = 12; + const long wdRevisionStyle = 8; + const long wdRevisionStyleDefinition = 13; + const long wdRevisionTableProperty = 11; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonMargin.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonMargin.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonMargin.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonMargin.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdRevisionsBalloonMargin { + const long wdLeftMargin = 0; + const long wdRightMargin = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonPrintOrientation.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonPrintOrientation.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonPrintOrientation.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonPrintOrientation.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRevisionsBalloonPrintOrientation { + const long wdBalloonPrintOrientationAuto = 0; + const long wdBalloonPrintOrientationForceLandscape = 2; + const long wdBalloonPrintOrientationPreserve = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonWidthType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonWidthType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonWidthType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsBalloonWidthType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdRevisionsBalloonWidthType { + const long wdBalloonWidthPercent = 0; + const long wdBalloonWidthPoints = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsMode.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsMode.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsMode.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsMode.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRevisionsMode { + const long wdBalloonRevisions = 0; + const long wdInLineRevisions = 1; + const long wdMixedRevisions = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsView.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsView.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsView.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsView.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdRevisionsView { + const long wdRevisionsViewFinal = 0; + const long wdRevisionsViewOriginal = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsWrap.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsWrap.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsWrap.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRevisionsWrap.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRevisionsWrap { + const long wdWrapAlways = 1; + const long wdWrapAsk = 2; + const long wdWrapNever = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipDelivery.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipDelivery.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipDelivery.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipDelivery.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdRoutingSlipDelivery { + const long wdAllAtOnce = 1; + const long wdOneAfterAnother = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipStatus.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipStatus.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipStatus.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRoutingSlipStatus.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRoutingSlipStatus { + const long wdNotYetRouted = 0; + const long wdRouteComplete = 2; + const long wdRouteInProgress = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowAlignment.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowAlignment.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowAlignment.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowAlignment.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRowAlignment { + const long wdAlignRowCenter = 1; + const long wdAlignRowLeft = 0; + const long wdAlignRowRight = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowHeightRule.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowHeightRule.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowHeightRule.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRowHeightRule.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdRowHeightRule { + const long wdRowHeightAtLeast = 1; + const long wdRowHeightAuto = 0; + const long wdRowHeightExactly = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRulerStyle.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRulerStyle.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRulerStyle.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdRulerStyle.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdRulerStyle { + const long wdAdjustFirstColumn = 2; + const long wdAdjustNone = 0; + const long wdAdjustProportional = 1; + const long wdAdjustSameWidth = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationGender.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationGender.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationGender.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationGender.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdSalutationGender { + const long wdGenderFemale = 0; + const long wdGenderMale = 1; + const long wdGenderNeutral = 2; + const long wdGenderUnknown = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSalutationType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdSalutationType { + const long wdSalutationBusiness = 2; + const long wdSalutationFormal = 1; + const long wdSalutationInformal = 0; + const long wdSalutationOther = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveFormat.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveFormat.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveFormat.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveFormat.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,17 @@ +module ooo { module vba { module word { + constants WdSaveFormat { + const long wdFormatDocument = 0; + const long wdFormatDOSText = 4; + const long wdFormatDOSTextLineBreaks = 5; + const long wdFormatEncodedText = 7; + const long wdFormatFilteredHTML = 10; + const long wdFormatHTML = 8; + const long wdFormatRTF = 6; + const long wdFormatTemplate = 1; + const long wdFormatText = 2; + const long wdFormatTextLineBreaks = 3; + const long wdFormatUnicodeText = 7; + const long wdFormatWebArchive = 9; + const long wdFormatXML = 11; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveOptions.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveOptions.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveOptions.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSaveOptions.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdSaveOptions { + const long wdDoNotSaveChanges = 0; + const long wdPromptToSaveChanges = -2; + const long wdSaveChanges = -1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdScrollbarType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdScrollbarType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdScrollbarType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdScrollbarType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdScrollbarType { + const long wdScrollbarTypeAuto = 0; + const long wdScrollbarTypeNo = 2; + const long wdScrollbarTypeYes = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionDirection.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionDirection.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionDirection.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionDirection.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdSectionDirection { + const long wdSectionDirectionLtr = 1; + const long wdSectionDirectionRtl = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionStart.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionStart.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionStart.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSectionStart.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdSectionStart { + const long wdSectionContinuous = 0; + const long wdSectionEvenPage = 3; + const long wdSectionNewColumn = 1; + const long wdSectionNewPage = 2; + const long wdSectionOddPage = 4; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeekView.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeekView.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeekView.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeekView.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,15 @@ +module ooo { module vba { module word { + constants WdSeekView { + const long wdSeekCurrentPageFooter = 10; + const long wdSeekCurrentPageHeader = 9; + const long wdSeekEndnotes = 8; + const long wdSeekEvenPagesFooter = 6; + const long wdSeekEvenPagesHeader = 3; + const long wdSeekFirstPageFooter = 5; + const long wdSeekFirstPageHeader = 2; + const long wdSeekFootnotes = 7; + const long wdSeekMainDocument = 0; + const long wdSeekPrimaryFooter = 4; + const long wdSeekPrimaryHeader = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionFlags.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionFlags.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionFlags.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionFlags.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdSelectionFlags { + const long wdSelActive = 8; + const long wdSelAtEOL = 2; + const long wdSelOvertype = 4; + const long wdSelReplace = 16; + const long wdSelStartActive = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSelectionType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,13 @@ +module ooo { module vba { module word { + constants WdSelectionType { + const long wdNoSelection = 0; + const long wdSelectionBlock = 6; + const long wdSelectionColumn = 4; + const long wdSelectionFrame = 3; + const long wdSelectionInlineShape = 7; + const long wdSelectionIP = 1; + const long wdSelectionNormal = 2; + const long wdSelectionRow = 5; + const long wdSelectionShape = 8; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeparatorType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeparatorType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeparatorType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSeparatorType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdSeparatorType { + const long wdSeparatorColon = 2; + const long wdSeparatorEmDash = 3; + const long wdSeparatorEnDash = 4; + const long wdSeparatorHyphen = 0; + const long wdSeparatorPeriod = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShapePosition.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShapePosition.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShapePosition.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShapePosition.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdShapePosition { + const long wdShapeBottom = -999997; + const long wdShapeCenter = -999995; + const long wdShapeInside = -999994; + const long wdShapeLeft = -999998; + const long wdShapeOutside = -999993; + const long wdShapeRight = -999996; + const long wdShapeTop = -999999; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShowFilter.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShowFilter.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShowFilter.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdShowFilter.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,9 @@ +module ooo { module vba { module word { + constants WdShowFilter { + const long wdShowFilterFormattingAvailable = 4; + const long wdShowFilterFormattingInUse = 3; + const long wdShowFilterStylesAll = 2; + const long wdShowFilterStylesAvailable = 0; + const long wdShowFilterStylesInUse = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSmartTagControlType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSmartTagControlType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSmartTagControlType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSmartTagControlType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,20 @@ +module ooo { module vba { module word { + constants WdSmartTagControlType { + const long wdControlActiveX = 13; + const long wdControlButton = 6; + const long wdControlCheckbox = 9; + const long wdControlCombo = 12; + const long wdControlDocumentFragment = 14; + const long wdControlDocumentFragmentURL = 15; + const long wdControlHelp = 3; + const long wdControlHelpURL = 4; + const long wdControlImage = 8; + const long wdControlLabel = 7; + const long wdControlLink = 2; + const long wdControlListbox = 11; + const long wdControlRadioGroup = 16; + const long wdControlSeparator = 5; + const long wdControlSmartTag = 1; + const long wdControlTextbox = 10; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdSortFieldType { + const long wdSortFieldAlphanumeric = 0; + const long wdSortFieldDate = 2; + const long wdSortFieldJapanJIS = 4; + const long wdSortFieldKoreaKS = 6; + const long wdSortFieldNumeric = 1; + const long wdSortFieldStroke = 5; + const long wdSortFieldSyllable = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldTypeHID.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldTypeHID.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldTypeHID.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortFieldTypeHID.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,5 @@ +module ooo { module vba { module word { + constants WdSortFieldTypeHID { + const long emptyenum = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortOrder.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortOrder.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortOrder.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortOrder.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdSortOrder { + const long wdSortOrderAscending = 0; + const long wdSortOrderDescending = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortSeparator.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortSeparator.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortSeparator.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSortSeparator.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdSortSeparator { + const long wdSortSeparateByCommas = 1; + const long wdSortSeparateByDefaultTableSeparator = 2; + const long wdSortSeparateByTabs = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpecialPane.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpecialPane.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpecialPane.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpecialPane.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,23 @@ +module ooo { module vba { module word { + constants WdSpecialPane { + const long wdPaneComments = 15; + const long wdPaneCurrentPageFooter = 17; + const long wdPaneCurrentPageHeader = 16; + const long wdPaneEndnoteContinuationNotice = 12; + const long wdPaneEndnoteContinuationSeparator = 13; + const long wdPaneEndnotes = 8; + const long wdPaneEndnoteSeparator = 14; + const long wdPaneEvenPagesFooter = 6; + const long wdPaneEvenPagesHeader = 3; + const long wdPaneFirstPageFooter = 5; + const long wdPaneFirstPageHeader = 2; + const long wdPaneFootnoteContinuationNotice = 9; + const long wdPaneFootnoteContinuationSeparator = 10; + const long wdPaneFootnotes = 7; + const long wdPaneFootnoteSeparator = 11; + const long wdPaneNone = 0; + const long wdPanePrimaryFooter = 4; + const long wdPanePrimaryHeader = 1; + const long wdPaneRevisions = 18; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingErrorType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingErrorType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingErrorType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingErrorType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdSpellingErrorType { + const long wdSpellingCapitalization = 2; + const long wdSpellingCorrect = 0; + const long wdSpellingNotInDictionary = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingWordType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingWordType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingWordType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSpellingWordType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdSpellingWordType { + const long wdAnagram = 2; + const long wdSpellword = 0; + const long wdWildcard = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatistic.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatistic.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatistic.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatistic.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdStatistic { + const long wdStatisticCharacters = 3; + const long wdStatisticCharactersWithSpaces = 5; + const long wdStatisticFarEastCharacters = 6; + const long wdStatisticLines = 1; + const long wdStatisticPages = 2; + const long wdStatisticParagraphs = 4; + const long wdStatisticWords = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatisticHID.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatisticHID.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatisticHID.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStatisticHID.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,5 @@ +module ooo { module vba { module word { + constants WdStatisticHID { + const long emptyenum = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStoryType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStoryType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStoryType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStoryType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,21 @@ +module ooo { module vba { module word { + constants WdStoryType { + const long wdCommentsStory = 4; + const long wdEndnoteContinuationNoticeStory = 17; + const long wdEndnoteContinuationSeparatorStory = 16; + const long wdEndnoteSeparatorStory = 15; + const long wdEndnotesStory = 3; + const long wdEvenPagesFooterStory = 8; + const long wdEvenPagesHeaderStory = 6; + const long wdFirstPageFooterStory = 11; + const long wdFirstPageHeaderStory = 10; + const long wdFootnoteContinuationNoticeStory = 14; + const long wdFootnoteContinuationSeparatorStory = 13; + const long wdFootnoteSeparatorStory = 12; + const long wdFootnotesStory = 2; + const long wdMainTextStory = 1; + const long wdPrimaryFooterStory = 9; + const long wdPrimaryHeaderStory = 7; + const long wdTextFrameStory = 5; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetLinkType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetLinkType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetLinkType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetLinkType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdStyleSheetLinkType { + const long wdStyleSheetLinkTypeImported = 1; + const long wdStyleSheetLinkTypeLinked = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetPrecedence.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetPrecedence.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetPrecedence.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleSheetPrecedence.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdStyleSheetPrecedence { + const long wdStyleSheetPrecedenceHigher = -1; + const long wdStyleSheetPrecedenceHighest = 1; + const long wdStyleSheetPrecedenceLower = -2; + const long wdStyleSheetPrecedenceLowest = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdStyleType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdStyleType { + const long wdStyleTypeCharacter = 2; + const long wdStyleTypeList = 4; + const long wdStyleTypeParagraph = 1; + const long wdStyleTypeTable = 3; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSubscriberFormats.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSubscriberFormats.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSubscriberFormats.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSubscriberFormats.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdSubscriberFormats { + const long wdSubscriberBestFormat = 0; + const long wdSubscriberPict = 4; + const long wdSubscriberRTF = 1; + const long wdSubscriberText = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryLength.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryLength.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryLength.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryLength.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,12 @@ +module ooo { module vba { module word { + constants WdSummaryLength { + const long wd100Words = -4; + const long wd10Percent = -6; + const long wd10Sentences = -2; + const long wd20Sentences = -3; + const long wd25Percent = -7; + const long wd500Words = -5; + const long wd50Percent = -8; + const long wd75Percent = -9; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryMode.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryMode.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryMode.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdSummaryMode.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdSummaryMode { + const long wdSummaryModeCreateNew = 3; + const long wdSummaryModeHideAllButSummary = 1; + const long wdSummaryModeHighlight = 0; + const long wdSummaryModeInsert = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTCSCConverterDirection.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTCSCConverterDirection.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTCSCConverterDirection.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTCSCConverterDirection.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdTCSCConverterDirection { + const long wdTCSCConverterDirectionAuto = 2; + const long wdTCSCConverterDirectionSCTC = 0; + const long wdTCSCConverterDirectionTCSC = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabAlignment.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabAlignment.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabAlignment.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabAlignment.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,10 @@ +module ooo { module vba { module word { + constants WdTabAlignment { + const long wdAlignTabBar = 4; + const long wdAlignTabCenter = 1; + const long wdAlignTabDecimal = 3; + const long wdAlignTabLeft = 0; + const long wdAlignTabList = 6; + const long wdAlignTabRight = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeader.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeader.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeader.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeader.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,10 @@ +module ooo { module vba { module word { + constants WdTabLeader { + const long wdTabLeaderDashes = 2; + const long wdTabLeaderDots = 1; + const long wdTabLeaderHeavy = 4; + const long wdTabLeaderLines = 3; + const long wdTabLeaderMiddleDot = 5; + const long wdTabLeaderSpaces = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeaderHID.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeaderHID.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeaderHID.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTabLeaderHID.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,5 @@ +module ooo { module vba { module word { + constants WdTabLeaderHID { + const long emptyenum = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableDirection.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableDirection.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableDirection.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableDirection.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,6 @@ +module ooo { module vba { module word { + constants WdTableDirection { + const long wdTableDirectionLtr = 1; + const long wdTableDirectionRtl = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFieldSeparator.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFieldSeparator.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFieldSeparator.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFieldSeparator.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,8 @@ +module ooo { module vba { module word { + constants WdTableFieldSeparator { + const long wdSeparateByCommas = 2; + const long wdSeparateByDefaultListSeparator = 3; + const long wdSeparateByParagraphs = 0; + const long wdSeparateByTabs = 1; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormat.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormat.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormat.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormat.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,47 @@ +module ooo { module vba { module word { + constants WdTableFormat { + const long wdTableFormat3DEffects1 = 32; + const long wdTableFormat3DEffects2 = 33; + const long wdTableFormat3DEffects3 = 34; + const long wdTableFormatClassic1 = 4; + const long wdTableFormatClassic2 = 5; + const long wdTableFormatClassic3 = 6; + const long wdTableFormatClassic4 = 7; + const long wdTableFormatColorful1 = 8; + const long wdTableFormatColorful2 = 9; + const long wdTableFormatColorful3 = 10; + const long wdTableFormatColumns1 = 11; + const long wdTableFormatColumns2 = 12; + const long wdTableFormatColumns3 = 13; + const long wdTableFormatColumns4 = 14; + const long wdTableFormatColumns5 = 15; + const long wdTableFormatContemporary = 35; + const long wdTableFormatElegant = 36; + const long wdTableFormatGrid1 = 16; + const long wdTableFormatGrid2 = 17; + const long wdTableFormatGrid3 = 18; + const long wdTableFormatGrid4 = 19; + const long wdTableFormatGrid5 = 20; + const long wdTableFormatGrid6 = 21; + const long wdTableFormatGrid7 = 22; + const long wdTableFormatGrid8 = 23; + const long wdTableFormatList1 = 24; + const long wdTableFormatList2 = 25; + const long wdTableFormatList3 = 26; + const long wdTableFormatList4 = 27; + const long wdTableFormatList5 = 28; + const long wdTableFormatList6 = 29; + const long wdTableFormatList7 = 30; + const long wdTableFormatList8 = 31; + const long wdTableFormatNone = 0; + const long wdTableFormatProfessional = 37; + const long wdTableFormatSimple1 = 1; + const long wdTableFormatSimple2 = 2; + const long wdTableFormatSimple3 = 3; + const long wdTableFormatSubtle1 = 38; + const long wdTableFormatSubtle2 = 39; + const long wdTableFormatWeb1 = 40; + const long wdTableFormatWeb2 = 41; + const long wdTableFormatWeb3 = 42; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormatApply.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormatApply.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormatApply.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTableFormatApply.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,13 @@ +module ooo { module vba { module word { + constants WdTableFormatApply { + const long wdTableFormatApplyAutoFit = 16; + const long wdTableFormatApplyBorders = 1; + const long wdTableFormatApplyColor = 8; + const long wdTableFormatApplyFirstColumn = 128; + const long wdTableFormatApplyFont = 4; + const long wdTableFormatApplyHeadingRows = 32; + const long wdTableFormatApplyLastColumn = 256; + const long wdTableFormatApplyLastRow = 64; + const long wdTableFormatApplyShading = 2; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTablePosition.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTablePosition.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTablePosition.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTablePosition.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,11 @@ +module ooo { module vba { module word { + constants WdTablePosition { + const long wdTableBottom = -999997; + const long wdTableCenter = -999995; + const long wdTableInside = -999994; + const long wdTableLeft = -999998; + const long wdTableOutside = -999993; + const long wdTableRight = -999996; + const long wdTableTop = -999999; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTaskPanes.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTaskPanes.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTaskPanes.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTaskPanes.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,18 @@ +module ooo { module vba { module word { + constants WdTaskPanes { + const long wdTaskPaneDocumentActions = 7; + const long wdTaskPaneDocumentProtection = 6; + const long wdTaskPaneDocumentUpdates = 13; + const long wdTaskPaneFaxService = 11; + const long wdTaskPaneFormatting = 0; + const long wdTaskPaneHelp = 9; + const long wdTaskPaneMailMerge = 2; + const long wdTaskPaneResearch = 10; + const long wdTaskPaneRevealFormatting = 1; + const long wdTaskPaneSearch = 4; + const long wdTaskPaneSharedWorkspace = 8; + const long wdTaskPaneTranslate = 3; + const long wdTaskPaneXMLDocument = 12; + const long wdTaskPaneXMLStructure = 5; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTemplateType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTemplateType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTemplateType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTemplateType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,7 @@ +module ooo { module vba { module word { + constants WdTemplateType { + const long wdAttachedTemplate = 2; + const long wdGlobalTemplate = 1; + const long wdNormalTemplate = 0; + }; +}; }; }; Added: incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTextFormFieldType.idl URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTextFormFieldType.idl?rev=1396797&view=auto ============================================================================== --- incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTextFormFieldType.idl (added) +++ incubator/ooo/branches/buildsys/main/oovbaapi/ooo/vba/word/WdTextFormFieldType.idl Wed Oct 10 21:12:40 2012 @@ -0,0 +1,10 @@ +module ooo { module vba { module word { + constants WdTextFormFieldType { + const long wdCalculationText = 5; + const long wdCurrentDateText = 3; + const long wdCurrentTimeText = 4; + const long wdDateText = 2; + const long wdNumberText = 1; + const long wdRegularText = 0; + }; +}; }; };