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#ifndef DBAUI_ADABASSTAT_HRC 29#include "AdabasStat.hrc" 30#endif 31#ifndef _DBU_DLG_HRC_ 32#include "dbu_dlg.hrc" 33#endif 34 35#define WINDOW_SIZE_X 260 36#define WINDOW_SIZE_Y 190 37 38ModalDialog DLG_ADABASSTAT 39{ 40 HelpID = "dbaccess:ModalDialog:DLG_ADABASSTAT"; 41 OutputSize = TRUE ; 42 Moveable = TRUE ; 43 Closeable = TRUE ; 44 SVLook = TRUE ; 45 Size = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ; 46 47 FixedLine FL_FILES 48 { 49 Pos = MAP_APPFONT ( 6 , 3 ) ; 50 Size = MAP_APPFONT ( WINDOW_SIZE_X - 12, 8 ) ; 51 Text [ en-US ] = "Database files"; 52 }; 53 54 FixedText FT_SYSDEVSPACE 55 { 56 Pos = MAP_APPFONT ( 12 , 14 ) ; 57 Size = MAP_APPFONT ( 102 , 10 ) ; 58 Text [ en-US ] = "S~YSDEVSPACE:"; 59 }; 60 61 Edit ET_SYSDEVSPACE 62 { 63 HelpID = "dbaccess:Edit:DLG_ADABASSTAT:ET_SYSDEVSPACE"; 64 Border = TRUE ; 65 Pos = MAP_APPFONT ( 120 , 14 ) ; 66 Size = MAP_APPFONT ( 128 , 12 ) ; 67 TabStop = TRUE ; 68 ReadOnly = TRUE; 69 }; 70 71 FixedText FT_TRANSACTIONLOG 72 { 73 Pos = MAP_APPFONT ( 12 , 32 ) ; 74 Size = MAP_APPFONT ( 102 , 10 ) ; 75 Text [ en-US ] = "~TRANSACTIONLOG:"; 76 }; 77 78 Edit ET_TRANSACTIONLOG 79 { 80 HelpID = "dbaccess:Edit:DLG_ADABASSTAT:ET_TRANSACTIONLOG"; 81 Border = TRUE ; 82 Pos = MAP_APPFONT ( 120 , 31 ) ; 83 Size = MAP_APPFONT ( 128 , 12 ) ; 84 TabStop = TRUE ; 85 ReadOnly = TRUE; 86 }; 87 88 FixedText FT_DATADEVSPACE 89 { 90 Pos = MAP_APPFONT ( 12 , 49 ) ; 91 Size = MAP_APPFONT ( 102 , 10 ) ; 92 Text [ en-US ] = "DATAD~EVSPACE:"; 93 }; 94 95 ListBox LB_DATADEVS 96 { 97 HelpID = "dbaccess:ListBox:DLG_ADABASSTAT:LB_DATADEVS"; 98 Border = TRUE ; 99 Pos = MAP_APPFONT ( 120 , 48 ) ; 100 Size = MAP_APPFONT ( 128 , 42 ) ; 101 TabStop = TRUE; 102 AutoHScroll = TRUE; 103 VScroll = TRUE; 104 HScroll = TRUE; 105 }; 106 FixedLine FL_SIZES 107 { 108 Pos = MAP_APPFONT ( 6 , 99 ) ; 109 Size = MAP_APPFONT ( WINDOW_SIZE_X - 12 , 8 ) ; 110 Text [ en-US ] = "Database sizes"; 111 }; 112 113 FixedText FT_SIZE 114 { 115 Pos = MAP_APPFONT ( 12 , 110 ) ; 116 Size = MAP_APPFONT ( 102 , 10 ) ; 117 Text [ en-US ] = "S~ize (MB):"; 118 }; 119 120 Edit ET_SIZE 121 { 122 HelpID = "dbaccess:Edit:DLG_ADABASSTAT:ET_SIZE"; 123 Border = TRUE ; 124 Pos = MAP_APPFONT ( 120 , 109 ) ; 125 Size = MAP_APPFONT ( 60 , 12 ) ; 126 TabStop = TRUE ; 127 ReadOnly = TRUE; 128 }; 129 130 FixedText FT_FREESIZE 131 { 132 Pos = MAP_APPFONT ( 12 , 127 ) ; 133 Size = MAP_APPFONT ( 102 , 10 ) ; 134 Text [ en-US ] = "~Free memory space (MB):"; 135 }; 136 137 Edit ET_FREESIZE 138 { 139 HelpID = "dbaccess:Edit:DLG_ADABASSTAT:ET_FREESIZE"; 140 Border = TRUE ; 141 Pos = MAP_APPFONT ( 120 , 126 ) ; 142 Size = MAP_APPFONT ( 60 , 12 ) ; 143 TabStop = TRUE ; 144 ReadOnly = TRUE; 145 }; 146 147 FixedText FT_MEMORYUSING 148 { 149 Pos = MAP_APPFONT ( 12 , 144 ) ; 150 Size = MAP_APPFONT ( 102 , 10 ) ; 151 Text [ en-US ] = "~Memory utilization (in %):"; 152 }; 153 154 NumericField ET_MEMORYUSING 155 { 156 HelpID = "dbaccess:NumericField:DLG_ADABASSTAT:ET_MEMORYUSING"; 157 Border = TRUE ; 158 Pos = MAP_APPFONT ( 120 , 144 ) ; 159 Size = MAP_APPFONT ( 60 , 12 ) ; 160 TabStop = TRUE ; 161 ReadOnly = TRUE; 162 }; 163 164 OKButton PB_OK 165 { 166 Pos = MAP_APPFONT ( WINDOW_SIZE_X - 56,WINDOW_SIZE_Y - 20 ) ; 167 Size = MAP_APPFONT ( 50, 14 ) ; 168 TabStop = TRUE ; 169 DefButton = TRUE ; 170 }; 171 172 Text [ en-US ] = "Database Statistics"; 173}; 174 175String STR_ADABAS_HELP_SYSDEVSPACE 176{ 177 Text [ en-US ] = "Contains the system tables"; 178}; 179 180String STR_ADABAS_HELP_TRANSACT 181{ 182 Text [ en-US ] = "Contains information about transaction"; 183}; 184 185String STR_ADABAS_HELP_DATADEVSPACES 186{ 187 Text [ en-US ] = "Contains all data files"; 188}; 189 190String STR_ADABAS_HELP_SIZE 191{ 192 Text [ en-US ] = "Total size of the database files"; 193}; 194 195String STR_ADABAS_HELP_FREESIZE 196{ 197 Text [ en-US ] = "Currently available space before a new datadev file is created."; 198}; 199 200String STR_ADABAS_HELP_MEMORYUSING 201{ 202 Text [ en-US ] = "Currently used memory"; 203}; 204 205String STR_ADABAS_ERROR_SYSTEMTABLES 206{ 207 Text [ en-US ] = "No information could be displayed because no access rights exist for the required system tables."; 208}; 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239