[Gambas-user] [Gambas Bug Tracker] Bug #773: System information unable to detect Xfce desktop

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.773=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #14 by Moviga TECHNOLOGIES: No kde5-config as far as I can tell. No config dir either, only an almost empty .kde4 folder, but I'm not sure where that came from as I have avoided kde4 packages when building my system...

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #12 by Moviga TECHNOLOGIES: GB_STOCK_DEBUG=1 gambas3 gb.form: init stock with application theme: '' gb.form: desktop is KDE5 gb.form: add icon path: stock/&2 Icon theme "oxygen" not found. Icon theme "oxygen" not found.

Re: [Gambas-user] Question

2015-09-30 Thread Fabien Bodard
Well it's just too expensive for me :-)... 490 € per year ... But i can try to do a demo with the free trial version after the grappe harvesting Or maybe someone have an appid and an app code. then your app need to make a call to that :

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #13 by Benoît MINISINI: Apparently the problem is not the theme. It's really the KDE configuration analyze. A few questions: - Do you have a program named "kde5-config" on your system? - If not, do you have a program named

[Gambas-user] Paint.Rectangle question

2015-09-30 Thread Rolf-Werner Eilert
Is Paint.Rectangle to draw a filled rectangle or an empty one? I tried Paint.LineWidth = 1 Paint.Color(Color.Black) Paint.Rectangle(TabelleX, TabelleY, TblSpalteRechts[tblAnzSpalten] - TabelleX, cy - TabelleY) Paint.Fill() and get a black filled rectangle. Even

[Gambas-user] Paint.LineWidth question

2015-09-30 Thread Rolf-Werner Eilert
This appears to be strange, though it might be just a misunderstanding. Paint.LineWidth = 1 Paint.Color(Color.Black) Paint.MoveTo(x1, y1) Paint.LineTo(x2, y2) Paint.Fill() should draw a line, and it does. Now, if I want a thicker line, I set LineWidth to...

Re: [Gambas-user] How Capture the console exit?

2015-09-30 Thread Jorge Carrión
Thanks Jussi... but I'm not sure that catch the SIGHUP will be the answer... I'm very confused about this. Perhaps to open a socket listen on port 21 will be enough,.. or not... Is only that I'm surprised that nobody has addressed this topic before. FTP is fairly used, I think. Take a look on

[Gambas-user] How Capture the console exit?

2015-09-30 Thread Jorge Carrión
I'm doing a ftp client (like Filezilla). If I launch the gambas executable from console I can see the dialog between server and local machine on it... but how can I capture de console exit within my project? Obbiously If I launch my project from console with ./miproject.gambas 2>file.log and

Re: [Gambas-user] How Capture the console exit?

2015-09-30 Thread Jussi Lahtinen
If you mean how to catch SIGHUP, then look at how GAlarm uses gb.signal. You can find GAlarm from software farm. Jussi On Wed, Sep 30, 2015 at 11:34 PM, Jorge Carrión wrote: > I'm doing a ftp client (like Filezilla). > > If I launch the gambas executable from console I can

Re: [Gambas-user] Paint.Rectangle question

2015-09-30 Thread Fabien Bodard
Paint.rectangle(x,y,width,height) Paint.brush=paint.color(color.red) Paint.fill(true) 'true maintain the current path active Paint.brush=paint.color(yellow) Paint.linewidth=2 Paint.Stroke You will get a red rectangle with a two pix yellow border Is Paint.Rectangle to draw a filled rectangle or

Re: [Gambas-user] Paint.Rectangle question

2015-09-30 Thread Fabien Bodard
Why I don't speak german ? 2015-09-30 12:29 GMT+02:00 Tobias Boege : > On Wed, 30 Sep 2015, Rolf-Werner Eilert wrote: >> Is Paint.Rectangle to draw a filled rectangle or an empty one? >> >> I tried >> >> Paint.LineWidth = 1 >> Paint.Color(Color.Black) >>

Re: [Gambas-user] Paint.LineWidth question

