Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java')
-rw-r--r--bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java30
1 files changed, 29 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
index 3854eb4af70..935b6db16fe 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
@@ -449,9 +449,13 @@ public class UIEvents {
public static final String TOPIC_DESCRIPTION = "org/eclipse/e4/ui/model/commands/Category/description/*"; //$NON-NLS-1$
public static final String TOPIC_NAME = "org/eclipse/e4/ui/model/commands/Category/name/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_NAME = "org/eclipse/e4/ui/model/commands/Category/localizedName/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String DESCRIPTION = "description"; //$NON-NLS-1$
public static final String NAME = "name"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_NAME = "localizedName"; //$NON-NLS-1$
}
@SuppressWarnings("javadoc")
@@ -468,11 +472,17 @@ public class UIEvents {
public static final String TOPIC_DESCRIPTION = "org/eclipse/e4/ui/model/commands/Command/description/*"; //$NON-NLS-1$
public static final String TOPIC_PARAMETERS = "org/eclipse/e4/ui/model/commands/Command/parameters/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_COMMANDNAME = "org/eclipse/e4/ui/model/commands/Command/localizedCommandName/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_DESCRIPTION = "org/eclipse/e4/ui/model/commands/Command/localizedDescription/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String CATEGORY = "category"; //$NON-NLS-1$
public static final String COMMANDNAME = "commandName"; //$NON-NLS-1$
public static final String DESCRIPTION = "description"; //$NON-NLS-1$
public static final String PARAMETERS = "parameters"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_COMMANDNAME = "localizedCommandName"; //$NON-NLS-1$
+ public static final String LOCALIZED_DESCRIPTION = "localizedDescription"; //$NON-NLS-1$
}
@SuppressWarnings("javadoc")
@@ -591,6 +601,8 @@ public class UIEvents {
public static final String TOPIC_MENUS = "org/eclipse/e4/ui/model/basic/PartDescriptor/menus/*"; //$NON-NLS-1$
public static final String TOPIC_TOOLBAR = "org/eclipse/e4/ui/model/basic/PartDescriptor/toolbar/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_DESCRIPTION = "org/eclipse/e4/ui/model/basic/PartDescriptor/localizedDescription/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String ALLOWMULTIPLE = "allowMultiple"; //$NON-NLS-1$
public static final String CATEGORY = "category"; //$NON-NLS-1$
@@ -600,6 +612,8 @@ public class UIEvents {
public static final String DIRTYABLE = "dirtyable"; //$NON-NLS-1$
public static final String MENUS = "menus"; //$NON-NLS-1$
public static final String TOOLBAR = "toolbar"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_DESCRIPTION = "localizedDescription"; //$NON-NLS-1$
}
@SuppressWarnings("javadoc")
@@ -767,11 +781,15 @@ public class UIEvents {
public static final String TOPIC_MENUS = "org/eclipse/e4/ui/model/basic/Part/menus/*"; //$NON-NLS-1$
public static final String TOPIC_TOOLBAR = "org/eclipse/e4/ui/model/basic/Part/toolbar/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_DESCRIPTION = "org/eclipse/e4/ui/model/basic/Part/localizedDescription/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String CLOSEABLE = "closeable"; //$NON-NLS-1$
public static final String DESCRIPTION = "description"; //$NON-NLS-1$
public static final String MENUS = "menus"; //$NON-NLS-1$
public static final String TOOLBAR = "toolbar"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_DESCRIPTION = "localizedDescription"; //$NON-NLS-1$
}
/**
@@ -982,6 +1000,8 @@ public class UIEvents {
public static final String TOPIC_VISIBLEWHEN = "org/eclipse/e4/ui/model/ui/UIElement/visibleWhen/*"; //$NON-NLS-1$
public static final String TOPIC_WIDGET = "org/eclipse/e4/ui/model/ui/UIElement/widget/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_ACCESSIBILITYPHRASE = "org/eclipse/e4/ui/model/ui/UIElement/localizedAccessibilityPhrase/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String ACCESSIBILITYPHRASE = "accessibilityPhrase"; //$NON-NLS-1$
public static final String CONTAINERDATA = "containerData"; //$NON-NLS-1$
@@ -993,6 +1013,8 @@ public class UIEvents {
public static final String VISIBLE = "visible"; //$NON-NLS-1$
public static final String VISIBLEWHEN = "visibleWhen"; //$NON-NLS-1$
public static final String WIDGET = "widget"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_ACCESSIBILITYPHRASE = "localizedAccessibilityPhrase"; //$NON-NLS-1$
}
@SuppressWarnings("javadoc")
@@ -1008,10 +1030,16 @@ public class UIEvents {
public static final String TOPIC_LABEL = "org/eclipse/e4/ui/model/ui/UILabel/label/*"; //$NON-NLS-1$
public static final String TOPIC_TOOLTIP = "org/eclipse/e4/ui/model/ui/UILabel/tooltip/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_LABEL = "org/eclipse/e4/ui/model/ui/UILabel/localizedLabel/*"; //$NON-NLS-1$
+ public static final String TOPIC_LOCALIZED_TOOLTIP = "org/eclipse/e4/ui/model/ui/UILabel/localizedTooltip/*"; //$NON-NLS-1$
+
// Attributes that can be tested in event handlers
public static final String ICONURI = "iconURI"; //$NON-NLS-1$
public static final String LABEL = "label"; //$NON-NLS-1$
public static final String TOOLTIP = "tooltip"; //$NON-NLS-1$
+
+ public static final String LOCALIZED_LABEL = "localizedLabel"; //$NON-NLS-1$
+ public static final String LOCALIZED_TOOLTIP = "localizedTooltip"; //$NON-NLS-1$
}
@SuppressWarnings("javadoc")
@@ -1282,4 +1310,4 @@ public class UIEvents {
// Attributes that can be tested in event handlers
public static final String TRIMCONTRIBUTIONS = "trimContributions"; //$NON-NLS-1$
}
-} \ No newline at end of file
+}

Back to the top