Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] Mac OS X port: native Tree/TreeItem

Order of items in getSelection is undefined. See:
      http://dev.eclipse.org/bugs/show_bug.cgi?id=18377

The JUnit test is wrong.  I will fix it.



|---------+---------------------------------->
|         |           Martin Sturzenhecker   |
|         |           <msturzen@xxxxxxx>     |
|         |           Sent by:               |
|         |           platform-swt-dev-admin@|
|         |           eclipse.org            |
|         |                                  |
|         |                                  |
|         |           12/16/2002 05:51 PM    |
|         |           Please respond to      |
|         |           platform-swt-dev       |
|         |                                  |
|---------+---------------------------------->
  >---------------------------------------------------------------------------------------------------------------------|
  |                                                                                                                     |
  |        To:      platform-swt-dev@xxxxxxxxxxx                                                                        |
  |        cc:                                                                                                          |
  |        Subject: Re: [platform-swt-dev] Mac OS X port: native Tree/TreeItem                                          |
  >---------------------------------------------------------------------------------------------------------------------|





Am Montag, 16.12.02 um 15:17 Uhr schrieb Veronika Irvine:


> Martin,
>
> Sorry if there was miscommunication.  The first I heard about your
> work on
> the tree was in your posting of November 20 to which I replied that we
> were
> doing similar work in the stream carbon_work (see below) .
>
> We really wanted to get as many native widgets implemented for the Mac
> as
> possible for M4.  We were already using the DataBrowser widget in our
> implementation of List and once you have delved into DataBrowser you
> might
> as well go all the way.  We are still not quite happy with our
> implementation of the native table and tree and so are currently using
> an
> emulated version in the Mac downloads.  If you would like to
> contribute to
> the missing areas, please post patch files against the contents in
> HEAD.
>
> It is quite a challenge to work across multiple sites and coordinate
> with
> independent contributors.  Any suggestions on how to improve this are
> welcome.  I would recommend providing frequent updates on your
> progress and
> providing code submissions at regular intervals.
>
Is it ok to send the patches to the list?

Now, that the dust has settled here is my first patch for the Tree from
the carbon2 directory:

The patch returns the selection in the order the test expects.


  in Tree.getSelection():
 for (int i=0; i<count; i++) {
    OS.memcpy (id, start [0] + (i * 4), 4);
-           result [i] = items [id [0] - 1];
+           result [count-1-i] = items [id [0] - 1];
   }











Back to the top