Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuzannah Smith2017-01-20 21:51:11 +0000
committerJaxsun McCarthy Huggan2017-02-14 19:16:30 +0000
commit17179792da7d4afa33ccdbef0d00709a06701e7a (patch)
tree9b6dfe6267914e2a5069ea8be2d64ceb3a59d1c2
parent7b6e42d19a805b1e77d8fea6c97186ab559abd07 (diff)
downloadorg.eclipse.mylyn.tasks-17179792da7d4afa33ccdbef0d00709a06701e7a.tar.gz
org.eclipse.mylyn.tasks-17179792da7d4afa33ccdbef0d00709a06701e7a.tar.xz
org.eclipse.mylyn.tasks-17179792da7d4afa33ccdbef0d00709a06701e7a.zip
376023: add Gravatar images to expanded task editor comments
Change-Id: I760fbb122db0f052fd69fd61cce90391a8c138e3 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=376023 Signed-off-by: Suzannah Smith <ssmith13@unb.ca>
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorCommentPart.java88
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/UserAttributeEditor.java17
2 files changed, 79 insertions, 26 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorCommentPart.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorCommentPart.java
index 9cb5c0436..e8cec3ed6 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorCommentPart.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/TaskEditorCommentPart.java
@@ -285,7 +285,11 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
private final TaskComment taskComment;
- private AbstractAttributeEditor editor;
+ private Composite commentViewer;
+
+ private Composite userImageComposite;
+
+ private AbstractAttributeEditor commentTextEditor;
private boolean suppressSelectionChanged;
@@ -310,21 +314,22 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
buttonComposite = createTitle(commentComposite, toolkit);
- Composite commentTextComposite = toolkit.createComposite(commentComposite);
- commentComposite.setClient(commentTextComposite);
- commentTextComposite
+ Composite commentViewerComposite = toolkit.createComposite(commentComposite);
+ commentComposite.setClient(commentViewerComposite);
+ commentViewerComposite
.setLayout(new FillWidthLayout(EditorUtil.getLayoutAdvisor(getTaskEditorPage()), 15, 0, 0, 3));
+
commentComposite.addExpansionListener(new ExpansionAdapter() {
@Override
public void expansionStateChanged(ExpansionEvent event) {
- expandComment(toolkit, commentTextComposite, event.getState());
+ expandComment(toolkit, commentViewerComposite, event.getState());
}
});
if (hasIncomingChanges) {
commentComposite.setBackground(getTaskEditorPage().getAttributeEditorToolkit().getColorIncoming());
}
if (commentComposite.isExpanded()) {
- expandComment(toolkit, commentTextComposite, true);
+ expandComment(toolkit, commentViewerComposite, true);
}
// for outline
@@ -341,7 +346,7 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
rowLayout.marginLeft = 0;
rowLayout.marginBottom = 0;
rowLayout.marginTop = 0;
- EditorUtil.center(rowLayout);
+ rowLayout.center = true;
titleComposite.setLayout(rowLayout);
titleComposite.setBackground(null);
@@ -413,29 +418,65 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
private void expandComment(FormToolkit toolkit, Composite composite, boolean expanded) {
buttonComposite.setVisible(expanded);
if (expanded && composite.getData(KEY_EDITOR) == null) {
- // create viewer
+ commentViewer = toolkit.createComposite(composite);
+ commentViewer.setLayout(new GridLayout(2, false));
+ commentViewer.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_BEGINNING));
+
+ //Create user image viewer
+ boolean showAvatar = Boolean.parseBoolean(getModel().getTaskRepository()
+ .getProperty(TaskEditorExtensions.REPOSITORY_PROPERTY_AVATAR_SUPPORT));
+ if (showAvatar) {
+ String commentAuthor = getTaskData().getAttributeMapper().mapToRepositoryKey(commentAttribute,
+ TaskAttribute.COMMENT_AUTHOR);
+ TaskAttribute userImageAttribute = commentAttribute.getAttribute(commentAuthor);
+
+ if (userImageAttribute != null) {
+ userImageComposite = toolkit.createComposite(commentViewer);
+ userImageComposite.setLayout(new GridLayout(1, false));
+ GridDataFactory.swtDefaults().align(SWT.LEFT, SWT.BEGINNING).applyTo(userImageComposite);
+ toolkit.paintBordersFor(userImageComposite);
+
+ UserAttributeEditor userImage = new UserAttributeEditor(getModel(), userImageAttribute, 30);
+ userImage.createControl(userImageComposite, toolkit);
+
+ userImage.refresh();
+ }
+ }
+
+ //Create comment text viewer
TaskAttribute textAttribute = getTaskData().getAttributeMapper()
.getAssoctiatedAttribute(taskComment.getTaskAttribute());
- editor = createAttributeEditor(textAttribute);
- if (editor != null) {
- editor.setDecorationEnabled(false);
- editor.createControl(composite, toolkit);
- editor.getControl().addMouseListener(new MouseAdapter() {
+ commentTextEditor = createAttributeEditor(textAttribute);
+ if (commentTextEditor != null) {
+ commentTextEditor.setDecorationEnabled(false);
+ commentTextEditor.createControl(commentViewer, toolkit);
+ GridData commentGridData = new GridData(GridData.FILL_HORIZONTAL);
+ commentGridData.verticalAlignment = GridData.BEGINNING;
+ commentTextEditor.getControl().setLayoutData(commentGridData);
+
+ commentTextEditor.getControl().addMouseListener(new MouseAdapter() {
@Override
public void mouseDown(MouseEvent e) {
getTaskEditorPage().selectionChanged(taskComment);
}
});
- composite.setData(KEY_EDITOR, editor);
+ composite.setData(KEY_EDITOR, commentTextEditor);
- getTaskEditorPage().getAttributeEditorToolkit().adapt(editor);
+ getTaskEditorPage().getAttributeEditorToolkit().adapt(commentTextEditor);
reflow();
}
} else if (!expanded && composite.getData(KEY_EDITOR) != null) {
// dispose viewer
- AbstractAttributeEditor editor = (AbstractAttributeEditor) composite.getData(KEY_EDITOR);
- editor.getControl().setMenu(null);
- editor.getControl().dispose();
+ commentTextEditor.getControl().setMenu(null);
+ commentTextEditor.getControl().dispose();
+ if (userImageComposite != null) {
+ userImageComposite.setMenu(null);
+ userImageComposite.dispose();
+ }
+ if (commentViewer != null) {
+ commentViewer.setMenu(null);
+ commentViewer.dispose();
+ }
composite.setData(KEY_EDITOR, null);
reflow();
}
@@ -460,7 +501,7 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
* @return null, if the viewer has not been constructed
*/
public AbstractAttributeEditor getEditor() {
- return editor;
+ return commentTextEditor;
}
public TaskAttribute getTaskAttribute() {
@@ -481,8 +522,8 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
public String getReplyToText() {
String replyText = taskComment.getText();
- if (editor != null && editor.getControl() != null && !editor.getControl().isDisposed()) {
- Control textControl = getEditor().getControl();
+ if (hasTextControl()) {
+ Control textControl = commentTextEditor.getControl();
if (textControl instanceof StyledText) {
String selectedText = ((StyledText) textControl).getSelectionText();
if (!Strings.isNullOrEmpty(selectedText)) {
@@ -493,6 +534,11 @@ public class TaskEditorCommentPart extends AbstractTaskEditorPart {
return replyText;
}
+ private boolean hasTextControl() {
+ return commentTextEditor != null && commentTextEditor.getControl() != null
+ && !commentTextEditor.getControl().isDisposed();
+ }
+
}
private class ReplyToCommentAction extends AbstractReplyToCommentAction {
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/UserAttributeEditor.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/UserAttributeEditor.java
index 3d598a6dc..8b3e58532 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/UserAttributeEditor.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/UserAttributeEditor.java
@@ -47,7 +47,7 @@ import org.eclipse.ui.forms.widgets.FormToolkit;
*/
public class UserAttributeEditor extends AbstractAttributeEditor {
- private static final int IMAGE_SIZE = 48;
+ private int imageSize = 48;
private Label label;
@@ -77,6 +77,11 @@ public class UserAttributeEditor extends AbstractAttributeEditor {
setLayoutHint(new LayoutHint(RowSpan.SINGLE, ColumnSpan.SINGLE));
}
+ public UserAttributeEditor(TaskDataModel manager, TaskAttribute taskAttribute, int imageSize) {
+ this(manager, taskAttribute);
+ this.imageSize = imageSize;
+ }
+
protected Image updateImage(IProfileImage profileImage) {
if (image != null) {
image.dispose();
@@ -84,12 +89,14 @@ public class UserAttributeEditor extends AbstractAttributeEditor {
ImageData data;
if (profileImage != null) {
data = new ImageData(new ByteArrayInputStream(profileImage.getData()));
- if (data.width != IMAGE_SIZE || data.height != IMAGE_SIZE) {
- data = data.scaledTo(IMAGE_SIZE, IMAGE_SIZE);
- }
} else {
data = CommonImages.PERSON_LARGE.getImageData();
}
+
+ if (data.width != imageSize || data.height != imageSize) {
+ data = data.scaledTo(imageSize, imageSize);
+ }
+
image = new Image(label.getDisplay(), data);
label.setImage(image);
return image;
@@ -145,7 +152,7 @@ public class UserAttributeEditor extends AbstractAttributeEditor {
if (identityService != null) {
identity = identityService.getIdentity(account);
identity.addPropertyChangeListener(imageListener);
- Future<IProfileImage> result = identity.requestImage(IMAGE_SIZE, IMAGE_SIZE);
+ Future<IProfileImage> result = identity.requestImage(imageSize, imageSize);
if (result.isDone()) {
try {
updateImage(result.get(0, TimeUnit.SECONDS));

Back to the top