xref: /trunk/main/sw/sdi/switems.sdi (revision a02241ff)
1*a02241ffSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*a02241ffSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*a02241ffSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*a02241ffSAndrew Rist * distributed with this work for additional information
6*a02241ffSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*a02241ffSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*a02241ffSAndrew Rist * "License"); you may not use this file except in compliance
9*a02241ffSAndrew Rist * with the License.  You may obtain a copy of the License at
10*a02241ffSAndrew Rist *
11*a02241ffSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*a02241ffSAndrew Rist *
13*a02241ffSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*a02241ffSAndrew Rist * software distributed under the License is distributed on an
15*a02241ffSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a02241ffSAndrew Rist * KIND, either express or implied.  See the License for the
17*a02241ffSAndrew Rist * specific language governing permissions and limitations
18*a02241ffSAndrew Rist * under the License.
19*a02241ffSAndrew Rist *
20*a02241ffSAndrew Rist *************************************************************/
21*a02241ffSAndrew Rist
22*a02241ffSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweiritem String SwNumRuleItem;
25cdf0e10cSrcweiritem BOOL SwRegisterItem;
26cdf0e10cSrcweir
27cdf0e10cSrcweirstruct SwLineNumber
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    BOOL    CountLines          MID_LINENUMBER_COUNT;
30cdf0e10cSrcweir    INT32   StartValue          MID_LINENUMBER_STARTVALUE;
31cdf0e10cSrcweir};
32cdf0e10cSrcweiritem SwLineNumber SwFmtLineNumber;
33cdf0e10cSrcweir
34cdf0e10cSrcweirstruct INetFmt
35cdf0e10cSrcweir{
36cdf0e10cSrcweir    String      URL             MID_URL_URL;
37cdf0e10cSrcweir    String      Target          MID_URL_TARGET;
38cdf0e10cSrcweir    String      Name            MID_URL_HYPERLINKNAME;
39cdf0e10cSrcweir    String      VisitedFormat   MID_URL_VISITED_FMT;
40cdf0e10cSrcweir    String      UnvisitedFormat MID_URL_UNVISITED_FMT;
41cdf0e10cSrcweir};
42cdf0e10cSrcweiritem INetFmt SwFmtINetFmt;
43cdf0e10cSrcweir
44cdf0e10cSrcweirstruct Drop
45cdf0e10cSrcweir{
46cdf0e10cSrcweir    INT16   Lines       MID_DROPCAP_LINES;
47cdf0e10cSrcweir    INT16   Count       MID_DROPCAP_COUNT;
48cdf0e10cSrcweir    INT16   Distance    MID_DROPCAP_DISTANCE;
49cdf0e10cSrcweir    BOOL    WholeWord   MID_DROPCAP_WHOLE_WORD;
50cdf0e10cSrcweir//    String  Style       MID_DROPCAP_CHAR_STYLE_NAME;
51cdf0e10cSrcweir};
52cdf0e10cSrcweiritem Drop SwFmtDrop;
53cdf0e10cSrcweir
54cdf0e10cSrcweirstruct Envelope
55cdf0e10cSrcweir{
56cdf0e10cSrcweir    String   AddrText       MID_ENV_ADDR_TEXT;
57cdf0e10cSrcweir    BOOL     Send           MID_ENV_SEND;
58cdf0e10cSrcweir    String   SendText       MID_SEND_TEXT;
59cdf0e10cSrcweir    INT32    AddrFromLeft   MID_ENV_ADDR_FROM_LEFT;
60cdf0e10cSrcweir    INT32    AddrFromTop    MID_ENV_ADDR_FROM_TOP;
61cdf0e10cSrcweir    INT32    SendFromLeft   MID_ENV_SEND_FROM_LEFT;
62cdf0e10cSrcweir    INT32    SendFromTop    MID_ENV_SEND_FROM_TOP;
63cdf0e10cSrcweir    INT32    Width          MID_ENV_WIDTH;
64cdf0e10cSrcweir    INT32    Height         MID_ENV_HEIGHT;
65cdf0e10cSrcweir    INT16    Align          MID_ENV_ALIGN;
66cdf0e10cSrcweir    BOOL     PrintFromAbove MID_ENV_PRINT_FROM_ABOVE;
67cdf0e10cSrcweir    INT32    ShiftRight     MID_ENV_SHIFT_RIGHT;
68cdf0e10cSrcweir    INT32    ShiftDown      MID_ENV_SHIFT_DOWN;
69cdf0e10cSrcweir};
70cdf0e10cSrcweiritem Envelope SwEnvItem;
71cdf0e10cSrcweir
72cdf0e10cSrcweirstruct ViewLayout
73cdf0e10cSrcweir{
74cdf0e10cSrcweir    INT16   Columns         MID_VIEWLAYOUT_COLUMNS;
75cdf0e10cSrcweir    BOOL    BookMode        MID_VIEWLAYOUT_BOOKMODE;
76cdf0e10cSrcweir};
77cdf0e10cSrcweiritem ViewLayout SvxViewLayoutItem;
78cdf0e10cSrcweir
79