From gene1943 at ...640... Thu May 6 17:55:14 2010 From: gene1943 at ...640... (gene1943) Date: Thu, 6 May 2010 08:55:14 -0700 (PDT) Subject: [Gambas-devel] unexpected message from qt4 Message-ID: <28475806.post@...565...> Don't know if this is just me or a bug while using message under qt4 message.question -> information icon message.info -> error & crash thanks for listening -- View this message in context: http://old.nabble.com/unexpected-message-from-qt4-tp28475806p28475806.html Sent from the gambas-devel mailing list archive at Nabble.com. From gambas.fr at ...176... Thu May 6 22:06:12 2010 From: gambas.fr at ...176... (Fabien Bodard) Date: Thu, 6 May 2010 22:06:12 +0200 Subject: [Gambas-devel] unexpected message from qt4 In-Reply-To: <28475806.post@...565...> References: <28475806.post@...565...> Message-ID: same problem here i've the info icon for message.question but no crash on message.info 2010/5/6 gene1943 : > > > Don't know if this is just me or a bug > > while using message under qt4 > > message.question -> information icon > message.info -> error & crash > > thanks for listening > -- > View this message in context: http://old.nabble.com/unexpected-message-from-qt4-tp28475806p28475806.html > Sent from the gambas-devel mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > From gambas.fr at ...176... Thu May 6 22:20:33 2010 From: gambas.fr at ...176... (Fabien Bodard) Date: Thu, 6 May 2010 22:20:33 +0200 Subject: [Gambas-devel] unexpected message from qt4 In-Reply-To: References: <28475806.post@...565...> Message-ID: question actions/svn-status.png this icon does not exist anymore in 10.4 2010/5/6 Fabien Bodard : > same problem here i've the info icon for message.question but no crash > on message.info > > > 2010/5/6 gene1943 : >> >> >> Don't know if this is just me or a bug >> >> while using message under qt4 >> >> message.question -> information icon >> message.info -> error & crash >> >> thanks for listening >> -- >> View this message in context: http://old.nabble.com/unexpected-message-from-qt4-tp28475806p28475806.html >> Sent from the gambas-devel mailing list archive at Nabble.com. >> >> >> ------------------------------------------------------------------------------ >> _______________________________________________ >> Gambas-devel mailing list >> Gambas-devel at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-devel >> > From vscott59 at ...651... Mon May 24 17:24:52 2010 From: vscott59 at ...651... (Vince Scott) Date: Mon, 24 May 2010 10:24:52 -0500 Subject: [Gambas-devel] Building Components Message-ID: I have been developing in Gambas for about 3 years. I would like to build some components for Gambas both using the Gambas language and C/C++. Can anyone direct me to where I might find 'complete' information on how to complete these task. I have built a component using the Template code and also within Gambas. But this only gets' you stared...I need the information to complete. Any help would be greatly appreciated! Vince Scott -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcobra.ubuntu at ...176... Tue May 25 16:03:04 2010 From: marcobra.ubuntu at ...176... (marco bra) Date: Tue, 25 May 2010 16:03:04 +0200 Subject: [Gambas-devel] Ubuntu 9.10 gambas3 from svn it start but... Message-ID: On Ubuntu 9.10 32 bits (on this pc gambas2 is installed from repository and is working fine) today i want to try and compile Gambas3 (2.99) from svn i used this commands and checks: >From terminal i installed: sudo apt-get install build-essential libffi-dev libbz2-dev libfbclient2 firebird2.1-dev libmysqlclient15-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev libxtst-dev libgtk2.0-dev libgtkglext1-dev librsvg2-dev libcurl4-gnutls-dev libpcre3-dev libpoppler-dev libpoppler-glib-dev libqt3-mt-dev kdelibs4-dev libsdl-image1.2-dev libsdl-sound1.2-dev libsdl-mixer1.2-dev libxml2-dev libxslt1-dev libimlib2-dev libv4l-dev libsdl-ttf2.0-dev Then i have done this steps: cd $HOME; mkdir src; mkdir src/gambas3; cd src/gambas3 svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/ cd trunk ./reconf-all; ./configure -C --enable-image.imlib --enable-v4l --enable-sdl; make clean make sudo make install All compile fine... Starting gambas3 from terminal: gambas3 & ** (:5584): CRITICAL **: atk_object_set_name: assertion `name != NULL' failed i can view the select project window, and i can create a new project but when i try to open it i cannot get the ide window component using top i see the system is using the gbr3 with cpu at 80/90% and i cannot see the created project. Please see the attached image... ( i'm not sure if it can be attached to this post) Do you have suggestions to get a working gambas3. BTW the same svn version of gambas3 is working/starting good on Ubuntu 10.04 32 bits Thank you Marco -- Linux Infinite Freedom -------------- next part -------------- A non-text attachment was scrubbed... Name: Schermata-prova1 0.0.1 - Gambas 3 - ALPHA VERSION, USE AT YOUR OWN RISK! :-).png Type: image/png Size: 3903 bytes Desc: not available URL: From gambas at ...1... Tue May 25 16:15:21 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Tue, 25 May 2010 16:15:21 +0200 Subject: [Gambas-devel] Building Components In-Reply-To: References: Message-ID: <201005251615.22019.gambas@...1...> > I have been developing in Gambas for about 3 years. I would like to build > some components for Gambas both using the Gambas language and C/C++. Can > anyone direct me to where I might find 'complete' information on how to > complete these task. I have built a component using the Template code and > also within Gambas. But this only gets' you stared...I need the > information to complete. > > > > Any help would be greatly appreciated! > > > > Vince Scott Hi, I will provide you all the help you need. At the moment, only the documentation on how to write a component in Gambas is accurate. The documentation on how to write a component in C/C++ is out of date. Can you explain what sort of component you want to make exactly? -- Beno?t Minisini From vscott59 at ...651... Tue May 25 16:57:05 2010 From: vscott59 at ...651... (Vince Scott) Date: Tue, 25 May 2010 09:57:05 -0500 Subject: [Gambas-devel] Building Components In-Reply-To: <201005251615.22019.gambas@...1...> References: , <201005251615.22019.gambas@...1...> Message-ID: Benoit, First, I want to say thanks for the reply. Second, I have really enjoyed writing applications in Gambas. It has allowed many Windows developers to migrate to Linux. Where might I find the documentation for component written in Gambas. I've create the shell of one but don't understand what do with the 2 classes created or where I need to put them to access them. I'm want to put reusable logic in these components so they can be more easily tested and reuse. I have found that sharing class file between projects can be very complicated. In this situation I would want to build components in Gambas to abstract the data. Our legacy system is built on C/C++. I would like to build components that interface better with this legacy code and encapsulate our business logic...thus also allowing us to automate testing. If you can help me I would be willing to document the process I go through of creating a simple component and posting it for others. I think the real strength of Gambas is yet to be tapped with the development of components. That's what made VB so powerful...were all the 3rd party components. Thank, Vince > From: gambas at ...1... > To: gambas-devel at lists.sourceforge.net > Date: Tue, 25 May 2010 16:15:21 +0200 > Subject: Re: [Gambas-devel] Building Components > > > I have been developing in Gambas for about 3 years. I would like to build > > some components for Gambas both using the Gambas language and C/C++. Can > > anyone direct me to where I might find 'complete' information on how to > > complete these task. I have built a component using the Template code and > > also within Gambas. But this only gets' you stared...I need the > > information to complete. > > > > > > > > Any help would be greatly appreciated! > > > > > > > > Vince Scott > > Hi, > > I will provide you all the help you need. > > At the moment, only the documentation on how to write a component in Gambas is > accurate. The documentation on how to write a component in C/C++ is out of > date. > > Can you explain what sort of component you want to make exactly? > > -- > Beno?t Minisini > > ------------------------------------------------------------------------------ > > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel -------------- next part -------------- An HTML attachment was scrubbed... URL: From vscott59 at ...651... Tue May 25 16:58:50 2010 From: vscott59 at ...651... (Vince Scott) Date: Tue, 25 May 2010 09:58:50 -0500 Subject: [Gambas-devel] Building Components In-Reply-To: <201005251615.22019.gambas@...1...> References: , <201005251615.22019.gambas@...1...> Message-ID: Benoit, First, I want to say thanks for the reply. Second, I have really enjoyed writing applications in Gambas. It has allowed many Windows developers to migrate to Linux. Where might I find the documentation for component written in Gambas. I've create the shell of one but don't understand what do with the 2 classes created or where I need to put them to access them. I'm want to put reusable logic in these components so they can be more easily tested and reuse. I have found that sharing class file between projects can be very complicated. In this situation I would want to build components in Gambas to abstract the data. Our legacy system is built on C/C++. I would like to build components that interface better with this legacy code and encapsulate our business logic...thus also allowing us to automate testing. If you can help me I would be willing to document the process I go through of creating a simple component and posting it for others. I think the real strength of Gambas is yet to be tapped with the development of components. That's what made VB so powerful...were all the 3rd party components. Thank, Vince > From: gambas at ...1... > To: gambas-devel at lists.sourceforge.net > Date: Tue, 25 May 2010 16:15:21 +0200 > Subject: Re: [Gambas-devel] Building Components > > > I have been developing in Gambas for about 3 years. I would like to build > > some components for Gambas both using the Gambas language and C/C++. Can > > anyone direct me to where I might find 'complete' information on how to > > complete these task. I have built a component using the Template code and > > also within Gambas. But this only gets' you stared...I need the > > information to complete. > > > > > > > > Any help would be greatly appreciated! > > > > > > > > Vince Scott > > Hi, > > I will provide you all the help you need. > > At the moment, only the documentation on how to write a component in Gambas is > accurate. The documentation on how to write a component in C/C++ is out of > date. > > Can you explain what sort of component you want to make exactly? > > -- > Beno?t Minisini > > ------------------------------------------------------------------------------ > > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcobra.ubuntu at ...176... Thu May 27 13:04:06 2010 From: marcobra.ubuntu at ...176... (marco bra) Date: Thu, 27 May 2010 13:04:06 +0200 Subject: [Gambas-devel] [ Gambas3 ] testing tree-view 0.0.2 example: impossible to view main window Message-ID: On Ubuntu 9.10 32 bits testing TreeView 0.0.2 using gambas trunk svn. 2970 Bad windows ( no window ) visualization on starting (TreeView:13032): Gtk-CRITICAL **: gtk_widget_set_size_request: assertion `height >= -1' failed Please see attached image -- Linux Infinite Freedom -------------- next part -------------- A non-text attachment was scrubbed... Name: screnshoot_TreeView.png Type: image/png Size: 22070 bytes Desc: not available URL: From marcobra.ubuntu at ...176... Thu May 27 13:17:13 2010 From: marcobra.ubuntu at ...176... (marco bra) Date: Thu, 27 May 2010 13:17:13 +0200 Subject: [Gambas-devel] Ubuntu 9.10 gambas3 from svn it start but... In-Reply-To: References: Message-ID: Solved here what i have done, from terminal: dpkg -l | grep -i gambas2 show me old deb gambas2 packages and i removed them using sudo aptitude purge ... ... ... Then i have checked/installed this packages: sudo apt-get install build-essential autoconf libffi-dev libbz2-dev libfbclient2 firebird2.1-dev libmysqlclient15-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev libxtst-dev libgtk2.0-dev libgtkglext1-dev librsvg2-dev libcurl4-gnutls-dev libpcre3-dev libpoppler-dev libpoppler-glib-dev libqt3-mt-dev kdelibs4-dev libsdl-image1.2-dev libsdl-sound1.2-dev libsdl-mixer1.2-dev libxml2-dev libxslt1-dev libimlib2-dev libv4l-dev libsdl-ttf2.0-dev libldap2-dev libsage-dev libbonobo2-dev libcos4-dev libomniorb4-dev libasound2-dev libesd0-dev libesd-alsa0 libdirectfb-dev libaa1-dev libxtst-dev libffi-dev kdelibs4-dev firebird2.1-dev libqt4-dev libglew1.5-dev Then still using terminal: mkdir $HOME/src; mkdir $HOME/src/gambas; cd $HOME/src/gambas svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 cd $HOME/src/gambas/2.0 ./reconf-all; ./configure -C --enable-image.imlib --enable-v4l --enable-sdl; make; sudo make install sudo chmod -R 777 /usr/local/share/gambas2/examples/ # ----- Gambas3 mkdir $HOME/src; mkdir $HOME/src/gambas; cd $HOME/src/gambas svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/ cd $HOME/src/gambas/trunk ./reconf-all; ./configure -C --enable-image.imlib --enable-v4l --enable-sdl; make; sudo make install sudo chmod -R 777 /usr/local/share/gambas3/examples/ Then added icons to run /usr/local/bin/gambas2 and /usr/local/bin/gambas3 Hth Marco From erwin.lemmers at ...653... Sun May 30 13:11:35 2010 From: erwin.lemmers at ...653... (Erwin Lemmers) Date: Sun, 30 May 2010 13:11:35 +0200 Subject: [Gambas-devel] disabled component gb.image.imlib Message-ID: <4C0247E7.10503@...653...> Hi, After update gambas3 to the latest version, Im using 2980 now I did a ./make distclean ./reconf-all ./reconfigure -C Configure ends with config.status: config.h is unchanged THESE COMPONENTS ARE DISABLED: - gb.db.firebird - gb.db.sqlite2 - gb.image.imlib I have the imlib installed and reinstalled it but the components keeps disabled. Any hints or checks I can do to enable this component? Regards Erwin From gambas at ...1... Sun May 30 13:32:33 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 30 May 2010 13:32:33 +0200 Subject: [Gambas-devel] disabled component gb.image.imlib In-Reply-To: <4C0247E7.10503@...653...> References: <4C0247E7.10503@...653...> Message-ID: <201005301332.33732.gambas@...1...> > Hi, > > After update gambas3 to the latest version, Im using 2980 now I did a > > ./make distclean > ./reconf-all > ./reconfigure -C > > Configure ends with > > config.status: config.h is unchanged > THESE COMPONENTS ARE DISABLED: > - gb.db.firebird - gb.db.sqlite2 - gb.image.imlib > > I have the imlib installed and reinstalled it but the components keeps > disabled. > > Any hints or checks I can do to enable this component? > > Regards Erwin > What is searched is in the gb.image.imlib/configure.ac file. It says that you need imlib >= 1.4.0, and the development packages of course. I can't say more! Regards, -- Beno?t Minisini From erwin.lemmers at ...653... Sun May 30 14:33:20 2010 From: erwin.lemmers at ...653... (Erwin Lemmers) Date: Sun, 30 May 2010 14:33:20 +0200 Subject: [Gambas-devel] disabled component gb.image.imlib In-Reply-To: <201005301332.33732.gambas@...1...> References: <4C0247E7.10503@...653...> <201005301332.33732.gambas@...1...> Message-ID: <4C025B10.7010600@...653...> On 05/30/2010 01:32 PM, Beno?t Minisini wrote: >> Hi, >> >> After update gambas3 to the latest version, Im using 2980 now I did a >> >> ./make distclean >> ./reconf-all >> ./reconfigure -C >> >> Configure ends with >> >> config.status: config.h is unchanged >> THESE COMPONENTS ARE DISABLED: >> - gb.db.firebird - gb.db.sqlite2 - gb.image.imlib >> >> I have the imlib installed and reinstalled it but the components keeps >> disabled. >> >> Any hints or checks I can do to enable this component? >> >> Regards Erwin >> >> > What is searched is in the gb.image.imlib/configure.ac file. > > It says that you need imlib>= 1.4.0, and the development packages of course. > > I can't say more! > > Regards, > > Beno?t, Thanks for the fast response. The version of imlib installed is 1.9.15 so the imlib>=1.4.0 the development packages also. Still the component is disabled. I'm lost. Regards, Erwin From gambas at ...1... Sun May 30 14:36:58 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 30 May 2010 14:36:58 +0200 Subject: [Gambas-devel] disabled component gb.image.imlib In-Reply-To: <4C025B10.7010600@...653...> References: <4C0247E7.10503@...653...> <201005301332.33732.gambas@...1...> <4C025B10.7010600@...653...> Message-ID: <201005301436.58692.gambas@...1...> > On 05/30/2010 01:32 PM, Beno?t Minisini wrote: > >> Hi, > >> > >> After update gambas3 to the latest version, Im using 2980 now I did a > >> > >> ./make distclean > >> ./reconf-all > >> ./reconfigure -C > >> > >> Configure ends with > >> > >> config.status: config.h is unchanged > >> THESE COMPONENTS ARE DISABLED: > >> - gb.db.firebird - gb.db.sqlite2 - gb.image.imlib > >> > >> I have the imlib installed and reinstalled it but the components keeps > >> disabled. > >> > >> Any hints or checks I can do to enable this component? > >> > >> Regards Erwin > > > > What is searched is in the gb.image.imlib/configure.ac file. > > > > It says that you need imlib>= 1.4.0, and the development packages of > > course. > > > > I can't say more! > > > > Regards, > > Beno?t, > > Thanks for the fast response. > > The version of imlib installed is 1.9.15 so the imlib>=1.4.0 the > development packages also. Still the component is disabled. > > I'm lost. > > Regards, Erwin > You need the pkg-config configuration of imlib too. Check that with: $ pkg-config --list-all Regards, -- Beno?t Minisini From gambas at ...1... Sun May 30 16:12:17 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 30 May 2010 16:12:17 +0200 Subject: [Gambas-devel] [ Gambas3 ] testing tree-view 0.0.2 example: impossible to view main window In-Reply-To: References: Message-ID: <201005301612.17539.gambas@...1...> > On Ubuntu 9.10 32 bits testing TreeView 0.0.2 using gambas trunk svn. 2970 > > Bad windows ( no window ) visualization on starting > (TreeView:13032): Gtk-CRITICAL **: gtk_widget_set_size_request: > assertion `height >= -1' failed > > Please see attached image The bug should be fixed in revision #2984. Regards, -- Beno?t Minisini From gambas at ...1... Sun May 30 19:44:15 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 30 May 2010 19:44:15 +0200 Subject: [Gambas-devel] Building Components In-Reply-To: References: <201005251615.22019.gambas@...1...> Message-ID: <201005301944.15503.gambas@...1...> > Benoit, > > First, I want to say thanks for the reply. Second, I have really enjoyed > writing applications in Gambas. It has allowed many Windows developers to > migrate to Linux. > > Where might I find the documentation for component written in Gambas. I've > create the shell of one but don't understand what do with the 2 classes > created or where I need to put them to access them. > > I'm want to put reusable logic in these components so they can be more > easily tested and reuse. I have found that sharing class file between > projects can be very complicated. It should not be complicated now that a Gambas project can use other Gambas projects as "library", by using their exported classes, as if these libraries are components. See the mail about libraries on the mailing-list for more details. > In this situation I would want to build > components in Gambas to abstract the data. Our legacy system is built on > C/C++. I would like to build components that interface better with this > legacy code and encapsulate our business logic...thus also allowing us to > automate testing. > > If you can help me I would be willing to document the process I go through > of creating a simple component and posting it for others. Yes, give me some details, and ask me some precise questions. > I think the real > strength of Gambas is yet to be tapped with the development of components. > That's what made VB so powerful...were all the 3rd party components. Mmm. I have bad memories from VB 3rd party components: badly documented and full of bugs! :-) Regards, -- Beno?t Minisini From gambas at ...1... Sun May 30 21:39:00 2010 From: gambas at ...1... (=?utf-8?q?Beno=C3=AEt_Minisini?=) Date: Sun, 30 May 2010 21:39:00 +0200 Subject: [Gambas-devel] unexpected message from qt4 In-Reply-To: References: <28475806.post@...565...> Message-ID: <201005302139.00067.gambas@...1...> > question actions/svn-status.png > > this icon does not exist anymore in 10.4 > I now use a defaut question icon stored in the gb.form component for Message.Question(). If you do not use gb.form, then Message.Question() will use the default question icon provided by Qt4, which is an information icon on Linux. Dunno why... All that in revision #2987. Regards, -- Beno?t Minisini