Re: [pgadmin-hackers] Windows test

2008-05-12 Thread Guillaume Lelarge
Dave Page a écrit : On Mon, May 12, 2008 at 3:01 PM, Guillaume Lelarge <[EMAIL PROTECTED]> wrote: Can someone do a little test for me on Windows? Here it is: * launch pgAdminIII * connect to a server * click on the second or third database (all but the first) * right click and choose "Refr

Re: [pgadmin-hackers] Windows test

2008-05-12 Thread Dave Page
On Mon, May 12, 2008 at 3:01 PM, Guillaume Lelarge <[EMAIL PROTECTED]> wrote: > Hi, > > Can someone do a little test for me on Windows? Here it is: > > * launch pgAdminIII > * connect to a server > * click on the second or third database (all but the first) > * right click and choose "Refresh"

[pgadmin-hackers] Windows test

2008-05-12 Thread Guillaume Lelarge
Hi, Can someone do a little test for me on Windows? Here it is: * launch pgAdminIII * connect to a server * click on the second or third database (all but the first) * right click and choose "Refresh" Was your database replaced ? (only the node in pgAdminIII, not your real database :) )

Re: [pgadmin-hackers] Statistics tab, "Tables" node

2008-05-12 Thread Guillaume Lelarge
Dave Page a écrit : On Mon, May 12, 2008 at 10:21 AM, Guillaume Lelarge <[EMAIL PROTECTED]> wrote: Guillaume Lelarge a écrit : [...] The last one does what we want, but our ctlListView::AddColumn method's handling of default values was buggy. The attached patch fixes this, and changes pgTabl

[pgadmin-hackers] SVN Commit by guillaume: r7286 - in trunk/pgadmin3/pgadmin: ctl include/ctl schema

2008-05-12 Thread svn
Author: guillaume Date: 2008-05-12 10:43:11 +0100 (Mon, 12 May 2008) New Revision: 7286 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7286&view=rev Log: Support for autosizing columns in ctlListView when default size value (wxLIST_AUTOSIZE_USEHEADER) is used. Modified:

Re: [pgadmin-hackers] Statistics tab, "Tables" node

2008-05-12 Thread Dave Page
On Mon, May 12, 2008 at 10:21 AM, Guillaume Lelarge <[EMAIL PROTECTED]> wrote: > Guillaume Lelarge a écrit : > > > [...] > > > > The last one does what we want, but our ctlListView::AddColumn method's > handling of default values was buggy. The attached patch fixes this, and > changes pgTableCollec

Re: [pgadmin-hackers] Statistics tab, "Tables" node

2008-05-12 Thread Guillaume Lelarge
Guillaume Lelarge a écrit : [...] The last one does what we want, but our ctlListView::AddColumn method's handling of default values was buggy. The attached patch fixes this, and changes pgTableCollection::ShowStatistics method to handle the new default value (wxLIST_AUTOSIZE_USEHEADER). /

Re: [pgadmin-hackers] Statistics tab, "Tables" node

2008-05-12 Thread Guillaume Lelarge
Dave Page a écrit : [...] What might be a nice enhancement, is some auto-sizing based on column heading width. Wanna take a peek at that as well? I finally found some time to work on this. wxwidgets allows to specify two "default" values : * wxLIST_AUTOSIZE * wxLIST_AUTOSIZE_USEHEADER The