You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Tong Fin (JIRA)" <ui...@incubator.apache.org> on 2008/03/26 04:35:24 UTC

[jira] Created: (UIMA-933) [CDE] In CDE GUI, the border of some tables and combobox is not visible

[CDE] In CDE GUI, the border of some tables and combobox is not visible 
------------------------------------------------------------------------

                 Key: UIMA-933
                 URL: https://issues.apache.org/jira/browse/UIMA-933
             Project: UIMA
          Issue Type: Improvement
          Components: Eclipse plugins
    Affects Versions: 2.2.2
         Environment: Windows and Linux
            Reporter: Tong Fin
            Priority: Trivial
             Fix For: 2.2.2


The border of CCombo and TableTree's widgets is not visible in the CDE GUI (same problem for Windows and Linux platforms).
The reason is that these widgets are not "directly" supported by FormToolkit. To make the border visible, one way is to use the following setting:
    widget.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (UIMA-933) [CDE] In CDE GUI, the border of some tables and combobox is not visible

Posted by "Tong Fin (JIRA)" <ui...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tong Fin resolved UIMA-933.
---------------------------

    Resolution: Fixed

Hi Marshall,
Please verify the patch.

- Tong

> [CDE] In CDE GUI, the border of some tables and combobox is not visible 
> ------------------------------------------------------------------------
>
>                 Key: UIMA-933
>                 URL: https://issues.apache.org/jira/browse/UIMA-933
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Eclipse plugins
>    Affects Versions: 2.2.2
>         Environment: Windows and Linux
>            Reporter: Tong Fin
>            Priority: Trivial
>             Fix For: 2.2.2
>
>         Attachments: UIMA-933-CDE-Patch.txt
>
>
> The border of CCombo and TableTree's widgets is not visible in the CDE GUI (same problem for Windows and Linux platforms).
> The reason is that these widgets are not "directly" supported by FormToolkit. To make the border visible, one way is to use the following setting:
>     widget.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (UIMA-933) [CDE] In CDE GUI, the border of some tables and combobox is not visible

Posted by "Marshall Schor (JIRA)" <ui...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marshall Schor closed UIMA-933.
-------------------------------

    Assignee: Marshall Schor

The concept of this patch was applied to the common routines that are used to implement these widgets - so the fix goes in one spot which is used by all users of these widgets.

> [CDE] In CDE GUI, the border of some tables and combobox is not visible 
> ------------------------------------------------------------------------
>
>                 Key: UIMA-933
>                 URL: https://issues.apache.org/jira/browse/UIMA-933
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Eclipse plugins
>    Affects Versions: 2.2.2
>         Environment: Windows and Linux
>            Reporter: Tong Fin
>            Assignee: Marshall Schor
>            Priority: Trivial
>             Fix For: 2.2.2
>
>         Attachments: UIMA-933-CDE-Patch.txt
>
>
> The border of CCombo and TableTree's widgets is not visible in the CDE GUI (same problem for Windows and Linux platforms).
> The reason is that these widgets are not "directly" supported by FormToolkit. To make the border visible, one way is to use the following setting:
>     widget.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (UIMA-933) [CDE] In CDE GUI, the border of some tables and combobox is not visible

Posted by "Tong Fin (JIRA)" <ui...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/UIMA-933?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tong Fin updated UIMA-933:
--------------------------

    Attachment: UIMA-933-CDE-Patch.txt

The issue is fixed by adding the following settings to the CCombo and TableTree widgets used by CDE, for example:

    // Make the CCombo's border visible since CCombo is NOT a widget 
    // supported by FormToolkit.
    flowControllerChoice = newCComboWithTip(sectionClient. ...);
    flowControllerChoice.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);

    // Make the TableTree's border visible since TableTree is NOT a widget
    // supported by FormToolkit.
    tt = newTableTree(sectionClient, ...);
    tt.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);




> [CDE] In CDE GUI, the border of some tables and combobox is not visible 
> ------------------------------------------------------------------------
>
>                 Key: UIMA-933
>                 URL: https://issues.apache.org/jira/browse/UIMA-933
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Eclipse plugins
>    Affects Versions: 2.2.2
>         Environment: Windows and Linux
>            Reporter: Tong Fin
>            Priority: Trivial
>             Fix For: 2.2.2
>
>         Attachments: UIMA-933-CDE-Patch.txt
>
>
> The border of CCombo and TableTree's widgets is not visible in the CDE GUI (same problem for Windows and Linux platforms).
> The reason is that these widgets are not "directly" supported by FormToolkit. To make the border visible, one way is to use the following setting:
>     widget.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (UIMA-933) [CDE] In CDE GUI, the border of some tables and combobox is not visible

Posted by "Tong Fin (JIRA)" <ui...@incubator.apache.org>.
    [ https://issues.apache.org/jira/browse/UIMA-933?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12582340#action_12582340 ] 

Tong Fin commented on UIMA-933:
-------------------------------

The patch has been tested and it works with the following environments:
 - Eclipse 3.3.2, 3.3.1.1, 3.2.2 - Windows XP
 - Eclipse 3.3.2, 3.2.2 - Linux Redhat Enterprise

> [CDE] In CDE GUI, the border of some tables and combobox is not visible 
> ------------------------------------------------------------------------
>
>                 Key: UIMA-933
>                 URL: https://issues.apache.org/jira/browse/UIMA-933
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Eclipse plugins
>    Affects Versions: 2.2.2
>         Environment: Windows and Linux
>            Reporter: Tong Fin
>            Priority: Trivial
>             Fix For: 2.2.2
>
>         Attachments: UIMA-933-CDE-Patch.txt
>
>
> The border of CCombo and TableTree's widgets is not visible in the CDE GUI (same problem for Windows and Linux platforms).
> The reason is that these widgets are not "directly" supported by FormToolkit. To make the border visible, one way is to use the following setting:
>     widget.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TREE_BORDER);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.