Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
bonita
bonita-studio
Commits
d3de57b6
Commit
d3de57b6
authored
Jan 13, 2016
by
Romain Bioteau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use a hint on text
parent
3616a80c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/InfoMessageComposite.java
...ner/ui/property/section/control/InfoMessageComposite.java
+2
-2
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/InternalMappingComposite.java
...ui/property/section/control/InternalMappingComposite.java
+1
-1
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/URLMappingComposite.java
...gner/ui/property/section/control/URLMappingComposite.java
+1
-1
No files found.
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/InfoMessageComposite.java
View file @
d3de57b6
...
...
@@ -32,9 +32,9 @@ public class InfoMessageComposite extends Composite {
public
InfoMessageComposite
(
final
Composite
parent
,
final
TabbedPropertySheetWidgetFactory
widgetFactory
)
{
super
(
parent
,
SWT
.
NONE
);
setLayout
(
GridLayoutFactory
.
fillDefaults
().
numColumns
(
2
).
extendedMargins
(
10
,
0
,
10
,
0
).
create
());
setLayout
(
GridLayoutFactory
.
fillDefaults
().
extendedMargins
(
10
,
0
,
10
,
0
).
create
());
info
=
widgetFactory
.
createLabel
(
this
,
""
,
SWT
.
WRAP
);
info
.
setLayoutData
(
GridDataFactory
.
swtDefaults
().
span
(
2
,
1
).
align
(
SWT
.
RIGHT
,
SWT
.
CENTER
).
create
());
info
.
setLayoutData
(
GridDataFactory
.
swtDefaults
().
hint
(
600
,
SWT
.
DEFAULT
).
align
(
SWT
.
FILL
,
SWT
.
CENTER
).
create
());
widgetFactory
.
adapt
(
this
);
}
...
...
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/InternalMappingComposite.java
View file @
d3de57b6
...
...
@@ -75,7 +75,7 @@ public class InternalMappingComposite extends Composite implements BonitaPrefere
addResourceChangeListener
(
webPageNameResourceChangeListener
);
info
=
widgetFactory
.
createLabel
(
this
,
""
,
SWT
.
WRAP
);
info
.
setLayoutData
(
GridDataFactory
.
swtDefaults
().
span
(
2
,
1
).
align
(
SWT
.
RIGHT
,
SWT
.
CENTER
).
create
());
info
.
setLayoutData
(
GridDataFactory
.
swtDefaults
().
span
(
2
,
1
).
hint
(
600
,
SWT
.
DEFAULT
).
align
(
SWT
.
FILL
,
SWT
.
CENTER
).
create
());
widgetFactory
.
adapt
(
this
);
}
...
...
bundles/plugins/org.bonitasoft.studio.designer/src/org/bonitasoft/studio/designer/ui/property/section/control/URLMappingComposite.java
View file @
d3de57b6
...
...
@@ -52,7 +52,7 @@ public class URLMappingComposite extends Composite implements BonitaPreferenceCo
urlText
.
setLayoutData
(
GridDataFactory
.
swtDefaults
().
hint
(
WIDTH_HINT
,
SWT
.
DEFAULT
).
create
());
info
=
widgetFactory
.
createLabel
(
this
,
""
,
SWT
.
WRAP
);
info
.
setLayoutData
(
GridDataFactory
.
fillDefaults
().
span
(
2
,
1
).
hint
(
75
0
,
SWT
.
DEFAULT
).
align
(
SWT
.
RIGHT
,
SWT
.
CENTER
).
create
());
info
.
setLayoutData
(
GridDataFactory
.
fillDefaults
().
span
(
2
,
1
).
hint
(
60
0
,
SWT
.
DEFAULT
).
align
(
SWT
.
FILL
,
SWT
.
CENTER
).
create
());
widgetFactory
.
adapt
(
this
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment