xref: /aoo41x/main/sw/source/ui/index/multmrk.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "index.hrc"
29#include "multmrk.hrc"
30#include "cmdid.h"
31#include "helpid.h"
32ModalDialog DLG_MULTMRK
33{
34	HelpID = CMD_FN_EDIT_IDX_ENTRY_DLG ;
35	OutputSize = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 220 , 95 ) ;
38	Text [ en-US ] = "Index Markings" ;
39	Moveable = TRUE ;
40    FixedLine FL_TOX
41	{
42		Pos = MAP_APPFONT ( 6 , 3 ) ;
43        Size = MAP_APPFONT ( 153 , 8 ) ;
44		Text [ en-US ] = "Selection" ;
45	};
46	FixedText FT_ENTRY
47	{
48		Pos = MAP_APPFONT ( 12 , 14 ) ;
49		Size = MAP_APPFONT ( 41 , 8 ) ;
50		Text [ en-US ] = "Index" ;
51		Left = TRUE ;
52	};
53	FixedText FT_TEXT
54	{
55		Pos = MAP_APPFONT ( 53 , 14 ) ;
56		Size = MAP_APPFONT ( 100 , 8 ) ;
57		Left = TRUE ;
58	};
59	FixedText FT_TOX
60	{
61        Pos = MAP_APPFONT ( 12 , 26 ) ;
62		Size = MAP_APPFONT ( 41 , 8 ) ;
63		Text [ en-US ] = "Entry" ;
64		Left = TRUE ;
65	};
66	ListBox LB_TOX
67	{
68	    HelpID = "sw:ListBox:DLG_MULTMRK:LB_TOX";
69		Border = TRUE ;
70        Pos = MAP_APPFONT ( 12 , 37 ) ;
71        Size = MAP_APPFONT ( 100 , 49 ) ;
72		TabStop = TRUE ;
73		AutoHScroll = TRUE ;
74	};
75	OKButton OK_BT
76	{
77		Pos = MAP_APPFONT ( 165 , 6 ) ;
78		Size = MAP_APPFONT ( 50 , 14 ) ;
79		TabStop = TRUE ;
80		DefButton = TRUE ;
81	};
82	CancelButton CANCEL_BT
83	{
84		Pos = MAP_APPFONT ( 165 , 23 ) ;
85		Size = MAP_APPFONT ( 50 , 14 ) ;
86		TabStop = TRUE ;
87	};
88};
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120