Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-03-03 16:41:50 +0000
committerslewis2008-03-03 16:41:50 +0000
commitfe1e98d3b2620d1b0e6798dfd88983df39bced95 (patch)
tree5ccb247ad00ca2dc34208de13e45fb25458750b8 /framework/bundles/org.eclipse.ecf.presence.ui
parent4322698b322359db1ea9af9e3bafb43f57dc8c9c (diff)
downloadorg.eclipse.ecf-fe1e98d3b2620d1b0e6798dfd88983df39bced95.tar.gz
org.eclipse.ecf-fe1e98d3b2620d1b0e6798dfd88983df39bced95.tar.xz
org.eclipse.ecf-fe1e98d3b2620d1b0e6798dfd88983df39bced95.zip
Patch applied for bug 205532
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.presence.ui')
-rw-r--r--framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/chatroom/ChatRoomManagerView.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/chatroom/ChatRoomManagerView.java b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/chatroom/ChatRoomManagerView.java
index 319e74190..4f2449472 100644
--- a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/chatroom/ChatRoomManagerView.java
+++ b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/chatroom/ChatRoomManagerView.java
@@ -116,7 +116,7 @@ public class ChatRoomManagerView extends ViewPart implements IChatRoomInvitation
private SashForm rightSash;
- private Text subjectText;
+ private StyledText subjectText;
private StyledText outputText;
@@ -176,7 +176,7 @@ public class ChatRoomManagerView extends ViewPart implements IChatRoomInvitation
Composite rightComp = new Composite(fullChat, SWT.NONE);
rightComp.setLayout(layout);
- subjectText = new Text(rightComp, SWT.SINGLE | SWT.BORDER);
+ subjectText = createStyledTextWidget(rightComp, SWT.SINGLE | SWT.BORDER);
subjectText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
subjectText.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent evt) {
@@ -201,7 +201,7 @@ public class ChatRoomManagerView extends ViewPart implements IChatRoomInvitation
} else
rightSash = new SashForm(parent, SWT.VERTICAL);
- outputText = createStyledTextWidget(rightSash);
+ outputText = createStyledTextWidget(rightSash, SWT.BORDER | SWT.WRAP | SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY);
outputText.setEditable(false);
outputText.setLayoutData(new GridData(GridData.FILL_BOTH));
@@ -272,18 +272,18 @@ public class ChatRoomManagerView extends ViewPart implements IChatRoomInvitation
item.setFont(new Font(oldFont.getDevice(), fd[0].getName(), fd[0].getHeight(), (bold) ? SWT.BOLD : SWT.NORMAL));
}
- private StyledText createStyledTextWidget(Composite parent) {
+ private StyledText createStyledTextWidget(Composite parent, int styles) {
try {
- SourceViewer result = new SourceViewer(parent, null, null, true, SWT.BORDER | SWT.WRAP | SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY);
+ SourceViewer result = new SourceViewer(parent, null, null, true, styles);
result.configure(new TextSourceViewerConfiguration(EditorsUI.getPreferenceStore()));
result.setDocument(new Document());
return result.getTextWidget();
} catch (Exception e) {
Activator.getDefault().getLog().log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, IStatus.WARNING, Messages.ChatRoomManagerView_WARNING_HYPERLINKING_NOT_AVAILABLE, e));
- return new StyledText(parent, SWT.BORDER | SWT.WRAP | SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY);
+ return new StyledText(parent, styles);
} catch (NoClassDefFoundError e) {
Activator.getDefault().getLog().log(new Status(IStatus.WARNING, Activator.PLUGIN_ID, IStatus.WARNING, Messages.ChatRoomManagerView_WARNING_HYPERLINKING_NOT_AVAILABLE, e));
- return new StyledText(parent, SWT.BORDER | SWT.WRAP | SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY);
+ return new StyledText(parent, styles);
}
}

Back to the top