2015-09-30 Thread Tobias Boege
On Wed, 30 Sep 2015, Rolf-Werner Eilert wrote: > This appears to be strange, though it might be just a misunderstanding. > > [code below] > > should draw a line, and it does. Now, if I want a thicker line, I set > LineWidth to... what? It is not documented. > > I tried 2, I tried 10, I tried

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Moviga TECHNOLOGIES reported a new bug. Summary --- Gambas does not detect Breeze as desktop incon theme Type : Bug Priority : Medium Gambas version : 3.8.90 (TRUNK) Product : Development

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #3 by Zainudin AHMAD: @JORNMO sorry, different problem ! I think do you means "icon themes in IDE" not file icon in file manager. --

Re: [Gambas-user] Question

2015-09-30 Thread Tobias Boege
On Wed, 30 Sep 2015, adamn...@gmail.com wrote: > On Tue, 29 Sep 2015 21:18:40 +0200 Tobias Boege wrote: > > On Tue, 29 Sep 2015, Jussi Lahtinen wrote: > > > How does the mapviewer work..? I get only empty view, and quickly I don't > > > see way to define the map. > > > > > >

Re: [Gambas-user] Paint.Rectangle question

2015-09-30 Thread Tobias Boege
On Wed, 30 Sep 2015, Rolf-Werner Eilert wrote: > Is Paint.Rectangle to draw a filled rectangle or an empty one? > > I tried > > Paint.LineWidth = 1 > Paint.Color(Color.Black) > Paint.Rectangle(TabelleX, TabelleY, TblSpalteRechts[tblAnzSpalten] > - TabelleX, cy - TabelleY) >

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #1 by Zainudin AHMAD: I have the same problem, don't know to resolve its. Can you try to use a new user for testing maybe I'm wrong (it is not a bug) something like dolphin configuration or other ???

Re: [Gambas-user] MaskBox bug?

2015-09-30 Thread Peter Roc
Tobias and Fabien, thank you for replying. Cheers Peter Sent: Wednesday, September 30, 2015 at 5:11 AM From: "Fabien Bodard" To: "mailing list for gambas users" Subject: Re: [Gambas-user] MaskBox bug? The bug is fixed

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #2 by Fabien BODARD: KDE5 / Plasma 5.4... are young new desktop and theire implementation are different on each distrib.. because of the smooth transition between kde4 and kde5. First i need to know what return

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #5 by Moviga TECHNOLOGIES: $ env XDG_VTNR=1 KDE_MULTIHEAD=false XDG_SESSION_ID=c2 TERM=xterm SHELL=/bin/bash KONSOLE_DBUS_SERVICE=:1.24 GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/jornmo/.gtkrc-2.0:/home/jornmo/.config/gtkrc-2.0

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #6 by Moviga TECHNOLOGIES: I do not have any kde4 package installed -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #7 by Benoît MINISINI: I think that in Plasma 5.4 they changed the breeze icon theme structure, which may confuse Gambas. Can you post the result of: $ ls -laR /usr/share/icons/breeze Thanks.

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #8 by Benoît MINISINI: @Fabien: Why do you put all these extra void lines? -- ___ Gambas-user mailing

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Benoît MINISINI changed the state of the bug to: Waiting. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #9 by Benoît MINISINI: ...or better send an archive of the /usr/share/icons/breeze directory so that I can test directly on my system. --

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #4 by Moviga TECHNOLOGIES: Desktop.Type=KDE5 Application.Theme=breeze @ZAINUDDINA, it might very well be the same issue even though... --

[Gambas-user] [Gambas Bug Tracker] Bug #768: template for Database Application

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.768=L21haW4- Comment #2 by Benoît MINISINI: Done in revision #7366. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #768: template for Database Application

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.768=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.778=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.778=L21haW4- Zainudin AHMAD reported a new bug. Summary --- gtk+/gtk3 different with qt4, clock example look different Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : GUI components

