From david_villalobos_c at ...7... Tue Jun 2 00:59:14 2009 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Mon, 1 Jun 2009 15:59:14 -0700 (PDT) Subject: [Gambas-devel] Feature Request Message-ID: <710234.67798.qm@...566...> Hi Benoit, could you (if you want me to do, I will) add some shorcuts to the tool buttons in the translation module. Here is why: I'm translating my project (350 strings), and every time I need to go to the next string I have to me click in the "Next Button", can we add some shortcuts? Regards -- David From erik.southworth at ...176... Tue Jun 2 22:23:32 2009 From: erik.southworth at ...176... (Erik Southworth) Date: Tue, 2 Jun 2009 16:23:32 -0400 Subject: [Gambas-devel] Packaging for Foresight Linux Message-ID: <2a13ad910906021323x2aa59829pea350e7bb79b40c2@...178...> Hello all. I need advice on two Issues. Background: The tarball works ok except for issue number one. 1) Within the gb.sdl component libglu is improperly assumed to be in $libdir but is deeper down the dir tree. On my system I find this: [s6v at ...632... ~]$ pkg-config glu --libs -L/usr/lib64/xorg.mesa.3d/ -lGLU -lGL -lm -lX11 -lpthread -lXext 2) When trying to create a binary pkg for Foresight Linux the build passes and the install is to a protected $destdir called _ROOT_. The resulting change-set is applied to my system for testing but the gambas2 command fails with: ERROR: #49: Not a directory: /usr/bin/gambas2/.project I suspect there is a problem with the libraries linking to the $destdir. A complete build log is available here: http://pastebin.ca/1445341 -------------- next part -------------- An HTML attachment was scrubbed... URL: From erik.southworth at ...176... Fri Jun 12 00:11:28 2009 From: erik.southworth at ...176... (Erik Southworth) Date: Thu, 11 Jun 2009 18:11:28 -0400 Subject: [Gambas-devel] Packaging for Foresight Linux In-Reply-To: <2a13ad910906021323x2aa59829pea350e7bb79b40c2@...178...> References: <2a13ad910906021323x2aa59829pea350e7bb79b40c2@...178...> Message-ID: <2a13ad910906111511j7f318d55tf08f5586763bd2bb@...178...> On Tue, Jun 2, 2009 at 4:23 PM, Erik Southworth wrote: > Hello all. > > I need advice on two Issues. > Background: The tarball works ok except for issue number one. > > 1) Within the gb.sdl component libglu is improperly assumed to be in > $libdir but is deeper down the dir tree. > > On my system I find this: > [s6v at ...632... ~]$ pkg-config glu --libs > -L/usr/lib64/xorg.mesa.3d/ -lGLU -lGL -lm -lX11 -lpthread -lXext Issue 1 is solved by setting LDFLAGS=-L$libdir/xorg.mesa.3d/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From david_villalobos_c at ...7... Fri Jun 12 22:25:21 2009 From: david_villalobos_c at ...7... (David Villalobos Cambronero) Date: Fri, 12 Jun 2009 13:25:21 -0700 (PDT) Subject: [Gambas-devel] Version control on Gambas 3 Message-ID: <247251.56576.qm@...566...> Hi, is there reason for the versioning control button appear in the Version Tab in Project properties? I mean, the button Commit, update and Revert are no longer visible in the form. Or it is just for me? Regards -- David From nightwolf_glc at ...255... Sat Jun 20 15:23:20 2009 From: nightwolf_glc at ...255... (ReturnOfNights) Date: Sat, 20 Jun 2009 06:23:20 -0700 (PDT) Subject: [Gambas-devel] ListView Checkbox support Please Message-ID: <24125196.post@...565...> Using Gambas for a month now and enjoying it a LOT!!! I was planning on making a bigger project than the ones I have already created with it since recently moving from Windows and VB6 to Linux and Gambas. One of the hacks for VB6 was to enable check boxes to be used if wanted. Instead of spending a long time working on learning to develop gambas controls by myself to achieve this feature, I decided to join up to the mailing list and see how all this open source stuff really works when it's a specific problem/feature requested by me (the end user). If the feature is added and the changes are done with a screencast - I'll be happy to lend a hand to adding new features in the future, I have been a vb6 user for 11 Years and was a QuickBasic user for 3 years prior to that, dabbed in GBasic and was on AMOS and firstly C64 Basic when I was 9 years old - I am 27 now and lets just say, after spending a week looking at python, c#, java, ruby I had almost given up hope of enjoying developing tools in linux in the language I have the most experience in. Basic for Desktop Tools/Applications is far from basic on modern processors - the RAD IDE design and click to edit events, plus the incredible string manipulation supported in these basic languages make it possible to create a complete application in about 1/4 the time it takes a C++ application to have the same features ready. For gambas I thank you for making and sharing it, and most of all - keeping it free for hobbyists like myself to use/improve without needing to mess about with costs and legalities. Please no comments on using a Grid view with a Icon Checkbox or anything hack like, I really want this Product to be it's best, and keeping the code simple, if a work around is possible - then please instead of making every user do this to achieve a feature - make it into a Addin/built in function and keep gambas improving. BTW - great job on the IDE - took me about 5 minutes to become familiar with the layout and apart from the above problem the command help (via f1) is all thats missing. Thanks gambas team ReturnOfNights aka Nightwolf81 -- View this message in context: http://www.nabble.com/ListView-Checkbox-support-Please-tp24125196p24125196.html Sent from the gambas-devel mailing list archive at Nabble.com. From nightwolf_glc at ...255... Thu Jun 25 11:22:01 2009 From: nightwolf_glc at ...255... (ReturnOfNights) Date: Thu, 25 Jun 2009 02:22:01 -0700 (PDT) Subject: [Gambas-devel] Listbox.Add method slow; is it recreating the listbox with each addition? In-Reply-To: <24197307.post@...565...> References: <24197307.post@...565...> Message-ID: <24199840.post@...565...> I read somewhere that using this will allow events to occur/update prior to calling external subs/functions vb6: DoEvents Gambas: WAIT (Note: no value after it, this will give a cpu cycle to the app, enough to NOT make the form dim on 100% CPU intense operations), but I also noticed doing this per item in the list box was enough to make it 4X slower to populate a list - I tried hiding and showing once item added any all ways I can think of with my project - in the end I settled with 3 WAIT commands in a row after the list additions are complete. Thats all fine so long as the users doesn't click the list box to often thinking it has crashed - as I made it execute the items U click :) I been checking this forum every day in hopes a response to my request of a new and improved ListBox Control - with CheckBoxes supported correctly and as a feature (not a hack) - but I'll just have to wait and see :) -- View this message in context: http://www.nabble.com/Listbox.Add-method-slow--is-it-recreating-the-listbox-with-each-addition--tp24197307p24199840.html Sent from the gambas-devel mailing list archive at Nabble.com.