INTEGRATION: CWS toolkit01 (1.7.32); FILE MERGED
2005/02/28 13:05:38 bc 1.7.32.3: #i43668#incrementation of hid for help button removed Issue number: Submitted by: Reviewed by: 2005/02/25 12:08:52 bc 1.7.32.2: RESYNC: (1.7-1.8); FILE MERGED 2005/02/23 17:38:47 bc 1.7.32.1: ##several changes in Webwizard
This commit is contained in:
parent
5ae44f4ff0
commit
e2fdf3054f
1 changed files with 4 additions and 8 deletions
|
@ -2,9 +2,9 @@
|
||||||
*
|
*
|
||||||
* $RCSfile: WizardDialog.java,v $
|
* $RCSfile: WizardDialog.java,v $
|
||||||
*
|
*
|
||||||
* $Revision: 1.9 $
|
* $Revision: 1.10 $
|
||||||
*
|
*
|
||||||
* last change: $Author: kz $ $Date: 2005-03-01 17:57:13 $
|
* last change: $Author: vg $ $Date: 2005-03-08 15:46:38 $
|
||||||
*
|
*
|
||||||
* The Contents of this file are made available subject to the terms of
|
* The Contents of this file are made available subject to the terms of
|
||||||
* either of the following licenses
|
* either of the following licenses
|
||||||
|
@ -130,7 +130,8 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
|
||||||
return oWizardResource;
|
return oWizardResource;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void activate() {
|
|
||||||
|
public void activate() {
|
||||||
try {
|
try {
|
||||||
XTopWindow top = (XTopWindow)UnoRuntime.queryInterface(XTopWindow.class, xWindow );
|
XTopWindow top = (XTopWindow)UnoRuntime.queryInterface(XTopWindow.class, xWindow );
|
||||||
if (top != null)
|
if (top != null)
|
||||||
|
@ -365,9 +366,6 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void drawNaviBar() {
|
public void drawNaviBar() {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -396,10 +394,8 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
|
||||||
String[] propNames = new String[] { "Enabled", "Height", "HelpURL", "Label", "PositionX", "PositionY", "PushButtonType", "Step", "TabIndex", "Width" };
|
String[] propNames = new String[] { "Enabled", "Height", "HelpURL", "Label", "PositionX", "PositionY", "PushButtonType", "Step", "TabIndex", "Width" };
|
||||||
|
|
||||||
Helper.setUnoPropertyValue(super.xDialogModel, "HelpURL", "HID:" + hid);
|
Helper.setUnoPropertyValue(super.xDialogModel, "HelpURL", "HID:" + hid);
|
||||||
|
|
||||||
insertButton("btnWizardHelp", HELP_ACTION_PERFORMED, new String[] { "Enabled", "Height", "Label", "PositionX", "PositionY", "PushButtonType", "Step", "TabIndex", "Width" } ,
|
insertButton("btnWizardHelp", HELP_ACTION_PERFORMED, new String[] { "Enabled", "Height", "Label", "PositionX", "PositionY", "PushButtonType", "Step", "TabIndex", "Width" } ,
|
||||||
new Object[] { new Boolean(true), IButtonHeight, oWizardResource.getResText(UIConsts.RID_COMMON + 15), new Integer(iHelpPosX), new Integer(iBtnPosY), new Short((short)PushButtonType.HELP_value), ICurStep, new Short(curtabindex++), IButtonWidth });
|
new Object[] { new Boolean(true), IButtonHeight, oWizardResource.getResText(UIConsts.RID_COMMON + 15), new Integer(iHelpPosX), new Integer(iBtnPosY), new Short((short)PushButtonType.HELP_value), ICurStep, new Short(curtabindex++), IButtonWidth });
|
||||||
hid++;
|
|
||||||
insertButton("btnWizardBack", BACK_ACTION_PERFORMED, propNames ,
|
insertButton("btnWizardBack", BACK_ACTION_PERFORMED, propNames ,
|
||||||
new Object[] { new Boolean(false), IButtonHeight, "HID:" + (hid + 2) ,oWizardResource.getResText(UIConsts.RID_COMMON + 13), new Integer(iBackPosX), new Integer(iBtnPosY), new Short((short)PushButtonType.STANDARD_value), ICurStep, new Short(curtabindex++), IButtonWidth });
|
new Object[] { new Boolean(false), IButtonHeight, "HID:" + (hid + 2) ,oWizardResource.getResText(UIConsts.RID_COMMON + 13), new Integer(iBackPosX), new Integer(iBtnPosY), new Short((short)PushButtonType.STANDARD_value), ICurStep, new Short(curtabindex++), IButtonWidth });
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue