Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/IBrandManager.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/IBrandManager.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/IBrandManager.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/IBrandManager.java
new file mode 100644
index 000000000..08d6a5388
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/IBrandManager.java
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * Copyright (c) 2015 Tasktop Technologies and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.internal.tasks.ui;
+
+import java.util.Collection;
+
+import org.eclipse.jdt.annotation.Nullable;
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.mylyn.tasks.core.AbstractRepositoryConnector;
+import org.eclipse.mylyn.tasks.core.ITask;
+import org.eclipse.mylyn.tasks.core.TaskRepository;
+import org.eclipse.swt.graphics.Image;
+
+public interface IBrandManager {
+
+ public Image getBrandingIcon(TaskRepository repository);
+
+ public ImageDescriptor getOverlayIcon(TaskRepository repository);
+
+ public ImageDescriptor getOverlayIcon(ITask task);
+
+ /**
+ * Returns the branding icon for the given connector kind and brand. Returns the default icon for the repository
+ * type if the brand is <code>null</code> or is unknown to the connector.
+ */
+ public Image getBrandingIcon(String connectorKind, @Nullable String brand);
+
+ /**
+ * Returns the overlay icon for the given connector kind and brand. Returns the default icon for the repository type
+ * if the brand is <code>null</code> or is unknown to the connector.
+ */
+ public ImageDescriptor getOverlayIcon(String connectorKind, @Nullable String brand);
+
+ /**
+ * Returns the connector label for the given connector and brand. Returns the default label for the connector if the
+ * brand is <code>null</code> or is unknown to the connector.
+ */
+ public String getConnectorLabel(AbstractRepositoryConnector connector, @Nullable String brand);
+
+ /**
+ * Returns the brands known to the given connector.
+ */
+ public Collection<String> getBrands(String connectorKind);
+
+ public Image getDefaultBrandingIcon(String connectorKind);
+
+ public ImageDescriptor getDefaultOverlayIcon(String connectorKind);
+
+} \ No newline at end of file

Back to the top