1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#include "tp_DataSource.hrc"
24#include "HelpIds.hrc"
25
26TabPage TP_DATA_SOURCE
27{
28    HelpID = "chart2:TabPage:TP_DATA_SOURCE";
29    Hide = TRUE;
30    Size = MAP_APPFONT ( 248, 140 );
31    SVLook = TRUE ;
32
33    // ----------------------------------------
34
35    FixedText FT_CAPTION_FOR_WIZARD
36    {
37        Pos = MAP_APPFONT ( 5 , 8  ) ;
38        Size = MAP_APPFONT ( 238 , 10 ) ;
39        Text [ en-US ] = "Customize data ranges for individual data series" ;
40    };
41
42    FixedText FT_SERIES
43    {
44        Pos  = MAP_APPFONT ( 6 , 22  );
45        Size = MAP_APPFONT ( 72 , 8 );
46
47        Text [ en-US ] = "Data ~series";
48    };
49    Control LB_SERIES
50    {
51        HelpID = HID_SCH_SERIES_LIST ;
52        Border = TRUE;
53        TabStop = TRUE;
54        // DropDown = FALSE;
55        Pos  = MAP_APPFONT ( 6 , 32  );
56        Size = MAP_APPFONT ( 72 , 69 );
57    };
58
59    FixedText FT_ROLE
60    {
61        Pos  = MAP_APPFONT ( 82 , 22  );
62        Size = MAP_APPFONT ( 160 , 8 );
63
64        Text [ en-US ] = "~Data ranges";
65    };
66    Control LB_ROLE
67    {
68        HelpID = HID_SCH_DATA_RANGES_LIST ;
69        Border = TRUE;
70        TabStop = TRUE;
71        Pos  = MAP_APPFONT ( 82 , 32  );
72        Size = MAP_APPFONT ( 160 , 43 );
73    };
74
75    // ----------------------------------------
76
77    FixedText FT_RANGE
78    {
79        Pos  = MAP_APPFONT ( 82 , 79  );
80        Size = MAP_APPFONT ( 160 , 8 );
81
82        Text [ en-US ] = "Ran~ge for %VALUETYPE";
83    };
84    Edit EDT_RANGE
85    {
86        HelpID = "chart2:Edit:TP_DATA_SOURCE:EDT_RANGE";
87        Border = TRUE;
88        TabStop = TRUE;
89        Pos  = MAP_APPFONT ( 82 , 89  );
90        Size = MAP_APPFONT ( 144 , 12 );
91    };
92    ImageButton IMB_RANGE_MAIN
93    {
94        HelpID = "chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_MAIN";
95        TabStop = TRUE;
96        Pos  = MAP_APPFONT ( 228 , 88  );
97        Size = MAP_APPFONT ( 14 , 14 );
98    };
99
100    // ----------------------------------------
101
102    FixedText FT_CATEGORIES
103    {
104        Pos  = MAP_APPFONT ( 82 , 107  );
105        Size = MAP_APPFONT ( 160 , 8 );
106
107        Text [ en-US ] = "~Categories";
108    };
109
110    FixedText FT_DATALABELS
111    {
112        Pos  = MAP_APPFONT ( 82 , 107  );
113        Size = MAP_APPFONT ( 160 , 8 );
114
115        Text [ en-US ] = "Data ~labels" ;
116    };
117
118    Edit EDT_CATEGORIES
119    {
120        HelpID = "chart2:Edit:TP_DATA_SOURCE:EDT_CATEGORIES";
121        Border = TRUE;
122        TabStop = TRUE;
123        Pos  = MAP_APPFONT ( 82 , 117  );
124        Size = MAP_APPFONT ( 144 , 12 );
125    };
126    ImageButton IMB_RANGE_CAT
127    {
128        HelpID = "chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_CAT";
129        TabStop = TRUE;
130        Pos  = MAP_APPFONT ( 228 , 116  );
131        Size = MAP_APPFONT ( 14 , 14 );
132    };
133
134    // ----------------------------------------
135
136    PushButton BTN_ADD
137    {
138        HelpID = "chart2:PushButton:TP_DATA_SOURCE:BTN_ADD";
139        TabStop = TRUE;
140        Disable = FALSE;
141        Pos  = MAP_APPFONT ( 6 , 105  );
142        Size = MAP_APPFONT ( 54 , 14 );
143
144        Text [ en-US ] = "~Add";
145    };
146    PushButton BTN_REMOVE
147    {
148        HelpID = "chart2:PushButton:TP_DATA_SOURCE:BTN_REMOVE";
149        TabStop = TRUE;
150        Disable = TRUE;
151        Pos  = MAP_APPFONT ( 6 , 121  );
152        Size = MAP_APPFONT ( 54 , 14 );
153
154        Text [ en-US ] = "~Remove";
155    };
156
157    // Note: Text is only a black triangle symbol
158    PushButton BTN_UP
159    {
160        HelpID = "chart2:PushButton:TP_DATA_SOURCE:BTN_UP";
161        TabStop = TRUE;
162        Disable = TRUE;
163        Pos  = MAP_APPFONT ( 64 , 105  );
164        Size = MAP_APPFONT ( 14 , 14 );
165    };
166
167    // Note: Text is only a black triangle symbol
168    PushButton BTN_DOWN
169    {
170        HelpID = "chart2:PushButton:TP_DATA_SOURCE:BTN_DOWN";
171        TabStop = TRUE;
172        Disable = TRUE;
173        Pos  = MAP_APPFONT ( 64 , 121  );
174        Size = MAP_APPFONT ( 14 , 14 );
175    };
176};
177