Re: [Gambas-user] 3628 version Controls spacing Question

2011-03-02 Thread Benoît Minisini
> On Thursday 03 March 2011 07:22:17 Benoît Minisini wrote: > > > Upgraded to this version, suddenly my entire gui looks wacky. > > > > > > All the controls are spaced differently - I've got a lot of borderless > > > stacked textboxes which all of a sudden are much more widely separated > > > - al

Re: [Gambas-user] Missing libraries for some examples

2011-03-02 Thread Kevin Fishburne
On 03/02/2011 03:39 AM, richard terry wrote: Hi list, I've just been trying some of the examples, and it seems my machine (Kubuntu 9) missing some stuff for example it complains about OpenGL missing - could anyone tell me what particular libaries I need. I did look in synaptic but it was p

Re: [Gambas-user] Bug in Webview demo in Gambas

2011-03-02 Thread richard terry
On Thursday 03 March 2011 07:23:43 Benoît Minisini wrote: > > Maybe this is just my machine, I typed in this url, and the sample died: > > > > FBrowser.WebView_Click.286: http://www.youtube.com/ > > > > (process:10837): GLib-GObject-CRITICAL **: > > /build/buildd/glib2.0-2.22.3/gobject/gtype.c:24

Re: [Gambas-user] 3628 version Controls spacing Question

2011-03-02 Thread richard terry
On Thursday 03 March 2011 07:22:17 Benoît Minisini wrote: > > Upgraded to this version, suddenly my entire gui looks wacky. > > > > All the controls are spaced differently - I've got a lot of borderless > > stacked textboxes which all of a sudden are much more widely separated - > > almost like I'd

Re: [Gambas-user] Listview picture not showing...

2011-03-02 Thread Benoît Minisini
> >Excellent. Thank you for clarifying. Picture.Load not setting the > picture is counter-intuitive.. but OK... whatever works. > The "counter-intuitiveness" comes from the ability to use a static method (Picture.Load) on a real object. This is commonly allowed in object-oriented programmi

Re: [Gambas-user] Bug in Webview demo in Gambas

2011-03-02 Thread Benoît Minisini
> Maybe this is just my machine, I typed in this url, and the sample died: > > FBrowser.WebView_Click.286: http://www.youtube.com/ > > (process:10837): GLib-GObject-CRITICAL **: > /build/buildd/glib2.0-2.22.3/gobject/gtype.c:2458: initialization assertion > failed, use IA__g_type_init() prior t

Re: [Gambas-user] 3628 version Controls spacing Question

2011-03-02 Thread Benoît Minisini
> Upgraded to this version, suddenly my entire gui looks wacky. > > All the controls are spaced differently - I've got a lot of borderless > stacked textboxes which all of a sudden are much more widely separated - > almost like I'd switched on the spacing property of a container and > doubled it.

[Gambas-user] How to define variables with EXTERN

2011-03-02 Thread Rolf-Werner Eilert
Is it possible to access the values of variables defined in external libraries? (The mailing list is so slow these days, I do not even have an echo of my question from hours ago. It was about macros.) Now I found that there are COLUMNS and LINES defined within ncurses, so if I would like to rea

Re: [Gambas-user] ncurses - macro is not found

2011-03-02 Thread Benoît Minisini
> I do not have that much idea of how that works under C, so that's why I > ask here. > > In the ncurses library, there are macros. One of them is needed to get > the dimensions of the "window". But when I define it > > EXTERN getmaxyx(... > > when my program starts, there is merely the error "c

[Gambas-user] ncurses - macro is not found

2011-03-02 Thread Rolf-Werner Eilert
I do not have that much idea of how that works under C, so that's why I ask here. In the ncurses library, there are macros. One of them is needed to get the dimensions of the "window". But when I define it EXTERN getmaxyx(... when my program starts, there is merely the error "cannot find symbo

[Gambas-user] Bug in Webview demo in Gambas

2011-03-02 Thread richard terry
Maybe this is just my machine, I typed in this url, and the sample died: FBrowser.WebView_Click.286: http://www.youtube.com/ (process:10837): GLib-GObject-CRITICAL **: /build/buildd/glib2.0-2.22.3/gobject/gtype.c:2458: initialization assertion failed, use IA__g_type_init() prior to this funct

Re: [Gambas-user] Listview picture not showing...

