summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShireesh Anjal <shireesh@gluster.com>2011-11-09 14:40:03 +0530
committerShireesh Anjal <shireesh@gluster.com>2011-11-09 14:40:03 +0530
commitbfdda1da5d8bf074dcff0ec4f35ea324bbcbb46e (patch)
treee2f51206ff55c17ca863fb8c7166f505ea43cce2
parentd658c53b0599c067da9ae032b65d88fa057a3fc2 (diff)
Added tooltips for the select, create and register radio buttons on the cluster selection dialog.
-rw-r--r--src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/ClusterSelectionDialog.java13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/ClusterSelectionDialog.java b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/ClusterSelectionDialog.java
index ac510f5e..e5481862 100644
--- a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/ClusterSelectionDialog.java
+++ b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/ClusterSelectionDialog.java
@@ -50,6 +50,10 @@ import com.gluster.storage.management.console.utils.GUIHelper;
* Cluster selection dialog, which prompts for the cluster name to be managed
*/
public class ClusterSelectionDialog extends Dialog {
+ private static final String MESSAGE_SELECT_CLUSTER = "Select the Cluster you want to manage in this session.";
+ private static final String MESSAGE_CREATE_CLUSTER = "Create an empty Cluster and start adding servers to it.";
+ private static final String MESSAGE_REGISTER_CLUSTER = "Register an existing Cluster with the Management Gateway and start managing it using the Management Console.";
+
protected enum CLUSTER_MODE { SELECT, CREATE, REGISTER };
private Combo clusterNameCombo = null;
@@ -250,15 +254,15 @@ public class ClusterSelectionDialog extends Dialog {
clusterSelectionComposite = new Composite(subComposite, SWT.NONE);
GridLayout layout = new GridLayout(2, false);
clusterSelectionComposite.setLayout(layout);
+
createClusterNameLabel(clusterSelectionComposite);
createClusterNameCombo(clusterSelectionComposite);
-
- createPreferenceCheckboxes(clusterSelectionComposite);
+ createPreferenceCheckbox(clusterSelectionComposite);
stackLayout.topControl = clusterSelectionComposite;
}
- private void createPreferenceCheckboxes(Composite composite) {
+ private void createPreferenceCheckbox(Composite composite) {
GridData layoutData = new GridData(SWT.FILL, SWT.FILL, true, false);
layoutData.verticalIndent = 5;
layoutData.horizontalSpan = 2;
@@ -277,15 +281,18 @@ public class ClusterSelectionDialog extends Dialog {
if (clusters.size() > 0) {
selectButton = new Button(composite, SWT.RADIO);
selectButton.setText("&Select");
+ selectButton.setToolTipText(MESSAGE_SELECT_CLUSTER);
}
}
{
createButton = new Button(composite, SWT.RADIO);
createButton.setText("&Create");
+ createButton.setToolTipText(MESSAGE_CREATE_CLUSTER);
}
{
registerButton = new Button(composite, SWT.RADIO);
registerButton.setText("&Register");
+ registerButton.setToolTipText(MESSAGE_REGISTER_CLUSTER);
}
}