Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 36435 Details for
Bug 127658
[Dialogs] help icon beween status and buttons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
new proposal
org.eclipse.jface_127658.txt (text/plain), 1.77 KB, created by
Curtis d'Entremont
on 2006-03-16 14:26:21 EST
(
hide
)
Description:
new proposal
Filename:
MIME Type:
Creator:
Curtis d'Entremont
Created:
2006-03-16 14:26:21 EST
Size:
1.77 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jface >Index: src/org/eclipse/jface/dialogs/StatusDialog.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.jface/src/org/eclipse/jface/dialogs/StatusDialog.java,v >retrieving revision 1.7 >diff -u -r1.7 StatusDialog.java >--- src/org/eclipse/jface/dialogs/StatusDialog.java 24 Feb 2006 16:25:03 -0000 1.7 >+++ src/org/eclipse/jface/dialogs/StatusDialog.java 16 Mar 2006 18:45:45 -0000 >@@ -220,16 +220,33 @@ > } > > layout.marginHeight = 0; >- layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN); >+ layout.marginLeft = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN); >+ layout.marginWidth = 0; > composite.setLayout(layout); > composite.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); > >+ if (!fStatusLineAboveButtons && isHelpAvailable()) { >+ createHelpControl(composite); >+ } > fStatusLine = new MessageLine(composite); > fStatusLine.setAlignment(SWT.LEFT); >- fStatusLine.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); >+ GridData statusData = new GridData(GridData.FILL_HORIZONTAL); > fStatusLine.setErrorStatus(null); >+ if (fStatusLineAboveButtons && isHelpAvailable()) { >+ statusData.horizontalSpan = 2; >+ createHelpControl(composite); >+ } >+ fStatusLine.setLayoutData(statusData); > applyDialogFont(composite); >+ >+ /* >+ * Create the rest of the button bar, but tell it not to >+ * create a help button (we've already created it). >+ */ >+ boolean helpAvailable = isHelpAvailable(); >+ setHelpAvailable(false); > super.createButtonBar(composite); >+ setHelpAvailable(helpAvailable); > return composite; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 127658
:
34695
|
34776
| 36435 |
36451