[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.778=L21haW4- Zainudin AHMAD added an attachment: Clock-3.8.90.tar.gz -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.779=L21haW4- Zainudin AHMAD reported a new bug. Summary --- me.top = 0 , can't work ( in event _new() ) Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : GUI components Description

[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.779=L21haW4- Zainudin AHMAD added an attachment: test-top2-0.0.1.tar.gz -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.779=L21haW4- Comment #2 by Bruce BRUEN: This is not a bug. The class constructor does not display the form. To be precise, the form definition has not been read when the constructor is called. See the help on the Open event for more information.

[Gambas-user] [Gambas Bug Tracker] Bug #759: gtk+/gtk3 different with qt4, gtk+/gtk3 font size for gridview control is bigger

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.759=L21haW4- Comment #4 by Bruce BRUEN: Nor do I have that problem, but then I have spent considerable time ensuring that all the theme managers (QT4/QT5/GTK+,GTK3+) use the same default settings for fonts and widget management and etc.

[Gambas-user] [Gambas Bug Tracker] Bug #780: me.left = value and me.top = value, get diffrent position between _new() event and show() event

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.780=L21haW4- Zainudin AHMAD reported a new bug. Summary --- me.left = value and me.top = value, get diffrent position between _new() event and show() event Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK)

[Gambas-user] R: How Capture the console exit?

2015-09-30 Thread Ru Vuott
...you could use " xterm -l " command. bye vuott Mer 30/9/15, Jorge Carrión ha scritto: Oggetto: [Gambas-user] How Capture the console exit? A: "mailing list for gambas users" Data:

[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.779=L21haW4- Comment #1 by Zainudin AHMAD: this code can't work too Public Sub _new() Me.Top = 0 Me.Left = 0 Me.Move(0, 0) End --

[Gambas-user] [Gambas Bug Tracker] Bug #780: me.left = value and me.top = value, get diffrent position between _new() event and show() event

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.780=L21haW4- Zainudin AHMAD added an attachment: test-position-0.0.1.tar.gz -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.781=L21haW4- Zainudin AHMAD reported a new bug. Summary --- gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : QT4

[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.782=L21haW4- Zainudin AHMAD added an attachment: menu-trayIcon-0.0.1.tar.gz -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.782=L21haW4- Zainudin AHMAD reported a new bug. Summary --- gtk+ popup menu position in tray icon is not perfect Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : GTK+2 component Description

[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.782=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.781=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.781=L21haW4- Zainudin AHMAD added an attachment: test-top-position-0.0.1.tar.gz -- ___ Gambas-user mailing list

Re: [Gambas-user] Question

2015-09-30 Thread Fabien Bodard
I can use already Here with gb.map it's a quadkey based tiling just like Bing 2015-09-29 23:52 GMT+02:00 adamn...@gmail.com : > On Tue, 29 Sep 2015 21:18:40 +0200 > Tobias Boege wrote: > >> On Tue, 29 Sep 2015, Jussi Lahtinen wrote: >> > How does the

[Gambas-user] [Gambas Bug Tracker] Bug #773: System information unable to detect Xfce desktop

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.773=L21haW4- Comment #12 by Jesus GUARDON: Of course, it now works as expected. Many thanks, Benoît -- ___ Gambas-user

[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.777=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

Re: [Gambas-user] Paint.Rectangle question

2015-09-30 Thread Rolf-Werner Eilert
Am 30.09.2015 12:29, schrieb Tobias Boege: > On Wed, 30 Sep 2015, Rolf-Werner Eilert wrote: >> Is Paint.Rectangle to draw a filled rectangle or an empty one? >> >> I tried >> >> Paint.LineWidth = 1 >> Paint.Color(Color.Black) >> Paint.Rectangle(TabelleX, TabelleY,

[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.777=L21haW4- Zainudin AHMAD reported a new bug. Summary --- [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472 Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : Development

[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.777=L21haW4- Zainudin AHMAD added an attachment: pic-2.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

Re: [Gambas-user] Paint.Rectangle question

2015-09-30 Thread Rolf-Werner Eilert
Now I understand, thank you for this example! Rolf Am 30.09.2015 12:26, schrieb Fabien Bodard: > Paint.rectangle(x,y,width,height) > > Paint.brush=paint.color(color.red) > > Paint.fill(true) 'true maintain the current path active > > Paint.brush=paint.color(yellow) > Paint.linewidth=2 >

[Gambas-user] Wiki mysql example

2015-09-30 Thread Peter Roc
Hi again. Testing the example (http://gambaswiki.org/wiki/howto/database) in the wiki, something is escaping me with the step 4 and 5. Step 4 didn't quite worked for me and with 5. I had to add the line MODMain.Connect() (after DIM $Query AS String), otherwise I would not be

[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.777=L21haW4- Comment #1 by Benoît MINISINI: Fixed in revision #7374. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.777=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme

2015-09-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.776=L21haW4- Comment #11 by Benoît MINISINI: I tried that version of breeze, and the IDE uses it correctly. So I don't know what's wrong on your system. Can you send the output of: $ GB_STOCK_DEBUG=1 gambas3