xref: /aoo41x/main/svx/source/tbxctrls/tbcontrl.src (revision 18c6ca59)
109a1d057SAndrew Rist/**************************************************************
2*18c6ca59SMatthias Seidel *
309a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
409a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
509a1d057SAndrew Rist * distributed with this work for additional information
609a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
709a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
809a1d057SAndrew Rist * "License"); you may not use this file except in compliance
909a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10*18c6ca59SMatthias Seidel *
1109a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*18c6ca59SMatthias Seidel *
1309a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
1409a1d057SAndrew Rist * software distributed under the License is distributed on an
1509a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1609a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
1709a1d057SAndrew Rist * specific language governing permissions and limitations
1809a1d057SAndrew Rist * under the License.
19*18c6ca59SMatthias Seidel *
2009a1d057SAndrew Rist *************************************************************/
2109a1d057SAndrew Rist
2209a1d057SAndrew Rist
23*18c6ca59SMatthias Seidel
24*18c6ca59SMatthias Seidel// include ---------------------------------------------------------------
25cdf0e10cSrcweir#include <svx/dialogs.hrc>
26cdf0e10cSrcweir#include <helpid.hrc>
27*18c6ca59SMatthias Seidel// pragma ----------------------------------------------------------------
28cdf0e10cSrcweir
29cdf0e10cSrcweir/*
30*18c6ca59SMatthias Seidel * Bitmaps for SvxFrameWindow
31cdf0e10cSrcweir */
32cdf0e10cSrcweir
33cdf0e10cSrcweir#define MASKCOLOR	MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
34cdf0e10cSrcweir
35cdf0e10cSrcweirImage RID_SVX_RELOAD_NORMAL
36cdf0e10cSrcweir{
37*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "reload.png" ; };
38cdf0e10cSrcweir	MASKCOLOR
39cdf0e10cSrcweir};
40cdf0e10cSrcweirImage RID_SVX_RELOAD_SPECIAL
41cdf0e10cSrcweir{
42*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "reloads.png" ; };
43cdf0e10cSrcweir	MASKCOLOR
44cdf0e10cSrcweir};
45cdf0e10cSrcweirImageList RID_SVXIL_FRAME
46cdf0e10cSrcweir{
47*18c6ca59SMatthias Seidel	Prefix = "fr";
48cdf0e10cSrcweir	IdList = { 1 ; 2 ; 3 ; 4 ; 5 ; 6 ; 7 ; 8 ; 9 ; 10 ; 11 ; 12 ; };
49cdf0e10cSrcweir	IdCount = { 12 ; };
50cdf0e10cSrcweir	MASKCOLOR
51cdf0e10cSrcweir};
52cdf0e10cSrcweirImageList RID_SVXIL_FRAME_HC
53cdf0e10cSrcweir{
54*18c6ca59SMatthias Seidel	Prefix = "frh";
55cdf0e10cSrcweir	IdList = { 1 ; 2 ; 3 ; 4 ; 5 ; 6 ; 7 ; 8 ; 9 ; 10 ; 11 ; 12 ; };
56cdf0e10cSrcweir	IdCount = { 12 ; };
57cdf0e10cSrcweir	MASKCOLOR
58cdf0e10cSrcweir};
59cdf0e10cSrcweirString RID_SVXSTR_TRANSPARENT
60cdf0e10cSrcweir{
61cdf0e10cSrcweir	Text [ en-US ] = "No Fill" ;
62cdf0e10cSrcweir};
63cdf0e10cSrcweirString RID_SVXSTR_FILLPATTERN
64cdf0e10cSrcweir{
65cdf0e10cSrcweir	Text [ en-US ] = "Pattern" ;
66cdf0e10cSrcweir};
67cdf0e10cSrcweirString RID_SVXSTR_FRAME
68cdf0e10cSrcweir{
69cdf0e10cSrcweir	Text [ en-US ] = "Borders" ;
70cdf0e10cSrcweir};
71cdf0e10cSrcweirString RID_SVXSTR_FRAME_STYLE
72cdf0e10cSrcweir{
73cdf0e10cSrcweir	Text [ en-US ] = "Border Style" ;
74cdf0e10cSrcweir};
75cdf0e10cSrcweirString RID_SVXSTR_FRAME_COLOR
76cdf0e10cSrcweir{
77cdf0e10cSrcweir	Text [ en-US ] = "Border Color" ;
78cdf0e10cSrcweir};
79cdf0e10cSrcweirComboBox RID_SVXTBX_STYLE
80cdf0e10cSrcweir{
81cdf0e10cSrcweir	HelpId = HID_STYLE_LISTBOX ;
82*18c6ca59SMatthias Seidel	Size = MAP_APPFONT ( 67, 86 ) ;
83cdf0e10cSrcweir	DropDown = TRUE ;
84cdf0e10cSrcweir	Sort = TRUE ;
85cdf0e10cSrcweir	AutoHScroll = TRUE ;
86cdf0e10cSrcweir	DDExtraWidth = TRUE ;
87cdf0e10cSrcweir	Border = TRUE ;
88cdf0e10cSrcweir	Hide = TRUE ;
89cdf0e10cSrcweir};
90cdf0e10cSrcweirString RID_SVXSTR_EXTRAS_CHARBACKGROUND
91cdf0e10cSrcweir{
92cdf0e10cSrcweir	Text [ en-US ] = "Highlighting" ;
93cdf0e10cSrcweir};
94cdf0e10cSrcweirString RID_SVXSTR_BACKGROUND
95cdf0e10cSrcweir{
96*18c6ca59SMatthias Seidel	Text [ en-US ] = "Background" ;
97cdf0e10cSrcweir};
98cdf0e10cSrcweirString RID_SVXSTR_AUTOMATIC
99cdf0e10cSrcweir{
100*18c6ca59SMatthias Seidel	Text [ en-US ] = "Automatic" ;
101cdf0e10cSrcweir};
102cdf0e10cSrcweirString RID_SVXSTR_PAGES
103cdf0e10cSrcweir{
104*18c6ca59SMatthias Seidel	Text [ en-US ] = "Pages" ;
105cdf0e10cSrcweir};
106cdf0e10cSrcweirImage RID_SVXIMG_GRAF_RED
107cdf0e10cSrcweir{
108*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10865.png" ; };
109cdf0e10cSrcweir	MASKCOLOR
110cdf0e10cSrcweir};
111cdf0e10cSrcweirImage RID_SVXIMG_GRAF_GREEN
112cdf0e10cSrcweir{
113*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10866.png" ; };
114cdf0e10cSrcweir	MASKCOLOR
115cdf0e10cSrcweir};
116cdf0e10cSrcweirImage RID_SVXIMG_GRAF_BLUE
117cdf0e10cSrcweir{
118*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10867.png" ; };
119cdf0e10cSrcweir	MASKCOLOR
120cdf0e10cSrcweir};
121cdf0e10cSrcweirImage RID_SVXIMG_GRAF_LUMINANCE
122cdf0e10cSrcweir{
123*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10863.png" ; };
124cdf0e10cSrcweir	MASKCOLOR
125cdf0e10cSrcweir};
126cdf0e10cSrcweirImage RID_SVXIMG_GRAF_CONTRAST
127cdf0e10cSrcweir{
128*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10864.png" ; };
129cdf0e10cSrcweir	MASKCOLOR
130cdf0e10cSrcweir};
131cdf0e10cSrcweirImage RID_SVXIMG_GRAF_GAMMA
132cdf0e10cSrcweir{
133*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10868.png" ; };
134cdf0e10cSrcweir	MASKCOLOR
135cdf0e10cSrcweir};
136cdf0e10cSrcweirImage RID_SVXIMG_GRAF_TRANSPARENCE
137cdf0e10cSrcweir{
138*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sc10869.png" ; };
139cdf0e10cSrcweir	MASKCOLOR
140cdf0e10cSrcweir};
141cdf0e10cSrcweirImage RID_SVXIMG_GRAF_RED_H
142cdf0e10cSrcweir{
143*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10865.png" ; };
144cdf0e10cSrcweir	MASKCOLOR
145cdf0e10cSrcweir};
146cdf0e10cSrcweirImage RID_SVXIMG_GRAF_GREEN_H
147cdf0e10cSrcweir{
148*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10866.png" ; };
149cdf0e10cSrcweir	MASKCOLOR
150cdf0e10cSrcweir};
151cdf0e10cSrcweirImage RID_SVXIMG_GRAF_BLUE_H
152cdf0e10cSrcweir{
153*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10867.png" ; };
154cdf0e10cSrcweir	MASKCOLOR
155cdf0e10cSrcweir};
156cdf0e10cSrcweirImage RID_SVXIMG_GRAF_LUMINANCE_H
157cdf0e10cSrcweir{
158*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10863.png" ; };
159cdf0e10cSrcweir	MASKCOLOR
160cdf0e10cSrcweir};
161cdf0e10cSrcweirImage RID_SVXIMG_GRAF_CONTRAST_H
162cdf0e10cSrcweir{
163*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10864.png" ; };
164cdf0e10cSrcweir	MASKCOLOR
165cdf0e10cSrcweir};
166cdf0e10cSrcweirImage RID_SVXIMG_GRAF_GAMMA_H
167cdf0e10cSrcweir{
168*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10868.png" ; };
169cdf0e10cSrcweir	MASKCOLOR
170cdf0e10cSrcweir};
171cdf0e10cSrcweirImage RID_SVXIMG_GRAF_TRANSPARENCE_H
172cdf0e10cSrcweir{
173*18c6ca59SMatthias Seidel	ImageBitmap = Bitmap { File = "sch10869.png" ; };
174cdf0e10cSrcweir	MASKCOLOR
175cdf0e10cSrcweir};
176cdf0e10cSrcweirString RID_SVXSTR_CLEARFORM
177cdf0e10cSrcweir{
178*18c6ca59SMatthias Seidel	Text [ en-US ] = "Clear formatting" ;
179cdf0e10cSrcweir};
180cdf0e10cSrcweirString RID_SVXSTR_MORE
181cdf0e10cSrcweir{
182*18c6ca59SMatthias Seidel	Text [ en-US ] = "More..." ;
183cdf0e10cSrcweir};
184cdf0e10cSrcweir
185cdf0e10cSrcweirString RID_SVXSTR_TEXTCOLOR
186cdf0e10cSrcweir{
187*18c6ca59SMatthias Seidel	Text [ en-US ] = "Font color" ;
188cdf0e10cSrcweir};
189cdf0e10cSrcweir
190*18c6ca59SMatthias Seidel// ********************************************************************** EOF
191