xref: /aoo42x/main/basctl/source/basicide/objdlg.src (revision dd913a84)
18e0a7b1bSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
38e0a7b1bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
48e0a7b1bSAndrew Rist * or more contributor license agreements.  See the NOTICE file
58e0a7b1bSAndrew Rist * distributed with this work for additional information
68e0a7b1bSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
78e0a7b1bSAndrew Rist * to you under the Apache License, Version 2.0 (the
88e0a7b1bSAndrew Rist * "License"); you may not use this file except in compliance
98e0a7b1bSAndrew Rist * with the License.  You may obtain a copy of the License at
108e0a7b1bSAndrew Rist *
118e0a7b1bSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
128e0a7b1bSAndrew Rist *
138e0a7b1bSAndrew Rist * Unless required by applicable law or agreed to in writing,
148e0a7b1bSAndrew Rist * software distributed under the License is distributed on an
158e0a7b1bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
168e0a7b1bSAndrew Rist * KIND, either express or implied.  See the License for the
178e0a7b1bSAndrew Rist * specific language governing permissions and limitations
188e0a7b1bSAndrew Rist * under the License.
198e0a7b1bSAndrew Rist *
208e0a7b1bSAndrew Rist *************************************************************/
218e0a7b1bSAndrew Rist
228e0a7b1bSAndrew Rist
23cdf0e10cSrcweir
24*dd913a84Sdamjan#include "objdlg.hrc"
25cdf0e10cSrcweir#include <helpid.hrc>
26cdf0e10cSrcweir
27cdf0e10cSrcweir#define MASKCOLOR	MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; };
28cdf0e10cSrcweir
29cdf0e10cSrcweirFloatingWindow RID_BASICIDE_OBJCAT
30cdf0e10cSrcweir{
31cdf0e10cSrcweir    HelpID = "basctl:FloatingWindow:RID_BASICIDE_OBJCAT";
32cdf0e10cSrcweir	OutputSize = TRUE ;
33cdf0e10cSrcweir	SVLook = TRUE ;
34cdf0e10cSrcweir	Size = MAP_APPFONT ( 191 , 179 ) ;
35cdf0e10cSrcweir	Text [ en-US ] = "Objects" ;
36cdf0e10cSrcweir	Closeable = TRUE ;
37cdf0e10cSrcweir	Moveable = TRUE ;
38cdf0e10cSrcweir	Sizeable = TRUE ;
39cdf0e10cSrcweir	Zoomable = TRUE ;
40cdf0e10cSrcweir	Hide = TRUE ;
41cdf0e10cSrcweir	ClipChildren = TRUE ;
42cdf0e10cSrcweir	Control RID_TLB_MACROS
43cdf0e10cSrcweir	{
44cdf0e10cSrcweir		HelpId = HID_BASICIDE_OBJECTCAT ;
45cdf0e10cSrcweir		Border = TRUE ;
46cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3 , 24 ) ;
47cdf0e10cSrcweir		Size = MAP_APPFONT ( 185 , 126 ) ;
48cdf0e10cSrcweir		TabStop = TRUE ;
49cdf0e10cSrcweir	};
50cdf0e10cSrcweir	ToolBox RID_TB_TOOLBOX
51cdf0e10cSrcweir	{
52cdf0e10cSrcweir		HelpId = HID_BASICIDE_OBJECTS ;
53cdf0e10cSrcweir		SVLook = TRUE ;
54cdf0e10cSrcweir		Align = BOXALIGN_TOP ;
55cdf0e10cSrcweir		Pos = MAP_APPFONT ( 4 , 6 ) ;
56cdf0e10cSrcweir		ItemImageList = ImageList
57cdf0e10cSrcweir		{
58cdf0e10cSrcweir    	    Prefix = "im";
59cdf0e10cSrcweir			MASKCOLOR
60cdf0e10cSrcweir			IdList =
61cdf0e10cSrcweir			{
62cdf0e10cSrcweir				TBITEM_SHOW ;
63cdf0e10cSrcweir			};
64cdf0e10cSrcweir		};
65cdf0e10cSrcweir		ItemList =
66cdf0e10cSrcweir		{
67cdf0e10cSrcweir			ToolBoxItem
68cdf0e10cSrcweir			{
69cdf0e10cSrcweir				Identifier = TBITEM_SHOW ;
70cdf0e10cSrcweir				HelpId = HID_BASICIDE_OBJCAT_SHOW ;
71cdf0e10cSrcweir				Text [ en-US ] = "Show" ;
72cdf0e10cSrcweir			};
73cdf0e10cSrcweir		};
74cdf0e10cSrcweir	};
75cdf0e10cSrcweir    ImageList RID_IMGLST_TB_HC
76cdf0e10cSrcweir    {
77cdf0e10cSrcweir        Prefix = "imh";
78cdf0e10cSrcweir        MASKCOLOR
79cdf0e10cSrcweir        IdList =
80cdf0e10cSrcweir        {
81cdf0e10cSrcweir            TBITEM_SHOW ;
82cdf0e10cSrcweir        };
83cdf0e10cSrcweir    };
84cdf0e10cSrcweir	FixedText RID_FT_MACRODESCR
85cdf0e10cSrcweir	{
86cdf0e10cSrcweir		WordBreak = TRUE ;
87cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3 , 156 ) ;
88cdf0e10cSrcweir		Size = MAP_APPFONT ( 185 , 18 ) ;
89cdf0e10cSrcweir	};
90cdf0e10cSrcweir};
91cdf0e10cSrcweir
92cdf0e10cSrcweirString RID_STR_TLB_MACROS
93cdf0e10cSrcweir{
94cdf0e10cSrcweir	Text [ en-US ] = "Objects Tree";
95cdf0e10cSrcweir};
96cdf0e10cSrcweir
97