[Gambas-user] Paint.Rectangle question
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 Paint.Color(Color.Transparent) doesn't help. Did I get this wrong, or is it buggy? Better to use Line? But then... see my first question :) Thanks for any help Rolf -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] MaskBox bug?
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 In svn Le 30 sept. 2015 00:26, "Tobias Boege" a écrit : > On Tue, 29 Sep 2015, Peter Roc wrote: > > > > Greetings. > > > > New to gambas and since I have a small project to develop decided to > study > > the language. Version 3.8.1 > > While using a MaskBox with the Mask [0-9], inserting 0 it turns out > that > > it's not displayed, I can see the cursor moving, and only a space is > left. > > Is it an expected behavior? Thanks. > > > > Peter > > I can confirm this behaviour, but I don't know if it is intended or not. In > any case you can use mask "0" for a single mandatory digit. > > Regards, > Tobi > > -- > "There's an old saying: Don't change anything... ever!" -- Mr. Monk > > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > [1]https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net [2]https://lists.sourceforge.net/lists/listinfo/gambas-user References 1. https://lists.sourceforge.net/lists/listinfo/gambas-user 2. https://lists.sourceforge.net/lists/listinfo/gambas-user -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 Environment Description --- I have a fresh KDE5 install on my laptop and a freshly compiled Gambas (, smells nice). The icon theme chosen by Gambas was the old one, even though my system is using Breeze. System information -- [System] Gambas=3.8.90 r7327 OperatingSystem=Linux Kernel=4.2.1-1-ARCH Architecture=x86_64 Distribution=arch Desktop=KDE5 Theme=Proxy Language=nb_NO.UTF-8 Memory=3580M [Libraries] Cairo=libcairo.so.2.11400.2 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.3 GStreamer=libgstreamer-1.0.so.0.405.0 GTK+2=libgtk-x11-2.0.so.0.2400.28 GTK+3=libgtk-3.so.0.1600.7 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.52.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.0 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=/usr/share/xsessions/plasma-mediacenter DISPLAY=:0 GB_GUI=gb.qt5 GS_LIB=/.fonts GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/.gtkrc-2.0:/.config/gtkrc-2.0 GTK_MODULES=canberra-gtk-module GTK_RC_FILES=/etc/gtk/gtkrc:/.gtkrc:/.config/gtkrc HOME= KDE_FULL_SESSION=true KDE_MULTIHEAD=false KDE_SESSION_UID=1000 KDE_SESSION_VERSION=5 LANG=nb_NO.UTF-8 LANGUAGE=nb LOGNAME= MAIL=/var/spool/mail/ MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_IM_MODULE=compose QT_NO_GLIB=1 SESSION_MANAGER=local/:@/tmp/.ICE-unix/564,unix/:/tmp/.ICE-unix/564 SHELL=/bin/bash SHLVL=1 SSH_ASKPASS=/usr/bin/ksshaskpass TZ=:/etc/localtime USER= XAUTHORITY=/tmp/xauth-1000-_0 XCURSOR_THEME=breeze_cursors XDG_CURRENT_DESKTOP=KDE XDG_DATA_DIRS=/usr/share:/usr/share:/usr/local/share XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=KDE XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1 XDG_SESSION_TYPE=x11 XDG_VTNR=1 _=/usr/lib/kf5/start_kdeinit_wrapper -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.LineWidth question
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 100, but to no avail. > > But maybe I misunderstand its function? > > I used FillRect instead which does the same if you make it thin enough, > but I would feel better if I knew how to handle the line. > >Paint.LineWidth = 1 >Paint.Color(Color.Black) The Paint.Color() method just returns a PaintBrush object and does not modify the Paint state. You want to set the Brush property with the return value from Paint.Color(): Paint.Brush = Paint.Color(Color.Black) Alternatively, if you just want a solid color, you can use Paint.Background = Color.Black >Paint.MoveTo(x1, y1) >Paint.LineTo(x2, y2) >Paint.Fill() Use Paint.Stroke() for (one-dimensional) lines, even if they are thick. Then LineWidth should work, just set it to 10 for 10 units. Paint.Fill() is for the two-dimensional area inside[*] your paint path, which was empty in your case. Regards, Tobi [*] Where the meaning of "inside" is determined by Paint.FillRule. -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.Rectangle question
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 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 Paint.Color(Color.Transparent) doesn't help. Did I get this wrong, or is it buggy? Better to use Line? But then... see my first question :) Thanks for any help Rolf -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.Rectangle question
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) > Paint.Fill() > > and get a black filled rectangle. Even Paint.Color(Color.Transparent) > doesn't help. > > Did I get this wrong, or is it buggy? Better to use Line? But then... > see my first question :) > Paint.Rectangle() does not specify if the rectangle is filled or not. It just adds a drawing path (in rectangular shape). If you use Paint.Fill() on this drawing path, its inside (according to Paint.FillRule) is filled with your current brush (in your case solid black color). If you just want the border of the rectangle, you call Paint.Stroke() to stroke just the lines of the path. We have extensive chapters on Paint[0] and Cairo[1] in the Gambas-Buch, if you want to have a look. Especially the project at [2], which is a big compilation of Paint patterns and examples. Regards, Tobi [0] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:start [1] http://www.gambas-buch.de/dw/doku.php?id=k25:k25.1:start [2] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:k23.3.4:k23.3.4.1:start -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 ??? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 application.theme and Desktop.type on the gambas console type : ? application.theme ? Desktop.type and give us the returned values if one of them return a value then -> you send us the result of the 'env' command on console (can be done even if the previous step is not ok) then the result of this command : # kde4-config --path icon. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.Rectangle question
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) >> Paint.Rectangle(TabelleX, TabelleY, TblSpalteRechts[tblAnzSpalten] >> - TabelleX, cy - TabelleY) >> Paint.Fill() >> >> and get a black filled rectangle. Even Paint.Color(Color.Transparent) >> doesn't help. >> >> Did I get this wrong, or is it buggy? Better to use Line? But then... >> see my first question :) >> > > Paint.Rectangle() does not specify if the rectangle is filled or not. It > just adds a drawing path (in rectangular shape). If you use Paint.Fill() > on this drawing path, its inside (according to Paint.FillRule) is filled > with your current brush (in your case solid black color). > > If you just want the border of the rectangle, you call Paint.Stroke() to > stroke just the lines of the path. > > We have extensive chapters on Paint[0] and Cairo[1] in the Gambas-Buch, > if you want to have a look. Especially the project at [2], which is a big > compilation of Paint patterns and examples. > > Regards, > Tobi > > [0] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:start > [1] http://www.gambas-buch.de/dw/doku.php?id=k25:k25.1:start > [2] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:k23.3.4:k23.3.4.1:start > > -- > "There's an old saying: Don't change anything... ever!" -- Mr. Monk > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Fabien Bodard -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Question
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. > > > > > > > I believe we have a gb.map example using MapView here[0], German though. > > Scroll all the way down the page to find the download section. > > > > Regards, > > Tobi > > > > [0] http://www.gambas-buch.de/dw/doku.php?id=k24:k24.8:k24.8.1:start > > > > Tobi, > That was great, I have been struggling with the MapView for 3 days. A couple > of questions though. > 1) Is there an example using the GoogleMaps provider? Thanks, this is Hans' work (IIRC with Fabien's help), I haven't used gb.map yet. However, grepping through the gb.map sources, there is a file Tests/FMain.class which seems to use French GoogleMaps. > 2) If the provided lat/long numbers are invalid, a "Mathematical Error" > occurs, but I cant seem to trap this in the client program. Both Try and > Catch methods don't work. I get a stack backtrace of: > Geo.MapPointToTile.19 > _MapTile.Load.166 > Map.tmrLoad_Timer.172 > in the IDE which then stops. This seems to be a bug in gb.map. The Geo class is certainly in gb.map and does some math (involving a logarithm) in line 19. > 3) Have you considered an interface to the Nokia "Here" map provider? It > seems faster than the GoogleMaps web and has a couple of nice features. e.g. > https://www.here.com/?map=52.79089,11.7536,15,satellite > I think as long as the URL format is known, this can be done in an instant, but I can't get it to work here... Also I need to head to lunch :-) Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 KONSOLE_PROFILE_NAME=Skall GS_LIB=/home/jornmo/.fonts GTK_RC_FILES=/etc/gtk/gtkrc:/home/jornmo/.gtkrc:/home/jornmo/.config/gtkrc WINDOWID=39845894 SHELL_SESSION_ID=33c09f747534400080ec212ccb966c2b GTK_MODULES=canberra-gtk-module XDG_SESSION_CLASS=user KDE_FULL_SESSION=true USER=jornmo XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 SESSION_MANAGER=local/jornmo-laptop:@/tmp/.ICE-unix/561,unix/jornmo-laptop:/tmp/.ICE-unix/561 MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins DESKTOP_SESSION=/usr/share/xsessions/plasma-mediacenter MAIL=/var/spool/mail/jornmo PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl QT_IM_MODULE=compose XDG_SESSION_TYPE=x11 PWD=/home/jornmo KDE_SESSION_UID=1000 LANG=nb_NO.UTF-8 KONSOLE_DBUS_SESSION=/Sessions/1 SSH_ASKPASS=/usr/bin/ksshaskpass HOME=/home/jornmo XDG_SEAT=seat0 SHLVL=2 COLORFGBG=15;0 LANGUAGE=nb KDE_SESSION_VERSION=5 XCURSOR_THEME=breeze_cursors XDG_SESSION_DESKTOP=KDE LOGNAME=jornmo VISUAL=kate XDG_DATA_DIRS=/usr/share:/usr/share:/usr/local/share DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus XDG_RUNTIME_DIR=/run/user/1000 DISPLAY=:0 PROFILEHOME= XDG_CURRENT_DESKTOP=KDE XAUTHORITY=/tmp/xauth-1000-_0 _=/usr/bin/env -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=L21haW4- Comment #6 by Moviga TECHNOLOGIES: I do not have any kde4 package installed -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=L21haW4- Comment #8 by Benoît MINISINI: @Fabien: Why do you put all these extra void lines? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=L21haW4- Benoît MINISINI changed the state of the bug to: Waiting. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #768: template for Database Application
http://gambaswiki.org/bugtracker/edit?object=BUG.768&from=L21haW4- Comment #2 by Benoît MINISINI: Done in revision #7366. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #768: template for Database Application
http://gambaswiki.org/bugtracker/edit?object=BUG.768&from=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] Wiki mysql example
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 able to connect. Did I missed something or the example? Thanks. Peter -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472
http://gambaswiki.org/bugtracker/edit?object=BUG.777&from=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 Environment Description --- Gambas 3.8.90 r7373 --- get error message (attach pic-1) reproduce bug (attach pic-2) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472
http://gambaswiki.org/bugtracker/edit?object=BUG.777&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472
http://gambaswiki.org/bugtracker/edit?object=BUG.777&from=L21haW4- Zainudin AHMAD added an attachment: pic-2.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.Rectangle question
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, TblSpalteRechts[tblAnzSpalten] >> - TabelleX, cy - TabelleY) >> Paint.Fill() >> >> and get a black filled rectangle. Even Paint.Color(Color.Transparent) >> doesn't help. >> >> Did I get this wrong, or is it buggy? Better to use Line? But then... >> see my first question :) >> > Paint.Rectangle() does not specify if the rectangle is filled or not. It > just adds a drawing path (in rectangular shape). If you use Paint.Fill() > on this drawing path, its inside (according to Paint.FillRule) is filled > with your current brush (in your case solid black color). > > If you just want the border of the rectangle, you call Paint.Stroke() to > stroke just the lines of the path. > > We have extensive chapters on Paint[0] and Cairo[1] in the Gambas-Buch, > if you want to have a look. Especially the project at [2], which is a big > compilation of Paint patterns and examples. > > Regards, > Tobi > > [0] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:start > [1] http://www.gambas-buch.de/dw/doku.php?id=k25:k25.1:start > [2] http://www.gambas-buch.de/dw/doku.php?id=k23:k23.3:k23.3.4:k23.3.4.1:start > Ah that makes it clear! Thanks so much! Rolf -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Paint.Rectangle question
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 > Paint.Stroke > > You will get a red rectangle with a two pix yellow border > 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 Paint.Color(Color.Transparent) > doesn't help. > > Did I get this wrong, or is it buggy? Better to use Line? But then... > see my first question :) > > Thanks for any help > > Rolf > > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472
http://gambaswiki.org/bugtracker/edit?object=BUG.777&from=L21haW4- Comment #1 by Benoît MINISINI: Fixed in revision #7374. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #777: [11] Unknown symbol 'Key' in class 'Dialog'. FMain.OpenExternFile.2472
http://gambaswiki.org/bugtracker/edit?object=BUG.777&from=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Question
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 mapviewer work..? I get only empty view, and quickly I don't >> > see way to define the map. >> > >> >> I believe we have a gb.map example using MapView here[0], German though. >> Scroll all the way down the page to find the download section. >> >> Regards, >> Tobi >> >> [0] http://www.gambas-buch.de/dw/doku.php?id=k24:k24.8:k24.8.1:start >> >> -- >> "There's an old saying: Don't change anything... ever!" -- Mr. Monk >> >> -- >> ___ >> Gambas-user mailing list >> Gambas-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > Tobi, > That was great, I have been struggling with the MapView for 3 days. A couple > of questions though. > 1) Is there an example using the GoogleMaps provider? > 2) If the provided lat/long numbers are invalid, a "Mathematical Error" > occurs, but I cant seem to trap this in the client program. Both Try and > Catch methods don't work. I get a stack backtrace of: > Geo.MapPointToTile.19 > _MapTile.Load.166 > Map.tmrLoad_Timer.172 > in the IDE which then stops. > 3) Have you considered an interface to the Nokia "Here" map provider? It > seems faster than the GoogleMaps web and has a couple of nice features. e.g. > https://www.here.com/?map=52.79089,11.7536,15,satellite > > regards > bruce > -- > B Bruen > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Fabien Bodard -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] Question
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 : http://signature.venue.maps.cit.api.here.com/venues/signature/v1?app_id={YOUR_APP_ID} &app_code={YOUR_APP_CODE} to obtain a json return then you get the signature and policy values and key-pair-id and can construct the tile pattern something like hCol!signature=... hCol!policy=... hCol!key-pair-id=... hCol!app_id=... hCol!app_code=... map.AddTile("http://static-{s}.venue.maps.cit.api.here.com/0/tiles-png/L0/{q}.png?Policy={policy}&Signature={signature}&Key-Pair-Id={key-pair-id}&app_id={app_id}&app_code={app_code}";, hCol) where {s} is a subdomainserver 1 to 3 {q} is a calculated quadkey {everithing} is a value in the provided collection. Well it's the way to do ... but i've not tested it. 2015-09-30 19:14 GMT+02:00 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 mapviewer work..? I get only empty view, and quickly I don't >>> > see way to define the map. >>> > >>> >>> I believe we have a gb.map example using MapView here[0], German though. >>> Scroll all the way down the page to find the download section. >>> >>> Regards, >>> Tobi >>> >>> [0] http://www.gambas-buch.de/dw/doku.php?id=k24:k24.8:k24.8.1:start >>> >>> -- >>> "There's an old saying: Don't change anything... ever!" -- Mr. Monk >>> >>> -- >>> ___ >>> Gambas-user mailing list >>> Gambas-user@lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> Tobi, >> That was great, I have been struggling with the MapView for 3 days. A >> couple of questions though. >> 1) Is there an example using the GoogleMaps provider? >> 2) If the provided lat/long numbers are invalid, a "Mathematical Error" >> occurs, but I cant seem to trap this in the client program. Both Try and >> Catch methods don't work. I get a stack backtrace of: >> Geo.MapPointToTile.19 >> _MapTile.Load.166 >> Map.tmrLoad_Timer.172 >> in the IDE which then stops. >> 3) Have you considered an interface to the Nokia "Here" map provider? It >> seems faster than the GoogleMaps web and has a couple of nice features. >> e.g. https://www.here.com/?map=52.79089,11.7536,15,satellite >> >> regards >> bruce >> -- >> B Bruen >> >> -- >> ___ >> Gambas-user mailing list >> Gambas-user@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > -- > Fabien Bodard -- Fabien Bodard -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #773: System information unable to detect Xfce desktop
http://gambaswiki.org/bugtracker/edit?object=BUG.773&from=L21haW4- Comment #12 by Jesus GUARDON: Of course, it now works as expected. Many thanks, Benoît -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #773: System information unable to detect Xfce desktop
http://gambaswiki.org/bugtracker/edit?object=BUG.773&from=L21haW4- Benoît MINISINI changed the state of the bug to: Fixed. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 "kde4-config" on your system? - What's the name of your KDE configuration directory (usually it's "~/.kde") -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] How Capture the console exit?
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 after that on runtime I catch file.log in a textArea, I can see the server's dialog... but I think that way is tricky... It must be a better way, I suppouse. Sumarizing: Is There a way to read the error output of the gambas project in run time? Regards -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] How Capture the console exit?
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 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 after that on runtime I catch file.log in a textArea, I can see the > server's dialog... but I think that way is tricky... It must be a better > way, I suppouse. > > Sumarizing: Is There a way to read the error output of the gambas project > in run time? > > > Regards > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
Re: [Gambas-user] How Capture the console exit?
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 GAlarm, anyway. Regards 2015-09-30 22:45 GMT+02:00 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 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 after that on runtime I catch file.log in a textArea, I can see the > > server's dialog... but I think that way is tricky... It must be a better > > way, I suppouse. > > > > Sumarizing: Is There a way to read the error output of the gambas project > > in run time? > > > > > > Regards > > > > > -- > > ___ > > Gambas-user mailing list > > Gambas-user@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > -- > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] R: How Capture the console exit?
...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: Mercoledì 30 settembre 2015, 22:34 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 after that on runtime I catch file.log in a textArea, I can see the server's dialog... but I think that way is tricky... It must be a better way, I suppouse. Sumarizing: Is There a way to read the error output of the gambas project in run time? Regards -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different
http://gambaswiki.org/bugtracker/edit?object=BUG.778&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different
http://gambaswiki.org/bugtracker/edit?object=BUG.778&from=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 Description --- 1) look different 2) use CPU resource # gtk+/gtk3 : 4% - 5% # qt4 : 0% - 1% attach pic attach project -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #778: gtk+/gtk3 different with qt4, clock example look different
http://gambaswiki.org/bugtracker/edit?object=BUG.778&from=L21haW4- Zainudin AHMAD added an attachment: Clock-3.8.90.tar.gz -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )
http://gambaswiki.org/bugtracker/edit?object=BUG.779&from=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 --- attach project -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )
http://gambaswiki.org/bugtracker/edit?object=BUG.779&from=L21haW4- Zainudin AHMAD added an attachment: test-top2-0.0.1.tar.gz -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )
http://gambaswiki.org/bugtracker/edit?object=BUG.779&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #779: me.top = 0 , can't work ( in event _new() )
http://gambaswiki.org/bugtracker/edit?object=BUG.779&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #759: gtk+/gtk3 different with qt4, gtk+/gtk3 font size for gridview control is bigger
http://gambaswiki.org/bugtracker/edit?object=BUG.759&from=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 mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #780: me.left = value and me.top = value, get diffrent position between _new() event and show() event
http://gambaswiki.org/bugtracker/edit?object=BUG.780&from=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) Product : GUI components Description --- 'position: top : 0 (??? defaul position is center now) and left : 100 Public Sub _new() Me.Left = 100 End --- 'position: top : center and left : 100 Public Sub Form_Show() Me.Left = 100 End = 'position: top : 100 and left : 0 (??? defaul position is center now) Public Sub _new() Me.Top = 100 End --- 'position: top : 100 and left : center Public Sub Form_Show() Me.Top = 100 End -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #780: me.left = value and me.top = value, get diffrent position between _new() event and show() event
http://gambaswiki.org/bugtracker/edit?object=BUG.780&from=L21haW4- Zainudin AHMAD added an attachment: test-position-0.0.1.tar.gz -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel
http://gambaswiki.org/bugtracker/edit?object=BUG.781&from=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 component Description --- attach pic attach project -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel
http://gambaswiki.org/bugtracker/edit?object=BUG.781&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #781: gtk+/gtk3 different with qt4, position y = 0 qt4 window is not at bottom panel
http://gambaswiki.org/bugtracker/edit?object=BUG.781&from=L21haW4- Zainudin AHMAD added an attachment: test-top-position-0.0.1.tar.gz -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect
http://gambaswiki.org/bugtracker/edit?object=BUG.782&from=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 --- attach pic attach project -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect
http://gambaswiki.org/bugtracker/edit?object=BUG.782&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #782: gtk+ popup menu position in tray icon is not perfect
http://gambaswiki.org/bugtracker/edit?object=BUG.782&from=L21haW4- Zainudin AHMAD added an attachment: menu-trayIcon-0.0.1.tar.gz -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=L21haW4- Comment #16 by Benoît MINISINI: do ---> is -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user
[Gambas-user] [Gambas Bug Tracker] Bug #776: Gambas does not detect Breeze as desktop incon theme
http://gambaswiki.org/bugtracker/edit?object=BUG.776&from=L21haW4- Comment #15 by Benoît MINISINI: Why do your system information full of extra void lines? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user