[JBoss JIRA] (JBIDE-20383) HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20383?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-20383:
----------------------------------
Description:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
!HTML5Palette.ong!
Not working part is changing of ImageData, without it generated image is not transparent.
So we decided to replace generation to fixed icon image:
!NewMostPopularIcon.png!
was:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
Not working part is changing of ImageData, without it generated image is not transparent.
So we decided to replace generation to fixed icon image
> HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
> -------------------------------------------------------------------------
>
> Key: JBIDE-20383
> URL: https://issues.jboss.org/browse/JBIDE-20383
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html-source-editing
> Environment: Windows 8, Eclipse Mars
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.0.CR1
>
> Attachments: HTML5Palette.png, NewMostPopularIcon.png
>
>
> We generated image for "Most Popular/Last Used" palette group with code like that:
> {code}
> Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
> ImageData data = resultImage.getImageData();
> data.alpha = 0;
> resultImage = new Image(Display.getCurrent(), data);
> final GC gc = new GC(resultImage);
> int x = 0;
> for (ImageDescriptor descriptor : descriptors) {
> if(descriptor != null){
> Image image = descriptor.createImage(Display.getCurrent());
> gc.drawImage(image, x, 0);
> x += image.getBounds().width;
> }
> }
> gc.dispose();
> imageDescriptor = ImageDescriptor.createFromImage(resultImage);
> {code}
> With new SWT it does not work on Windows.
> !HTML5Palette.ong!
> Not working part is changing of ImageData, without it generated image is not transparent.
> So we decided to replace generation to fixed icon image:
> !NewMostPopularIcon.png!
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20383) HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20383?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-20383:
----------------------------------
Description:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
!HTML5Palette.png!
Not working part is changing of ImageData, without it generated image is not transparent.
So we decided to replace generation to fixed icon image:
!NewMostPopularIcon.png!
was:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
!HTML5Palette.ong!
Not working part is changing of ImageData, without it generated image is not transparent.
So we decided to replace generation to fixed icon image:
!NewMostPopularIcon.png!
> HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
> -------------------------------------------------------------------------
>
> Key: JBIDE-20383
> URL: https://issues.jboss.org/browse/JBIDE-20383
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html-source-editing
> Environment: Windows 8, Eclipse Mars
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.0.CR1
>
> Attachments: HTML5Palette.png, NewMostPopularIcon.png
>
>
> We generated image for "Most Popular/Last Used" palette group with code like that:
> {code}
> Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
> ImageData data = resultImage.getImageData();
> data.alpha = 0;
> resultImage = new Image(Display.getCurrent(), data);
> final GC gc = new GC(resultImage);
> int x = 0;
> for (ImageDescriptor descriptor : descriptors) {
> if(descriptor != null){
> Image image = descriptor.createImage(Display.getCurrent());
> gc.drawImage(image, x, 0);
> x += image.getBounds().width;
> }
> }
> gc.dispose();
> imageDescriptor = ImageDescriptor.createFromImage(resultImage);
> {code}
> With new SWT it does not work on Windows.
> !HTML5Palette.png!
> Not working part is changing of ImageData, without it generated image is not transparent.
> So we decided to replace generation to fixed icon image:
> !NewMostPopularIcon.png!
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20383) HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20383?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-20383:
----------------------------------
Description:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
Not working part of changing of ImageData without it generatan image is not transparent.
So we decided to replace generation to fixed icon image
was:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
> HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
> -------------------------------------------------------------------------
>
> Key: JBIDE-20383
> URL: https://issues.jboss.org/browse/JBIDE-20383
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html-source-editing
> Environment: Windows 8, Eclipse Mars
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.0.CR1
>
> Attachments: HTML5Palette.png, NewMostPopularIcon.png
>
>
> We generated image for "Most Popular/Last Used" palette group with code like that:
> {code}
> Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
> ImageData data = resultImage.getImageData();
> data.alpha = 0;
> resultImage = new Image(Display.getCurrent(), data);
> final GC gc = new GC(resultImage);
> int x = 0;
> for (ImageDescriptor descriptor : descriptors) {
> if(descriptor != null){
> Image image = descriptor.createImage(Display.getCurrent());
> gc.drawImage(image, x, 0);
> x += image.getBounds().width;
> }
> }
> gc.dispose();
> imageDescriptor = ImageDescriptor.createFromImage(resultImage);
> {code}
> With new SWT it does not work on Windows.
> Not working part of changing of ImageData without it generatan image is not transparent.
> So we decided to replace generation to fixed icon image
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20383) HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20383?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-20383:
----------------------------------
Description:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
Not working part is changing of ImageData, without it generated image is not transparent.
So we decided to replace generation to fixed icon image
was:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
With new SWT it does not work on Windows.
Not working part of changing of ImageData without it generatan image is not transparent.
So we decided to replace generation to fixed icon image
> HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
> -------------------------------------------------------------------------
>
> Key: JBIDE-20383
> URL: https://issues.jboss.org/browse/JBIDE-20383
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html-source-editing
> Environment: Windows 8, Eclipse Mars
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.0.CR1
>
> Attachments: HTML5Palette.png, NewMostPopularIcon.png
>
>
> We generated image for "Most Popular/Last Used" palette group with code like that:
> {code}
> Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
> ImageData data = resultImage.getImageData();
> data.alpha = 0;
> resultImage = new Image(Display.getCurrent(), data);
> final GC gc = new GC(resultImage);
> int x = 0;
> for (ImageDescriptor descriptor : descriptors) {
> if(descriptor != null){
> Image image = descriptor.createImage(Display.getCurrent());
> gc.drawImage(image, x, 0);
> x += image.getBounds().width;
> }
> }
> gc.dispose();
> imageDescriptor = ImageDescriptor.createFromImage(resultImage);
> {code}
> With new SWT it does not work on Windows.
> Not working part is changing of ImageData, without it generated image is not transparent.
> So we decided to replace generation to fixed icon image
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-20383) HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20383?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-20383:
----------------------------------
Description:
We generated image for "Most Popular/Last Used" palette group with code like that:
{code}
Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
ImageData data = resultImage.getImageData();
data.alpha = 0;
resultImage = new Image(Display.getCurrent(), data);
final GC gc = new GC(resultImage);
int x = 0;
for (ImageDescriptor descriptor : descriptors) {
if(descriptor != null){
Image image = descriptor.createImage(Display.getCurrent());
gc.drawImage(image, x, 0);
x += image.getBounds().width;
}
}
gc.dispose();
imageDescriptor = ImageDescriptor.createFromImage(resultImage);
{code}
> HTML5 Palette: Missing icon image on Most Popular/Last Used palette group
> -------------------------------------------------------------------------
>
> Key: JBIDE-20383
> URL: https://issues.jboss.org/browse/JBIDE-20383
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsp/jsf/xml/html-source-editing
> Environment: Windows 8, Eclipse Mars
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Fix For: 4.3.0.CR1
>
> Attachments: HTML5Palette.png, NewMostPopularIcon.png
>
>
> We generated image for "Most Popular/Last Used" palette group with code like that:
> {code}
> Image resultImage = new Image(Display.getCurrent(), descriptors.size()*16, 16);
> ImageData data = resultImage.getImageData();
> data.alpha = 0;
> resultImage = new Image(Display.getCurrent(), data);
> final GC gc = new GC(resultImage);
> int x = 0;
> for (ImageDescriptor descriptor : descriptors) {
> if(descriptor != null){
> Image image = descriptor.createImage(Display.getCurrent());
> gc.drawImage(image, x, 0);
> x += image.getBounds().width;
> }
> }
> gc.dispose();
> imageDescriptor = ImageDescriptor.createFromImage(resultImage);
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months
[JBoss JIRA] (JBIDE-19957) Application wizard: Add summary of generated values to new app
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19957?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-19957 at 7/24/15 4:24 PM:
-------------------------------------------------------------------
Somehow the changes in this commit went lost, this was merged but the changes are currently not in branch. Reopening and postponing tp 4.3.0.CR1
was (Author: adietish):
Somehow the changes in this commit went lost, this was merged but the changes are currently not in branch. Reopening and postponing
> Application wizard: Add summary of generated values to new app
> --------------------------------------------------------------
>
> Key: JBIDE-19957
> URL: https://issues.jboss.org/browse/JBIDE-19957
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: openshift
> Affects Versions: 4.3.0.Beta1
> Reporter: Jeff Cantrill
> Assignee: Jeff Cantrill
> Labels: application_wizard, openshift_v3
> Fix For: 4.3.0.CR1
>
> Attachments: generated-template-parameters.png, v2 summary screen.png
>
>
> Some templates allow you to define parameters that are generated for the user. We should update the new app flow to provide feedback to the user what those generated values are so they have them.
> Steps to reproduce:
> # EXEC: launch new application wizard from context menu of a v3 Openshift connection (New->Application)
> # ASSERT: new application wizard from template shows up
> # EXEC: Select a template and get to next page with template parameters
> # ASSERT: the list shows parameters with "(generated)" value
> !generated-template-parameters.png!
> EXEC: hit "Finish"
> Result:
> I have no feedback on the values of the generated parameters. I have no idea about what was generated.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 9 months