merge the formfield patch from ooo-build
[ooovba.git] / uui / source / newerverwarn.src
blob93bbd6e991de289daaa64d0c09256fe8a15b8a00
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: newerverwarn.src,v $
10  * $Revision: 1.1.2.1 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #define __RSC
33 #include "newerverwarn.hrc"
34 #include "ids.hrc"
36 #define STD_MASKCOLOR Color { Red=0xffff; Green=0x0000; Blue=0xffff; }
38 ModalDialog RID_DLG_NEWER_VERSION_WARNING
40     HelpId = HID_DLG_NEWERVERSIONWARNING;
41     OutputSize = TRUE ;
42     Size = MAP_APPFONT ( DLG_WIDTH , DLG_HEIGHT ) ;
43     SvLook = TRUE ;
44     Moveable = TRUE ;
45     Closeable = TRUE ;
46     Text [ en-US ] = "%PRODUCTNAME Update Available" ;
47     FixedImage FI_IMAGE
48     {
49         Pos = MAP_APPFONT ( COL_1 , ROW_1  );
50         Size = MAP_APPFONT ( IMAGE_WIDTH , IMAGE_HEIGHT );
51         Hide = FALSE;
52         Fixed = Image
53         {
54             ImageBitmap = Bitmap { File = "versionwarning.png"; };
55             MaskColor = STD_MASKCOLOR;
56         };
57     };
58     FixedText FT_INFO
59     {
60         Pos = MAP_APPFONT( COL_2, ROW_1 );
61         Size = MAP_APPFONT( INFO_WIDTH, INFO_LINES * RSC_CD_FIXEDTEXT_HEIGHT );
62         Wordbreak = TRUE;
63         Text [ en-US ] = "This document was created by a newer version of %PRODUCTNAME. It may contain features not supported by your current version.\n\nClick 'Update Now...' to run online update and get the latest version of %PRODUCTNAME.";
64     };
65     FixedLine FL_BUTTON
66     {
67         Pos = MAP_APPFONT ( 0 , ROW_2 ) ;
68         Size = MAP_APPFONT ( DLG_WIDTH , RSC_CD_FIXEDLINE_HEIGHT ) ;
69     };
70     PushButton PB_UPDATE
71     {
72         Pos = MAP_APPFONT ( COL_3 , ROW_3 ) ;
73         Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
74         TabStop = TRUE ;
75         Text [ en-US ] = "~Update Now..." ;
76     };
77     CancelButton PB_LATER
78     {
79         Pos = MAP_APPFONT ( COL_4 , ROW_3 ) ;
80         Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ;
81         TabStop = TRUE ;
82         Text [ en-US ] = "~Later" ;
83     };