ebc07e1bde
2006/07/10 14:57:54 sb 1.1.2.7: #i66005# Cosmetics. 2006/07/10 07:45:48 sb 1.1.2.6: #i66005# Without Moveable=TRUE, the dialog would not have any system decorations on Windows? 2006/07/07 13:59:41 sb 1.1.2.5: #i66005# Fixed typo. 2006/07/06 15:38:43 sb 1.1.2.4: #i66005# Fixed typo. 2006/07/06 11:46:49 sb 1.1.2.3: #i66005# No help ID for dependency error dialog needed (yet?). 2006/07/06 07:24:31 sb 1.1.2.2: #i66005# GUI refinements. 2006/07/03 14:16:11 sb 1.1.2.1: #i66005# Added support for DependencyException to the deployment GUI interaction handler.
84 lines
3.3 KiB
Text
84 lines
3.3 KiB
Text
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: dp_gui_dependencydialog.src,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2006-07-13 17:02:57 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2006 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "svtools/controldims.hrc"
|
|
|
|
#include "dp_gui.hrc"
|
|
|
|
#define LOCAL_WIDTH (50 * RSC_BS_CHARWIDTH)
|
|
#define LOCAL_TEXT_HEIGHT (2 * RSC_CD_FIXEDTEXT_HEIGHT)
|
|
#define LOCAL_LIST_HEIGHT (6 * RSC_BS_CHARHEIGHT)
|
|
|
|
ModalDialog RID_DLG_DEPENDENCIES {
|
|
Size = MAP_APPFONT(
|
|
(RSC_SP_DLG_INNERBORDER_LEFT + LOCAL_WIDTH +
|
|
RSC_SP_DLG_INNERBORDER_RIGHT),
|
|
(RSC_SP_DLG_INNERBORDER_TOP + LOCAL_TEXT_HEIGHT + RSC_SP_CTRL_DESC_Y +
|
|
LOCAL_LIST_HEIGHT + RSC_SP_CTRL_Y + RSC_CD_PUSHBUTTON_HEIGHT +
|
|
RSC_SP_DLG_INNERBORDER_BOTTOM));
|
|
Text[de] = "Überprüfung der Systemvoraussetzungen";
|
|
Text[en-US] = "System dependencies check";
|
|
Sizeable = TRUE;
|
|
Moveable = TRUE;
|
|
Closeable = TRUE;
|
|
FixedText RID_DLG_DEPENDENCIES_TEXT {
|
|
Pos = MAP_APPFONT(
|
|
RSC_SP_DLG_INNERBORDER_LEFT, RSC_SP_DLG_INNERBORDER_TOP);
|
|
Size = MAP_APPFONT(LOCAL_WIDTH, LOCAL_TEXT_HEIGHT);
|
|
Text[de] = "Die Erweiterung kann nicht installiert werden, da die\nfolgenden Systemvoraussetzungen nicht erfüllt sind:";
|
|
Text[en-US] = "The extension cannot be installed as the following\nsystem dependencies are not fulfilled:";
|
|
NoLabel = TRUE;
|
|
};
|
|
ListBox RID_DLG_DEPENDENCIES_LIST {
|
|
Pos = MAP_APPFONT(
|
|
RSC_SP_DLG_INNERBORDER_LEFT,
|
|
(RSC_SP_DLG_INNERBORDER_TOP + LOCAL_TEXT_HEIGHT +
|
|
RSC_SP_CTRL_DESC_Y));
|
|
Size = MAP_APPFONT(LOCAL_WIDTH, LOCAL_LIST_HEIGHT);
|
|
};
|
|
OKButton RID_DLG_DEPENDENCIES_OK {
|
|
Pos = MAP_APPFONT(
|
|
(RSC_SP_DLG_INNERBORDER_LEFT +
|
|
(LOCAL_WIDTH - RSC_CD_PUSHBUTTON_WIDTH) / 2),
|
|
(RSC_SP_DLG_INNERBORDER_TOP + LOCAL_TEXT_HEIGHT +
|
|
RSC_SP_CTRL_DESC_Y + LOCAL_LIST_HEIGHT + RSC_SP_CTRL_Y));
|
|
Size = MAP_APPFONT(RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT);
|
|
DefButton = TRUE;
|
|
};
|
|
String RID_DLG_DEPENDENCIES_UNKNOWN {
|
|
Text[de] = "Unbekannt";
|
|
Text[en-US] = "Unknown";
|
|
};
|
|
};
|