2011-03-02 Thread Stephen Bungay
On 02/26/2011 04:41 PM, Fabien Bodard wrote: > 2011/2/26 Stephen Bungay: >>This has undoubtedly been asked before. >> >> GAMBAS 2.2 >> >>I am trying to add an icon to the listview items, to that end this >> code snippet should do the trick; >> >> Private SUB Initialize_Listview1() >>D

Re: [Gambas-user] IconView...bug?

2011-03-02 Thread Benoît Minisini
> I can't change the bakcground of IconView. Would be appropriate to add the > background Property ^^ > > Private Function Background_Read() As Integer > Return $hView.Background > End > Private Sub Background_Write(Value As Integer) > $hView.Background = Value > End > > Regards, Fixed in revi

[Gambas-user] 3628 version Controls spacing Question

2011-03-02 Thread richard terry
Upgraded to this version, suddenly my entire gui looks wacky. All the controls are spaced differently - I've got a lot of borderless stacked textboxes which all of a sudden are much more widely separated - almost like I'd switched on the spacing property of a container and doubled it. I'm runni

Re: [Gambas-user] Issue 45 in gambas: error on completion code: IDE propagates bad data type in property declaration to property methods

2011-03-02 Thread gambas
Updates: Status: Invalid Labels: -Version Version-TRUNK Comment #2 on issue 45 by benoit.m...@gmail.com: error on completion code: IDE propagates bad data type in property declaration to property methods http://code.google.com/p/gambas/issues/detail?id=45 I couldn't have said be

Re: [Gambas-user] Issue 44 in gambas: GTK+ and Workspace Action_Activate does not match the active.window

2011-03-02 Thread gambas
Comment #3 on issue 44 by benoit.m...@gmail.com: GTK+ and Workspace Action_Activate does not match the active.window http://code.google.com/p/gambas/issues/detail?id=44 It does not "work" with gb.qt4. When two menus have the same shortcut, the one who is activated is inderminate. So there is

Re: [Gambas-user] Listview picture not showing...

2011-03-02 Thread Stephen Bungay
Thanks Fabien, sorry fir the delayed reply, it suddenly got really busy around here and this had to take a lower priority. I'll put that into practice. On 02/26/2011 04:41 PM, Fabien Bodard wrote: > 2011/2/26 Stephen Bungay: >>This has undoubtedly been asked before. >> >> GAMBAS 2.2 >> >

[Gambas-user] Missing libraries for some examples

2011-03-02 Thread richard terry
Hi list, I've just been trying some of the examples, and it seems my machine (Kubuntu 9) missing some stuff for example it complains about OpenGL missing - could anyone tell me what particular libaries I need. I did look in synaptic but it was pretty cryptic to my simple mind. Thanks in advanc

Re: [Gambas-user] Issue 44 in gambas: GTK+ and Workspace Action_Activate does not match the active.window

2011-03-02 Thread gambas
Comment #4 on issue 44 by sot...@gmail.com: GTK+ and Workspace Action_Activate does not match the active.window http://code.google.com/p/gambas/issues/detail?id=44 Il giorno mar, 01/03/2011 alle 23.57 +, gam...@googlecode.com ha scritto: Ok Benoit, Thanks again. -

Re: [Gambas-user] Issue 45 in gambas: error on completion code: IDE propagates bad data type in property declaration to property methods

2011-03-02 Thread gambas
Comment #3 on issue 45 by fabianfl...@gmail.com: error on completion code: IDE propagates bad data type in property declaration to property methods http://code.google.com/p/gambas/issues/detail?id=45 I'm sorry guys, this is an design decision. The IDE knows what are the Gambas data types and k

Re: [Gambas-user] Issue 43 in gambas: Drawing on transparent background doesn't work in gb3

2011-03-02 Thread gambas
Comment #5 on issue 43 by benoit.m...@gmail.com: Drawing on transparent background doesn't work in gb3 http://code.google.com/p/gambas/issues/detail?id=43 Alas these two config files are useless. I need the version of your GUI libraries, which WM you use (apparently KDE4 KWM), which version o

[Gambas-user] Bug with debugging

2011-03-02 Thread Jussi Lahtinen
Hi! I'm working on experimental profiler project (I hope Benoit will release better approach to this in future). However, I'm constantly running into debugging problems; occasionally missing error messages, and randomly missing possibility to "look" inside variable. This project is full of bugs, m