Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » TableViewer and ProgressBar
TableViewer and ProgressBar [message #449282] Thu, 20 January 2005 13:49 Go to next message
Eclipse UserFriend
Originally posted by: eyecanseeyou.free.fr

Hello,

I've already posted this question, I try again ;-)
I use TableViewer to display data in a Table widget. In a column I would
like to display a progress bar and I do not know how to do...

Is there a sample? Or what classes I need to use?
Thx.
Re: TableViewer and ProgressBar [message #449292 is a reply to message #449282] Thu, 20 January 2005 16:53 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eyecanseeyou.free.fr

Is it possible using the ProgressBar widget?


eyecanseeyou wrote:

> Hello,

> I've already posted this question, I try again ;-)
> I use TableViewer to display data in a Table widget. In a column I would
> like to display a progress bar and I do not know how to do...

> Is there a sample? Or what classes I need to use?
> Thx.
Re: TableViewer and ProgressBar [message #449295 is a reply to message #449292] Thu, 20 January 2005 18:44 Go to previous messageGo to next message
Steve Northover is currently offline Steve NorthoverFriend
Messages: 1636
Registered: July 2009
Senior Member
Not sure what to do with a TableViewer as that is JFace, not SWT. This
snippet shows you how to do it in SWT:

http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.sni ppets/src/org/eclipse/swt/snippets/Snippet126.java?rev=HEAD& amp;content-type=text/vnd.viewcvs-markup

"eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
news:csonm5$q6q$1@www.eclipse.org...
> Is it possible using the ProgressBar widget?
>
>
> eyecanseeyou wrote:
>
> > Hello,
>
> > I've already posted this question, I try again ;-)
> > I use TableViewer to display data in a Table widget. In a column I would
> > like to display a progress bar and I do not know how to do...
>
> > Is there a sample? Or what classes I need to use?
> > Thx.
>
>
Re: TableViewer and ProgressBar [message #449312 is a reply to message #449295] Fri, 21 January 2005 08:57 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eyecanseeyou.free.fr

Thank you Steve for replying.

Yes TableViewer is JFace, and my data are added using TableViewer. In your
snippet, all the TableItem from the Table are retrieved to set the editor.

How can I do when I add data in the TableViewer to set the editor? I need
to retrieve all the TableItem each time TableViewer data changes?

Thx.



Steve Northover wrote:

> Not sure what to do with a TableViewer as that is JFace, not SWT. This
> snippet shows you how to do it in SWT:

>
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.sni ppets/src/org/eclipse/swt/snippets/Snippet126.java?rev=HEAD& amp;content-type=text/vnd.viewcvs-markup

> "eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
> news:csonm5$q6q$1@www.eclipse.org...
>> Is it possible using the ProgressBar widget?
>>
>>
>> eyecanseeyou wrote:
>>
>> > Hello,
>>
>> > I've already posted this question, I try again ;-)
>> > I use TableViewer to display data in a Table widget. In a column I would
>> > like to display a progress bar and I do not know how to do...
>>
>> > Is there a sample? Or what classes I need to use?
>> > Thx.
>>
>>
Re: TableViewer and ProgressBar [message #449315 is a reply to message #449312] Fri, 21 January 2005 12:04 Go to previous messageGo to next message
Veronika Irvine is currently offline Veronika IrvineFriend
Messages: 1272
Registered: July 2009
Senior Member
You should ask this question on the eclipse.platform newsgroup. JFace is
owned by the Eclipse UI team, not by SWT.

news://news.eclipse.org/eclipse.platform


"eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
news:csqg5r$vjk$1@www.eclipse.org...
> Thank you Steve for replying.
>
> Yes TableViewer is JFace, and my data are added using TableViewer. In your
> snippet, all the TableItem from the Table are retrieved to set the editor.
>
> How can I do when I add data in the TableViewer to set the editor? I need
> to retrieve all the TableItem each time TableViewer data changes?
>
> Thx.
>
>
> Steve Northover wrote:
>
>> Not sure what to do with a TableViewer as that is JFace, not SWT. This
>> snippet shows you how to do it in SWT:
>
>>
> http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.sni ppets/src/org/eclipse/swt/snippets/Snippet126.java?rev=HEAD& amp;content-type=text/vnd.viewcvs-markup
>
>> "eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
>> news:csonm5$q6q$1@www.eclipse.org...
>>> Is it possible using the ProgressBar widget?
>>>
>>>
>>> eyecanseeyou wrote:
>>>
>>> > Hello,
>>>
>>> > I've already posted this question, I try again ;-)
>>> > I use TableViewer to display data in a Table widget. In a column I
>>> > would
>>> > like to display a progress bar and I do not know how to do...
>>>
>>> > Is there a sample? Or what classes I need to use?
>>> > Thx.
>>>
>>>
>
>
Re: TableViewer and ProgressBar [message #449317 is a reply to message #449315] Fri, 21 January 2005 12:49 Go to previous message
Eclipse UserFriend
Originally posted by: eyecanseeyou.free.fr

Sorry for sending to the wrong newsgroup. So I will ask my question on
eclipse.platform newsgroup.
Thx.


Veronika Irvine wrote:

> You should ask this question on the eclipse.platform newsgroup. JFace is
> owned by the Eclipse UI team, not by SWT.

> news://news.eclipse.org/eclipse.platform


> "eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
> news:csqg5r$vjk$1@www.eclipse.org...
>> Thank you Steve for replying.
>>
>> Yes TableViewer is JFace, and my data are added using TableViewer. In your
>> snippet, all the TableItem from the Table are retrieved to set the editor.
>>
>> How can I do when I add data in the TableViewer to set the editor? I need
>> to retrieve all the TableItem each time TableViewer data changes?
>>
>> Thx.
>>
>>
>> Steve Northover wrote:
>>
>>> Not sure what to do with a TableViewer as that is JFace, not SWT. This
>>> snippet shows you how to do it in SWT:
>>
>>>
>>
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.sni ppets/src/org/eclipse/swt/snippets/Snippet126.java?rev=HEAD& amp;content-type=text/vnd.viewcvs-markup
>>
>>> "eyecanseeyou" <eyecanseeyou@free.fr> wrote in message
>>> news:csonm5$q6q$1@www.eclipse.org...
>>>> Is it possible using the ProgressBar widget?
>>>>
>>>>
>>>> eyecanseeyou wrote:
>>>>
>>>> > Hello,
>>>>
>>>> > I've already posted this question, I try again ;-)
>>>> > I use TableViewer to display data in a Table widget. In a column I
>>>> > would
>>>> > like to display a progress bar and I do not know how to do...
>>>>
>>>> > Is there a sample? Or what classes I need to use?
>>>> > Thx.
>>>>
>>>>
>>
>>
Previous Topic:Easy way to get API info
Next Topic:How to set Canvas focusable (with keyboard traverse)?
Goto Forum:
  


Current Time: Thu Apr 25 08:11:54 GMT 2024

Powered by FUDForum. Page generated in 0.03887 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top