summaryrefslogtreecommitdiff
path: root/wizards/com/sun
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-08-13 11:35:38 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-08-13 15:57:27 +0100
commitf57d0649b913f0192ed90de4082ff449f1f7083b (patch)
treea04c702ab421cf0be5bffe8bfd1be352dc872e35 /wizards/com/sun
parente554121fcabefa01b531c1b5b63c227f5a9a97fa (diff)
misc. cleanup.
Diffstat (limited to 'wizards/com/sun')
-rw-r--r--wizards/com/sun/star/wizards/form/FormWizard.java18
-rw-r--r--wizards/com/sun/star/wizards/form/StyleApplier.java18
2 files changed, 17 insertions, 19 deletions
diff --git a/wizards/com/sun/star/wizards/form/FormWizard.java b/wizards/com/sun/star/wizards/form/FormWizard.java
index 00e8326aa958..f1a2ad047f92 100644
--- a/wizards/com/sun/star/wizards/form/FormWizard.java
+++ b/wizards/com/sun/star/wizards/form/FormWizard.java
@@ -228,7 +228,10 @@ public class FormWizard extends DatabaseObjectWizard
insertLabel("lblBinaryHelpText",
new String[]
{
- PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_LABEL, PropertyNames.PROPERTY_MULTILINE, PropertyNames.PROPERTY_POSITION_X, PropertyNames.PROPERTY_POSITION_Y, PropertyNames.PROPERTY_STEP, PropertyNames.PROPERTY_WIDTH
+ PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_LABEL,
+ PropertyNames.PROPERTY_MULTILINE, PropertyNames.PROPERTY_POSITION_X,
+ PropertyNames.PROPERTY_POSITION_Y, PropertyNames.PROPERTY_STEP,
+ PropertyNames.PROPERTY_WIDTH
},
new Object[]
{
@@ -243,7 +246,10 @@ public class FormWizard extends DatabaseObjectWizard
insertLabel("lblSubFormBinaryHelpText",
new String[]
{
- PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_LABEL, PropertyNames.PROPERTY_MULTILINE, PropertyNames.PROPERTY_POSITION_X, PropertyNames.PROPERTY_POSITION_Y, PropertyNames.PROPERTY_STEP, PropertyNames.PROPERTY_WIDTH
+ PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_LABEL,
+ PropertyNames.PROPERTY_MULTILINE, PropertyNames.PROPERTY_POSITION_X,
+ PropertyNames.PROPERTY_POSITION_Y, PropertyNames.PROPERTY_STEP,
+ PropertyNames.PROPERTY_WIDTH
},
new Object[]
{
@@ -442,11 +448,11 @@ public class FormWizard extends DatabaseObjectWizard
private boolean toggleSubFormSteps()
{
curSubFormFieldSelection.setModified(true);
- boolean enabled = curSubFormFieldSelection.getSelectedFieldNames().length > 0;
- enablefromStep(SOFIELDLINKER_PAGE, enabled);
- if (enabled)
+ boolean benabled = curSubFormFieldSelection.getSelectedFieldNames().length > 0;
+ enablefromStep(SOFIELDLINKER_PAGE, benabled);
+ if (benabled)
curFieldLinker.enable(!curFormConfiguration.areexistingRelationsdefined());
- return enabled;
+ return benabled;
}
private void toggleMainFormSteps()
diff --git a/wizards/com/sun/star/wizards/form/StyleApplier.java b/wizards/com/sun/star/wizards/form/StyleApplier.java
index 677f1277d9a0..d1a4df1ed1b2 100644
--- a/wizards/com/sun/star/wizards/form/StyleApplier.java
+++ b/wizards/com/sun/star/wizards/form/StyleApplier.java
@@ -38,9 +38,7 @@ import com.sun.star.wizards.document.DatabaseControl;
import com.sun.star.wizards.document.GridControl;
import com.sun.star.wizards.document.TimeStampControl;
import com.sun.star.wizards.text.TextStyleHandler;
-import com.sun.star.wizards.ui.UIConsts;
-import com.sun.star.wizards.ui.UnoDialog;
-import com.sun.star.wizards.ui.WizardDialog;
+import com.sun.star.wizards.ui.*;
public class StyleApplier
{
@@ -51,6 +49,7 @@ public class StyleApplier
private short curtabindex;
private XRadioButton optNoBorder;
private XRadioButton opt3DLook;
+ private XRadioButton optFlat;
private XListBox lstStyles;
private FormDocument curFormDocument;
private short iOldLayoutPos;
@@ -67,8 +66,6 @@ public class StyleApplier
public StyleApplier(WizardDialog _CurUnoDialog, FormDocument _curFormDocument) throws NoValidPathException
{
-// try
-// {
this.curFormDocument = _curFormDocument;
xMSF = curFormDocument.xMSF;
@@ -129,7 +126,7 @@ public class StyleApplier
UIConsts.INTEGERS[10], "HID:WIZARDS_HID_DLGFORM_CMD3DBORDER", s3DLook, 196, 53, new Short((short) 1), IStyleStep, new Short(curtabindex++), "1", 93
});
- CurUnoDialog.insertRadioButton("otpFlat", SCHANGEBORDERTYPE, this,
+ optFlat = CurUnoDialog.insertRadioButton("otpFlat", SCHANGEBORDERTYPE, this,
new String[]
{
PropertyNames.PROPERTY_HEIGHT, PropertyNames.PROPERTY_HELPURL, PropertyNames.PROPERTY_LABEL, PropertyNames.PROPERTY_POSITION_X, PropertyNames.PROPERTY_POSITION_Y, PropertyNames.PROPERTY_STEP, PropertyNames.PROPERTY_TABINDEX, "Tag", PropertyNames.PROPERTY_WIDTH
@@ -148,11 +145,6 @@ public class StyleApplier
{
UIConsts.INTEGERS[8], sFieldBorder, 192, 25, IStyleStep, new Short(curtabindex++), 98
});
-// }
-// catch (Exception e)
-// {
-// e.printStackTrace(System.err);
-// }
}
private void setStyles()
@@ -202,7 +194,7 @@ public class StyleApplier
if (iStyle > -1)
{
iOldLayoutPos = iStyle;
- String sFileName = FileNames[iStyle]; //Style = lstStyles.getSelectedItem();
+ String sFileName = FileNames[iStyle];
int[] iStyles = getStyleColors(sFileName);
applyDBControlProperties(iStyles);
}
@@ -215,7 +207,7 @@ public class StyleApplier
if (iPos != iOldLayoutPos)
{
iOldLayoutPos = iPos;
- String sFileName = FileNames[iPos]; //Style = lstStyles.getSelectedItem();
+ String sFileName = FileNames[iPos];
int[] iStyles = getStyleColors(sFileName);
applyDBControlProperties(iStyles);
}