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 <grid.hrc> 24 25ModalDialog GRID_DIALOG 26{ 27 HelpID = "extensions:ModalDialog:GRID_DIALOG"; 28 OutputSize = TRUE ; 29 SVLook = TRUE ; 30 Pos = MAP_APPFONT ( 10 , 10 ) ; 31 Size = MAP_APPFONT ( 300, 200 ) ; 32 Moveable = TRUE ; 33 Closeable = TRUE ; 34 35 OKButton GRID_DIALOG_OK_BTN 36 { 37 Pos = MAP_APPFONT( 245, 5 ); 38 Size = MAP_APPFONT( 50, 15 ); 39 DefButton = TRUE; 40 }; 41 CancelButton GRID_DIALOG_CANCEL_BTN 42 { 43 Pos = MAP_APPFONT ( 245 , 25 ) ; 44 Size = MAP_APPFONT ( 50 , 15 ) ; 45 }; 46 ListBox GRID_DIALOG_TYPE_BOX 47 { 48 HelpID = "extensions:ListBox:GRID_DIALOG:GRID_DIALOG_TYPE_BOX"; 49 Border = TRUE ; 50 Dropdown = TRUE ; 51 Pos = MAP_APPFONT( 245, 45 ); 52 Size = MAP_APPFONT( 50, 130 ); 53 }; 54 PushButton GRID_DIALOG_RESET_BTN 55 { 56 HelpID = "extensions:PushButton:GRID_DIALOG:GRID_DIALOG_RESET_BTN"; 57 Pos = MAP_APPFONT( 245, 65 ); 58 Size = MAP_APPFONT( 50, 15 ); 59 Text [ en-US ] = "Set"; 60 }; 61 Bitmap GRID_DIALOG_HANDLE_BMP 62 { 63 File = "handle.bmp"; 64 }; 65 String RESET_TYPE_LINEAR_ASCENDING 66 { 67 Text [ en-US ] = "Linear ascending"; 68 }; 69 String RESET_TYPE_LINEAR_DESCENDING 70 { 71 Text [ en-US ] = "Linear descending"; 72 }; 73 String RESET_TYPE_RESET 74 { 75 Text [ en-US ] = "Original values"; 76 }; 77 String RESET_TYPE_EXPONENTIAL 78 { 79 Text [ en-US ] = "Exponential increasing"; 80 }; 81}; 82 83 84 85 86 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