Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Benoît Minisini
> > Hi to all, > > declaring a string like: > > > > MyClass.Class > > > > Create Private > > > > PRIVATE CONST MYSTRING As String = ("A string") > > > > and using that string in another class like > > > > MyForm.Class > > > > MyForm.Caption = MyClass.MYSTRING > > > > even if the string is co

Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Benoît Minisini
> Hi to all, > declaring a string like: > > MyClass.Class > > Create Private > > PRIVATE CONST MYSTRING As String = ("A string") > > and using that string in another class like > > MyForm.Class > > MyForm.Caption = MyClass.MYSTRING > > even if the string is correctly translated trough the Tr

Re: [Gambas-user] gb3 requirements on openSUSE 11.4

2011-08-01 Thread Matti
Paolo has sent me a solution that solves the "missing file '-ljscore'" error: - if you want to compile gambas3 yourself and want to prevent, that the compile run breaks with a "missing libjscore" error, then you have to install my patched package libQtWebKit-devel located at http://download.opensu

Re: [Gambas-user] gb3 requirements on openSUSE 11.4

2011-08-01 Thread Kevin Fishburne
On 08/01/2011 02:16 PM, Matti wrote: > Thanks, Kevin. > > A lot of +/- to think about, but your hints are helpfully. > Will try some live-CDs... Any time. I'd hit up http://distrowatch.com/ to look at the top distributions, or perhaps do a search of Debian-based distros there (or whatever packag

Re: [Gambas-user] gb3 requirements on openSUSE 11.4

2011-08-01 Thread Matti
Thanks, Kevin. A lot of +/- to think about, but your hints are helpfully. Will try some live-CDs... Am 31.07.2011 22:41, schrieb Kevin Fishburne: > On 07/31/2011 04:02 PM, Matti wrote: >> Well, I thought about changing to another distro anyway, for some other >> reasons. >> The only thing is th

Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Jesus
El 01/08/11 17:39, Emanuele Sottocorno escribió: > Hi to all, > declaring a string like: > > MyClass.Class > > Create Private > > PRIVATE CONST MYSTRING As String = ("A string") > > and using that string in another class like > > MyForm.Class > > MyForm.Caption = MyClass.MYSTRING > > even

[Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Emanuele Sottocorno
Hi to all, declaring a string like: MyClass.Class Create Private PRIVATE CONST MYSTRING As String = ("A string") and using that string in another class like MyForm.Class MyForm.Caption = MyClass.MYSTRING even if the string is correctly translated trough the Translate Tool in the IDE when t

[Gambas-user] togglebutton in gb3

2011-08-01 Thread Charlie Reinl
Salut, changing the background of an togglebutton don't work. gambas3 rev 3956 Mandriva 2010.2 qt4 only (gtk not tested) -- Amicalement Charlie -- Got Input? Slashdot Needs You. Take our quick survey online. Co

Re: [Gambas-user] gb3: gb.opengl will not render alpha channel of 2D texture

2011-08-01 Thread Kevin Fishburne
On 08/01/2011 04:47 AM, Benoît Minisini wrote: >>> If, in GltextureMapping.c:238: >>> glTexImage2D(GL_TEXTURE_2D, VARGOPT(Level, 0), 3, image->width, >>> >>> image->height, VARGOPT(Border, 0), format, GL_UNSIGNED_BYTE, >>> image->data); >>> >>> I replace the "3" by

Re: [Gambas-user] gb3: gb.opengl will not render alpha channel of 2D texture

2011-08-01 Thread Benoît Minisini
> > > > If, in GltextureMapping.c:238: > > glTexImage2D(GL_TEXTURE_2D, VARGOPT(Level, 0), 3, image->width, > > > > image->height, VARGOPT(Border, 0), format, GL_UNSIGNED_BYTE, > > image->data); > > > > I replace the "3" by "4", as it is in line 225, I get the tran