summaryrefslogtreecommitdiff
path: root/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs
diff options
context:
space:
mode:
Diffstat (limited to 'javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs')
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java8
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java34
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java34
3 files changed, 38 insertions, 38 deletions
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java
index 9df39ec2d517..2d0682bbdd9c 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DatabaseDialog.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -38,7 +38,7 @@ import javax.swing.border.EmptyBorder;
import org.openoffice.setup.ResourceManager;
public class DatabaseDialog extends JDialog {
-
+
public DatabaseDialog(SetupFrame setupFrame) {
// super(setupFrame.getDialog());
@@ -48,12 +48,12 @@ public class DatabaseDialog extends JDialog {
setTitle(text1);
this.getContentPane().setLayout(new java.awt.BorderLayout());
-
+
JPanel toppanel = new JPanel();
toppanel.setLayout(new java.awt.BorderLayout());
toppanel.setBorder(new EmptyBorder(new Insets(50, 50, 50, 50)));
- PanelLabel label1 = new PanelLabel(text2);
+ PanelLabel label1 = new PanelLabel(text2);
toppanel.add(label1, BorderLayout.NORTH);
Container contentPane = this.getContentPane();
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java
index c21d1e663cae..af72ef8cee3d 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/DetailsDialog.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -52,7 +52,7 @@ public class DetailsDialog extends JDialog implements ActionListener {
private JButton okButton;
private String helpFileName;
private String helpFileString;
-
+
public DetailsDialog(SetupFrame setupFrame) {
super(setupFrame.getDialog());
@@ -61,14 +61,14 @@ public class DetailsDialog extends JDialog implements ActionListener {
String dialogTitle = ResourceManager.getString("String_InstallationCompleted_Button");
String dialogText = setupFrame.getCurrentPanel().getDialogText();
-
+
setTitle(dialogTitle);
this.getContentPane().setLayout(new java.awt.BorderLayout());
-
+
JPanel toppanel = new JPanel();
toppanel.setLayout(new java.awt.BorderLayout());
toppanel.setBorder(new EmptyBorder(new Insets(5, 10, 5, 10)));
-
+
JPanel buttonpanel = new JPanel();
buttonpanel.setLayout(new java.awt.FlowLayout());
buttonpanel.setBorder(new EmptyBorder(new Insets(5, 10, 5, 10)));
@@ -101,39 +101,39 @@ public class DetailsDialog extends JDialog implements ActionListener {
okButton.addActionListener(this);
JSeparator separator = new JSeparator();
-
+
// toppanel.add(label1, BorderLayout.NORTH);
- // toppanel.add(label2, BorderLayout.CENTER);
- buttonpanel.add(okButton);
+ // toppanel.add(label2, BorderLayout.CENTER);
+ buttonpanel.add(okButton);
this.getContentPane().add(toppanel, BorderLayout.NORTH);
this.getContentPane().add(editorScrollPane, BorderLayout.CENTER);
this.getContentPane().add(buttonpanel, BorderLayout.SOUTH);
-
+
// JScrollBar ScrollBar = editorScrollPane.getVerticalScrollBar();
// if ( ScrollBar.isShowing() ) {
// editorPane.setFocusable(false);
// } else {
- // editorPane.setFocusable(true);
+ // editorPane.setFocusable(true);
// }
-
- // Setting tab-order and focus on okButton
+
+ // Setting tab-order and focus on okButton
DialogFocusTraversalPolicy policy = new DialogFocusTraversalPolicy(new JComponent[] {okButton, editorScrollPane});
this.setFocusTraversalPolicy(policy); // set policy
this.setFocusCycleRoot(true); // enable policy
}
-
+
private JEditorPane createEditorPane(String dialogText) {
JEditorPane editorPane = new JEditorPane();
editorPane.setEditable(false);
editorPane.setContentType("text/html");
- editorPane.setText(dialogText);
+ editorPane.setText(dialogText);
return editorPane;
- }
-
+ }
+
public void actionPerformed (java.awt.event.ActionEvent evt) {
setVisible(false);
- dispose();
+ dispose();
}
}
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java
index 3fd9b1976e0c..ecc8afdcebc6 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Dialogs/HelpDialog.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -53,22 +53,22 @@ public class HelpDialog extends JDialog implements ActionListener {
private JScrollPane editorScrollPane;
private String helpFileName;
private String helpFileString;
-
+
public HelpDialog(SetupFrame setupFrame) {
super(setupFrame.getDialog());
InstallData data = InstallData.getInstance();
-
+
helpFileString = setupFrame.getCurrentPanel().getHelpFileName();
helpFileName = ResourceManager.getFileName(helpFileString);
// String dialogName = setupFrame.getCurrentPanel().getName();
-
- String helpTitle = ResourceManager.getString("String_Help");
+
+ String helpTitle = ResourceManager.getString("String_Help");
setTitle(helpTitle);
// setLayout(new java.awt.BorderLayout());
this.getContentPane().setLayout(new java.awt.BorderLayout());
-
+
JPanel toppanel = new JPanel();
toppanel.setLayout(new java.awt.BorderLayout());
toppanel.setBorder(new EmptyBorder(new Insets(5, 10, 5, 10)));
@@ -89,11 +89,11 @@ public class HelpDialog extends JDialog implements ActionListener {
// String helpTitle1 = null;
// InstallData data = InstallData.getInstance();
// if ( data.isInstallationMode() ) {
- // helpTitle1 = ResourceManager.getString("String_Help_Title_1");
+ // helpTitle1 = ResourceManager.getString("String_Help_Title_1");
// } else {
// helpTitle1 = ResourceManager.getString("String_Help_Title_1_Uninstallation");
// }
-
+
// PanelLabel label1 = new PanelLabel(helpTitle1, true);
// String helpTitle2 = ResourceManager.getString("String_Help_Title_2");
// PanelLabel label2 = new PanelLabel(helpTitle2);
@@ -105,21 +105,21 @@ public class HelpDialog extends JDialog implements ActionListener {
if ( data.useRtl() ) { okButton.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); }
JSeparator separator = new JSeparator();
-
+
// toppanel.add(label1, BorderLayout.NORTH);
- // toppanel.add(label2, BorderLayout.CENTER);
- buttonpanel.add(okButton);
+ // toppanel.add(label2, BorderLayout.CENTER);
+ buttonpanel.add(okButton);
this.getContentPane().add(toppanel, BorderLayout.NORTH);
this.getContentPane().add(editorScrollPane, BorderLayout.CENTER);
this.getContentPane().add(buttonpanel, BorderLayout.SOUTH);
- // Setting tab-order and focus on okButton
+ // Setting tab-order and focus on okButton
DialogFocusTraversalPolicy policy = new DialogFocusTraversalPolicy(new JComponent[] {okButton, editorScrollPane});
this.setFocusTraversalPolicy(policy); // set policy
this.setFocusCycleRoot(true); // enable policy
}
-
+
private JEditorPane createEditorPane() {
JEditorPane editorPane = new JEditorPane();
editorPane.setEditable(false);
@@ -145,10 +145,10 @@ public class HelpDialog extends JDialog implements ActionListener {
else {
System.err.println("Did not find html directory");
}
-
+
return editorPane;
}
-
+
// public void setTabForScrollPane() {
// JScrollBar ScrollBar = editorScrollPane.getVerticalScrollBar();
// editorPane.setFocusable(true);
@@ -157,10 +157,10 @@ public class HelpDialog extends JDialog implements ActionListener {
// editorPane.setFocusable(false);
// }
// }
-
+
public void actionPerformed (java.awt.event.ActionEvent evt) {
setVisible(false);
- dispose();
+ dispose();
}
}