Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
|
Feb
(28) |
Mar
(41) |
Apr
(121) |
May
(78) |
Jun
(56) |
Jul
(114) |
Aug
(48) |
Sep
(83) |
Oct
(59) |
Nov
(34) |
Dec
(34) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(21) |
Feb
(27) |
Mar
(4) |
Apr
(6) |
May
(29) |
Jun
(12) |
Jul
(21) |
Aug
(39) |
Sep
(8) |
Oct
(9) |
Nov
(9) |
Dec
(4) |
2002 |
Jan
(13) |
Feb
(29) |
Mar
(28) |
Apr
(10) |
May
(13) |
Jun
(4) |
Jul
(2) |
Aug
(12) |
Sep
(10) |
Oct
(11) |
Nov
(23) |
Dec
(5) |
2003 |
Jan
(3) |
Feb
(4) |
Mar
|
Apr
(12) |
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2004 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(3) |
Jul
|
Aug
(1) |
Sep
(10) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(1) |
2
|
3
|
4
|
5
|
6
|
7
(1) |
8
|
9
(1) |
10
|
11
(2) |
12
(1) |
13
(1) |
14
(5) |
15
(4) |
16
|
17
|
18
(2) |
19
|
20
|
21
(1) |
22
|
23
|
24
(4) |
25
|
26
|
27
|
28
|
29
|
30
(2) |
31
(3) |
|
|
|
|
|
|
From: mario motta <mmotta@gu...> - 2002-03-31 21:26:12
|
C R Johnson wrote: > Hi Mario! How have you been? Hi Cliff, glad to hear, i'm fine thanks. > > The configure script for vdksdl does not find sdl_image on my redhat 7.2 > system: > > checking target system type... i686-pc-linux-gnu > checking for sdl-config... /usr/bin/sdl-config > checking for SDL - version >= 1.2.0... yes > Checking for SDL_image library ... > configure: error: *** SDL_image not found *** > download it from http:/www.libsdl.org > > But it is installed... vdksdl is an early stage and need to be refined. Change line 6521 in ./configure in to read: echo "Checking for SDL_image library ..." if test -e "/usr/lib/libSDL_image.so"; then echo "yes" LIBS="$LIBS -lSDL_image" else configure erronously looks for SDL_image in hard wired prefix path: /usr/local ciao /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Andre Truter <andre.truter@in...> - 2002-03-31 16:42:48
|
Hi All, I have a window that contains two progress bars and 4 labels. The progress bars is updated by processes performed by the parent class (The main program, so I cannot make the window modal. It works fairly OK, but I have a few problems with keeping it on top and the contents visible. What I am currently doing: Start a process according to a user's selections (Copy or move files) Before we start copying, we create and Show the progress window. Then the progress of each file in the selection is shown by the progess bars. Now it can happen that at a certain stage we need to ask the user a question before we can continue. So modal box is shown and after the user selected an option, the process must continue. At that stage I call the Progress window's Raise() function to get it back on top. This works, but it is empty, except for the progress bar that is updated. I have tried calling the Window's Draw() function after the Raise(), as well as Show(), but it is still empty. I have written a new function called ReDraw() that specifically Draw() each label and progress bar - no luck. The only thing that is kind of working, is to call Draw() each time one of the progress bars are updated (I have two functions that is called from the parent with the new position of the bar). This shows everything, but it is flickering. Then there is another problem. If you click on the parent window while the progress window is active, the parent window comes to the front and hides the progress window. Is there a way that I can force the window to stay on top? Thanks -- Andre Truter Software Engineer Registered Linux user #185282 ICQ #40935899 AIM: trusoftzaf http://www.trusoft.za.net <-------------------------------------------------> < The box said: Requires Windows 95 or better... > < So I installed Linux > <-------------------------------------------------> |
From: C R Johnson <iamcliff@ix...> - 2002-03-31 03:45:17
|
Hi Mario! How have you been? The configure script for vdksdl does not find sdl_image on my redhat 7.2 system: checking target system type... i686-pc-linux-gnu checking for sdl-config... /usr/bin/sdl-config checking for SDL - version >= 1.2.0... yes Checking for SDL_image library ... configure: error: *** SDL_image not found *** download it from http:/www.libsdl.org But it is installed... [cliff@... vdksdl-0.1.0]$ rpm -qa | grep SDL SDL-1.2.2-3 SDL_mixer-1.2.0-4 SDL-devel-1.2.2-3 SDL_image-1.2.0-3 SDL_image-devel-1.2.0-3 SDL_net-devel-1.2.2-1 SDL_net-1.2.2-1 SDL_mixer-devel-1.2.0-4 These are the files on RH 7.2 for SDL_image: [cliff@... vdksdl-0.1.0]$ rpm -ql SDL_image SDL_image-devel /usr/bin/showimage /usr/lib/libSDL_image-1.2.so.0 /usr/lib/libSDL_image-1.2.so.0.0.0 /usr/share/doc/SDL_image-1.2.0 /usr/share/doc/SDL_image-1.2.0/CHANGES /usr/share/doc/SDL_image-1.2.0/COPYING /usr/share/doc/SDL_image-1.2.0/README /usr/include/SDL /usr/include/SDL/SDL_image.h /usr/lib/libSDL_image.a /usr/lib/libSDL_image.so Not much to go on in the config.log file..... configure:6285: checking for sdl-config configure:6302: found /usr/bin/sdl-config configure:6314: result: /usr/bin/sdl-config configure:6322: checking for SDL - version >= 1.2.0 configure:6408: gcc -o conftest -g -O2 -I/usr/include/SDL -D_REENTRANT conftest.c -L/usr/lib -Wl,-rpath,/usr/lib -lSDL -lpthread -lm -L/usr/lib -ldl -lartsc -DPIC -fPIC -lpthread -L/usr/lib -lesd -laudiofile -lm -L/usr/X11R6/lib -lX11 -lXext -lXxf86vm -lXxf86dga -lXv -ldl >&5 configure:6411: $? = 0 configure:6413: ./conftest configure:6416: $? = 0 configure:6432: result: yes configure:6525: error: *** SDL_image not found *** download it from http:/www.libsdl.org Any notions? Thanks, Cliff > |
From: mario motta <mmotta@gu...> - 2002-03-30 23:42:18
|
Dear VDK/VDKBuilder users, along with the new 2.0.1 release i consider now the code enough stable to be safely used in your applications, since first series 2 release (March 13 2002) more or less six hundred users have downloaded new version. But until now very few comments was sent to us, all of these were compliments. We are happy of that, however we need your complains too. You all are encouraged to send whichever comments, suggestion or feature request you feel necessary or advisable to make our software better. That's the Open Source way: release early and often, receive bug reports, complains end even help in order to make a new release, and so on. In this way open source software can quickly grow and became always better. Have a good Easter. /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: mario motta <mmotta@gu...> - 2002-03-30 21:59:41
|
VDK Team announce that ====================== - VDK library version 2.0.1 - VDKXDB library version 2.0.1 - VDKBuilder rad tool 2.0.1 are available at: http://vdkbuilder.sourceforge.net following "downloads" link. This are bug-fix releases. We recommend that users using VDK/VDKBuilder-2.0.0 upgrade to theses releases. What is VDK =========== VDK is a C++ binding of the famous GTK+ widget set libray, strictly speaking it is not just a wrapper rather a framework that hides in the background as much GTK+ work as possible. VDK was designed to be used by newbies with little or no knowledge of GTK+, while at the same time more experienced users can take advantage of their knowledge of GTK+ calls and conventions. VDK is licensed under LGPL What is VDKBuilder ================== VDKBuilder is a RAD (Rapid Application Development) tool based on VDK that helps programmers in constructing GUI interfaces, as well as editing, compiling, linking, and debugging code all within an integrated environment. Using VDKBuilder dramatically reduces development time since all code related to GUI construction and signal processing is automatically generated, maintained and updated. VDKBuilder is licensed under GPL What is VDKXdb ============== VDKXdb2 is a wrapper on Xbase (known also as xdb) library. It provides a set of VDK data-aware widgets and some database classes: VDKXdb2 requires VDK 2.0.0 or higher, VDKXdb2 is licensed under LGPL. XBase is an xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library originally by Gary Kunkel and others. XBase is useful for accessing data in legacy dBase 3 and 4 database files as well as a general light-weight database engine. It includes support for DBF (dBase version 3 and 4) data files, NDX and NTX indexes, and DBT (dBase version 3 and 4). It supports file and record locking under *nix OS's. What's new on these releases ============================ - VDK: Minor bug fixes - VDKBuilder: minor bug fixes and cosmetic changes - VDKXDB: changed include paths to allow this library cohabitate with previous VDKXDB version 0.0.4 wich requires vdk series 1.2.x This can create some difficulties to vdkbuilder users since include path for this library is changed from <vdkxdb/"file"> to <vdkxdb2/"file">. Using vdkxdb-config-2 script should fix these problems however. The VDK Team ============ |
From: mario motta <mmotta@gu...> - 2002-03-24 20:57:29
|
Andre Truter wrote: > Thanks Mario, > > As usual, your advice is spot-on! > > I'm back in business! :-) > > Now I learned something new today (gnome-config & sigc-config) > > Regards > any serious GNU package has a <package>-config Now most recent use: $ pkg-config --cflags <package> that is much powerfull and generalize most of the work. On one of the next vdk releases you will use: $ pgk-config --cflags vdk2 btw: hacking your website i saw that we have something in common: Air Force. I was a fighter pilot at IAF (Italian Air Force), 20 years of service, more than 3000 flying hours on various fighters (most on F-104 Starfighter). ciao /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Andre Truter <andre.truter@in...> - 2002-03-24 15:15:35
|
On Sun, 2002-03-24 at 16:57, mario motta wrote: > > - what about using `gnome-config` and `sigc-config` ? > - if using VDKBuilder just add these search path to "include" into > project options > > Thanks Mario, As usual, your advice is spot-on! I'm back in business! :-) Now I learned something new today (gnome-config & sigc-config) Regards -- Andre Truter Software Engineer Registered Linux user #185282 ICQ #40935899 AIM: trusoftzaf http://www.trusoft.za.net <-------------------------------------------------> < The box said: Requires Windows 95 or better... > < So I installed Linux > <-------------------------------------------------> |
From: mario motta <mmotta@gu...> - 2002-03-24 13:52:28
|
Andre Truter wrote: > Hi All, > > I have a VDK project that I have not worked on in the past month. Today > I added some things to it and when I tried to compile, it complained > about headers: > > /usr/include/vdk/sigc_addon.h:30:34: sigc++/signal_system.h: No such > file or directory > > /usr/include/vdk/vdkgnomeapp.h:31:19: gnome.h: No such file or directory > > I did a search for these files and found them: > /usr/include/gnome-1.0/gnome.h > /usr/include/sigc++-1.0/sigc++/signal_system.h > > Now, I assume this is due to Ximian-Gnome upgrades I did in this past > month. > > I had a quick look in the makefile and it seems like it is looking for > those headers in: > /usr/lib/sigc++/include > and > /usr/lib/gnome-libs/include > > On my machine I only have one file in /usr/lib/gnome-libs/include and > that is gnomesupport.h > > I don't have a /usr/lib/sigc++, only a /usr/lib/sigc++-1.0, and this > does not have a signal_system.h in it > > Should I just add /usr/include/gnome-1.0 and > /usr/include/sigc++-1.0/sigc++ to my Makefile, or is there something > else I should do? > > > Any suggestions? > > Thanks - what about using `gnome-config` and `sigc-config` ? - if using VDKBuilder just add these search path to "include" into project options /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Andre Truter <andre.truter@in...> - 2002-03-24 09:29:32
|
Hi All, I have a VDK project that I have not worked on in the past month. Today I added some things to it and when I tried to compile, it complained about headers: /usr/include/vdk/sigc_addon.h:30:34: sigc++/signal_system.h: No such file or directory /usr/include/vdk/vdkgnomeapp.h:31:19: gnome.h: No such file or directory I did a search for these files and found them: /usr/include/gnome-1.0/gnome.h /usr/include/sigc++-1.0/sigc++/signal_system.h Now, I assume this is due to Ximian-Gnome upgrades I did in this past month. I had a quick look in the makefile and it seems like it is looking for those headers in: /usr/lib/sigc++/include and /usr/lib/gnome-libs/include On my machine I only have one file in /usr/lib/gnome-libs/include and that is gnomesupport.h I don't have a /usr/lib/sigc++, only a /usr/lib/sigc++-1.0, and this does not have a signal_system.h in it Should I just add /usr/include/gnome-1.0 and /usr/include/sigc++-1.0/sigc++ to my Makefile, or is there something else I should do? Any suggestions? Thanks -- Andre Truter Software Engineer Registered Linux user #185282 ICQ #40935899 AIM: trusoftzaf http://www.trusoft.za.net <-------------------------------------------------> < The box said: Requires Windows 95 or better... > < So I installed Linux > <-------------------------------------------------> |
From: mario motta <mmotta@gu...> - 2002-03-21 19:29:43
|
VDK Team announces that VDKSdl version 0.1.0 is available at http://vdkbuilder.sourceforge.net following "downloads" link. What is VDKSdl ============== VDKSdl is a VDK extension that wraps SDL (Simple Direct media layer) a powerfull library mainly used for constructing games that handles very well both graphics and sounds. VDKSdl provides two subsystem (video and sound) and a VDKSdlCanvas widget used for drawing operations. VDKSdlCanvas can be used as a normal widget into VDK applications. You can visit http://www.libsdl.org/ to know more about SDL. Release Notes ============= - vdksdl-0.1.0 is an alpha stage version, by no means should be considered complete and stable - vdksdl-0.1.0 requires SDL-1.2.0 and SDL_Image 1.2.0 or higher - vdksdl-0.1.0 requires vdk 2.0.0 or higher and gtk+/glib 2.0.0 as well. - vdksdl is released as LGPL |
From: mario motta <mmotta@gu...> - 2002-03-18 13:26:51
|
thanks to George Boutwell that made a tutorial proofreading now we have it written in good english.Some other minor cosmetic changes. Readers can see differences between some figures and builder interface, since tutorial was written in early builder 2 devel stages, shouldn't be a problem however, where necessary figure have been updated. Tutorial is a live document, we hope in user feedbacks for suggestions, corrections and even complains. /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: <gboutwel@ne...> - 2002-03-18 01:51:13
|
Since there was some discussion and obvious interest and I still haven't make a cvs commit for it... I've bunbled up my vdk-2.0.0.dll & testvdk.exe & my (work - very much a project in work) win32 develop source. They can be d/led anonymously from (not always available): ftp://bss-fireman.dyndns.org/pub/vdk2/vdk2-win32.zip (~1.2Meg) ftp://bss-fireman.dyndns.org/pub/vdk2/vdk2-win32-devel.zip (~1.3Meg) Hope that helps. George -- __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@...! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/ |
From: mario motta <mmotta@gu...> - 2002-03-15 13:57:58
|
gina wrote: > Hello Mario , > Hearty Congratulations to you and your team . The VDK/VDKBuilder tutorial > will surely attract many to this software . > > Best Wishes , > Gina > > many thanks, gina warm regards /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: <gboutwel@ne...> - 2002-03-15 03:34:34
|
> Alfredo Cole wrote: > > I thought mingw32 compiler only built static libraries. But then > > again, I may be wrong. > > > i scarcely know mingw existance, just reporting what G.Boutwell says, > but i do not have any reason for not believe him. It'll build both at the same time even. It built an lib & dll for vdk-2.0.0. I believe the command-line for it is something like this (but not totally sure): -shared -Wl,--out-implib=SomeLibrary.dll George -- __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@...! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/ |
From: <gboutwel@ne...> - 2002-03-15 03:27:49
|
Mario Motta worte: > Guilherme M. A. Pereira wrote: > > Hi > > Is there any plan to release a Windows version of VDK/VDKBuilder, now > > that GTK 2.0 will suport Windows plataform? > > Tks > Presently George Boutwell that is working on vdk win port has > successfully built vdk-2.0.0 shared library as well as testvdk > application on MinGW(Minimalist GNU For Windows) > http://www.mingw.org > I guess that porting VDKBuilder will be an harder and longer task > however. > May be that George has much more details on scheduled times for a future > release. That's correct. I have succesfully built vdk-2.0.0 as an DLL using MinGW on Windows NT 5.0 SP 5. Then using that DLL build and run the testvdk application which more or less works (there are some gotchas). As for vdkb-2.0.0, that's going to take some doing... As of right now I don't have a time frame and last-time I got to mess with it I didn't get very far (didn't get past the lock file code in vdkb to be exact, couldn't find a defined kill function to correspond with getpid function for mingw :( ). But I hope to get around to it ASAP. I hope to commit my changes to vdk & testvdk to cvs soon. Any changes I've make for vdkb will wait until I have something more solid. Generally speaking I did this: Got MinGW binary from http://www.MinGW.org (actually I think it links to mingw.sourceforge.net for the actual downloads. Got gtk/gtk+ & devel packages for win32 (incluing pango, atk, etc) from the Win32 link on http://www.gtk.org Got an NT cvs & PuTTY (for SSH) not sure where Got an NT Shell/Unix utils package from some where on the web (adds stuff like rm, df, cat, and many many others) - although I don't think it's required it sure does help. Got the pthreads for Win32 from RedHat (for get the exact URL, but do a search for pthreads and Windows on the web) - there's an issue with this and a gcc.dll that sometimes cause a problem with link generating unresolved references... I haven't figured it completely out but there appears to be a workaround with mingw in the works so your milage may vary. Since I'm not an makefile guru and can't even hack may way around one I go my hands on TMake from TrollTech.com and cooked up a project file by messing with it's config files. Then I just ran make -f build/win32/makefile.mingw from the vdk & testvdk directories (haven't gotten a makefile.mingw that'll correctly kick-off sub-dir's make -f build/win32/makefile.mingw's :( ) and fixed whatever the make failed on until make would run through to completion then I copied the build/win32/lib/vdk-2.0.0.dll into the vdk directory and ran testvdk. I sent Mario some screen shots of it running. Any further questions or requests for the files I've made modifications to, etc feel free to e-mail me directly at this address or gboutwel at priaze.com -- __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@...! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/ |
From: gina <gina.verlekar@ta...> - 2002-03-15 03:27:09
|
Hello Mario , Hearty Congratulations to you and your team . The VDK/VDKBuilder tutorial will surely attract many to this software . Best Wishes , Gina On Thursday 14 March 2002 01:39, you wrote: > Send Vdkbuilder-list mailing list submissions to > vdkbuilder-list@... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/vdkbuilder-list > or, via email, send a message with subject or body 'help' to > vdkbuilder-list-request@... > > You can reach the person managing the list at > vdkbuilder-list-admin@... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Vdkbuilder-list digest..." > > > Today's Topics: > > 1. VDK/VDKBuilder 2.0.0 released (mario motta) > > --__--__-- > > Message: 1 > Date: Wed, 13 Mar 2002 18:42:31 +0100 > From: mario motta <mmotta@...> > To: VDKBuilder <vdkbuilder-list@...> > CC: vdk team <vdkbuilder-team@...>, gtk-list@... > Subject: [VDKBuilder]VDK/VDKBuilder 2.0.0 released > > VDK Team is proud to announce that: > =================================== > > VDK and VDKBuilder version 2.0.0 is now available at: > http://vdkbuilder.sourceforge.net following "downloads" link. > Also vdkxdb-2 (a VDK wrapper of xbase library ) is available on the > same site. > > Release notes: > ============== > 1. VDK/VDKBuilder 2.0.0 require to have installed: > - Gtk+/Glib 2.0.0 > - atk version 1.0.0 > - pango 1.0.0 > that can be downloaded from: http://www.gtk.org > > 2. User that upgrade from VDK/VDKBuilder 1.2.5 can have both versions > running on same box provided that are installed in different prefixes > (we suggest /usr for version 1.2.5 and /usr/local for 2.0.0 version) > > 3. User should consider version 2.0.0 as an unstable and incomplete > release, test it and report any problem to mmotta@... or trough > vdkbuilder list available at: http://vdkbuilder.sourceforge.net > A new much more stable and complete release will come soon, pending on > user feedback. > > 4. A VDK/VDKBuilder tutorial is available in pdf format. Is still a > draft, written with my bad english, but quite usable, i hope. > > 5. A 150 pages VDK/VDKBuilder tutorial is now available, it covers > almost all aspects on using VDK and VDKBuilder, for this reason VDK > Reference manual won't be updated anymore, users are encouraged to > install Doxygen tool that permits to build a nice reference manual in > html, ps and man format. See INSTALL for further informations. > You can download doxygen at: > http://www.doxygen.org/download.html > > 6. Both VDK and VDKBuilder 2.0.0 have been tested on Mandrake 8.0 and > RedHat 7.2, using either gcc 2.96 and gcc 3.0. > User should try on different systems and report problems if any. > > What's new on VDK 2.0.0 > ======================= > Library had a huge rewriting to be compatible with Gtk+ 2.0. > However users upgrading from VDK 1.2.5 should suffer little code breaks. > Some widgets are now deprecated even if still supported for > compatibility reason. Newly written code should not use them. > Other widget are not supported anymore. > > Deprecated widgets: > ------------------ > VDKCustomList > VDKCustomTree > VDKPixmap > VDKCanvas > > Widget not more supported: > -------------------------- > - gtkcombobutton > Used on VDKCustomButton class which is now modified, with API unchanged. > - VDKFileTreeDialog > Based on an old gtkdirtree widget > - VDKDatabox > Based on gtkdatabox. > - VDKGrid > Based on gtksheet. > - VDKFileIconDialog > Based on gtkiconfilesel, same as above. > - VDKCoolbar and VDKCoolButton > Was already "deprecated" on previous vdk versions. > - VDKPanedForm and VDKScrolledForm > As above, was deprecated. > - VDKColorBrowser > It depends on VDKGrid > - VDKLabelToggleButton and VDKPixmapToggleButton > Deprecated and substituted with VDKCustomButtons. > - VDKPacker > - VDKText > > New widgets and features: > ------------------------ > - VDKTextView > A GtkTextView wrapper that would substitute > deprecated and buggy VDKText. > - VDKEditor > A nice source editor wrapping Mike Hamerson gtksourceview 0.0.2 > (still on alpha), with syntax hilighting and other nice feautures such as > word completion (ctrl-tab) , parent matching, etc. > - VDKImage > A GtkImage wrapper that should substitute VDKPixmap. > - VDKThread > A simple wrapper on posix threads. > - VDKInputChannel > A wrapper for gdk_input > Thanks to Jonathan Hudson <jonathan@...> . > - VDKTreeView > A wrapper for GtkTreeView > - VDKCalendar > A wrapper for GtkCalendar > - VDKDrawingArea > This widget should substitute VDKCanvas, not deprecated but consider the > new a better widget. > > What's new on VDKBuilder 2.0.0 > ============================== > > - Porting to Gtk+ 2.0.0 > - > Redesigned interface > - > New project wizard > - > New source editor based on GtkTextView > - > Class browser > - > More widgets support > - > More plugins > - > Many minor bug fixes > - > Finally a VDK/VDKBuilder tutorial > > > > > > --__--__-- > > _______________________________________________ > Vdkbuilder-list mailing list > Vdkbuilder-list@... > https://lists.sourceforge.net/lists/listinfo/vdkbuilder-list > > > End of Vdkbuilder-list Digest |
From: mario motta <mmotta@gu...> - 2002-03-14 21:02:18
|
Guilherme M. A. Pereira wrote: > Hi > > Is there any plan to release a Windows version of VDK/VDKBuilder, now > that GTK 2.0 will suport Windows plataform? > > Tks > Presently George Boutwell that is working on vdk win port has successfully built vdk-2.0.0 shared library as well as testvdk application on MinGW(Minimalist GNU For Windows) http://www.mingw.org I guess that porting VDKBuilder will be an harder and longer task however. May be that George has much more details on scheduled times for a future release. regards /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: mario motta <mmotta@gu...> - 2002-03-14 11:00:20
|
Antonio Valerio Netto wrote: > Dear Mario, >=20 > Perfect! I am very happy for you and your team. > Congratulation for everybody! > In Brazil, we will start to spread your software! I am certain that = your > application will be success in my country. >=20 > Best wishes, >=20 > -------------------------------------------------------------- > MSc. Antonio Valerio Netto > Institute of Mathematics Science and Computer > University of S=E3o Paulo - ICMC/USP - Brazil > http://www.usp.br > -------------------------------------------------------------- >=20 many thanks, we will keep up this work, hopefully making it better and be= tter mainly with users feedbacks. warm regards /mario --=20 Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Antonio Valerio Netto <aneto@ic...> - 2002-03-14 10:26:50
|
Dear Mario, Perfect! I am very happy for you and your team. Congratulation for everybody! In Brazil, we will start to spread your software! I am certain that yo= ur application will be success in my country. Best wishes, -------------------------------------------------------------- MSc. Antonio Valerio Netto Institute of Mathematics Science and Computer University of S=E3o Paulo - ICMC/USP - Brazil http://www.usp.br -------------------------------------------------------------- |
From: mario motta <mmotta@gu...> - 2002-03-14 06:21:26
|
Shitalkumar.Chavan wrote: > Dear Mario, > It is very glad to hear the news from you > Hearty Congrats to you & your Team > Best Regards, > Shitalkumar > thanks /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Shitalkumar.Chavan <shitalkumar.chavan@ta...> - 2002-03-14 05:06:04
|
Dear Mario, It is very glad to hear the news from you Hearty Congrats to you & your Team Best Regards, Shitalkumar On Wed, 13 Mar 2002 vdkbuilder-list-request@... wrote: > Send Vdkbuilder-list mailing list submissions to > vdkbuilder-list@... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/vdkbuilder-list > or, via email, send a message with subject or body 'help' to > vdkbuilder-list-request@... > > You can reach the person managing the list at > vdkbuilder-list-admin@... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Vdkbuilder-list digest..." > > > Today's Topics: > > 1. VDK/VDKBuilder 2.0.0 released (mario motta) > > --__--__-- > > Message: 1 > Date: Wed, 13 Mar 2002 18:42:31 +0100 > From: mario motta <mmotta@...> > To: VDKBuilder <vdkbuilder-list@...> > CC: vdk team <vdkbuilder-team@...>, gtk-list@... > Subject: [VDKBuilder]VDK/VDKBuilder 2.0.0 released > > VDK Team is proud to announce that: > =================================== > > VDK and VDKBuilder version 2.0.0 is now available at: > http://vdkbuilder.sourceforge.net following "downloads" link. > Also vdkxdb-2 (a VDK wrapper of xbase library ) is available on the > same site. > > Release notes: > ============== > 1. VDK/VDKBuilder 2.0.0 require to have installed: > - Gtk+/Glib 2.0.0 > - atk version 1.0.0 > - pango 1.0.0 > that can be downloaded from: http://www.gtk.org > > 2. User that upgrade from VDK/VDKBuilder 1.2.5 can have both versions > running on same box provided that are installed in different prefixes > (we suggest /usr for version 1.2.5 and /usr/local for 2.0.0 version) > > 3. User should consider version 2.0.0 as an unstable and incomplete > release, test it and report any problem to mmotta@... or trough > vdkbuilder list available at: http://vdkbuilder.sourceforge.net > A new much more stable and complete release will come soon, pending on > user feedback. > > 4. A VDK/VDKBuilder tutorial is available in pdf format. Is still a > draft, written with my bad english, but quite usable, i hope. > > 5. A 150 pages VDK/VDKBuilder tutorial is now available, it covers > almost all aspects on using VDK and VDKBuilder, for this reason VDK > Reference manual won't be updated anymore, users are encouraged to > install Doxygen tool that permits to build a nice reference manual in > html, ps and man format. See INSTALL for further informations. > You can download doxygen at: > http://www.doxygen.org/download.html > > 6. Both VDK and VDKBuilder 2.0.0 have been tested on Mandrake 8.0 and > RedHat 7.2, using either gcc 2.96 and gcc 3.0. > User should try on different systems and report problems if any. > > What's new on VDK 2.0.0 > ======================= > Library had a huge rewriting to be compatible with Gtk+ 2.0. > However users upgrading from VDK 1.2.5 should suffer little code breaks. > Some widgets are now deprecated even if still supported for > compatibility reason. Newly written code should not use them. > Other widget are not supported anymore. > > Deprecated widgets: > ------------------ > VDKCustomList > VDKCustomTree > VDKPixmap > VDKCanvas > > Widget not more supported: > -------------------------- > - gtkcombobutton > Used on VDKCustomButton class which is now modified, with API unchanged. > - VDKFileTreeDialog > Based on an old gtkdirtree widget > - VDKDatabox > Based on gtkdatabox. > - VDKGrid > Based on gtksheet. > - VDKFileIconDialog > Based on gtkiconfilesel, same as above. > - VDKCoolbar and VDKCoolButton > Was already "deprecated" on previous vdk versions. > - VDKPanedForm and VDKScrolledForm > As above, was deprecated. > - VDKColorBrowser > It depends on VDKGrid > - VDKLabelToggleButton and VDKPixmapToggleButton > Deprecated and substituted with VDKCustomButtons. > - VDKPacker > - VDKText > > New widgets and features: > ------------------------ > - VDKTextView > A GtkTextView wrapper that would substitute > deprecated and buggy VDKText. > - VDKEditor > A nice source editor wrapping Mike Hamerson gtksourceview 0.0.2 > (still on alpha), with syntax hilighting and other nice feautures such as > word completion (ctrl-tab) , parent matching, etc. > - VDKImage > A GtkImage wrapper that should substitute VDKPixmap. > - VDKThread > A simple wrapper on posix threads. > - VDKInputChannel > A wrapper for gdk_input > Thanks to Jonathan Hudson <jonathan@...> . > - VDKTreeView > A wrapper for GtkTreeView > - VDKCalendar > A wrapper for GtkCalendar > - VDKDrawingArea > This widget should substitute VDKCanvas, not deprecated but consider the > new a better widget. > > What's new on VDKBuilder 2.0.0 > ============================== > > - Porting to Gtk+ 2.0.0 > - > Redesigned interface > - > New project wizard > - > New source editor based on GtkTextView > - > Class browser > - > More widgets support > - > More plugins > - > Many minor bug fixes > - > Finally a VDK/VDKBuilder tutorial > > > > > > --__--__-- > > _______________________________________________ > Vdkbuilder-list mailing list > Vdkbuilder-list@... > https://lists.sourceforge.net/lists/listinfo/vdkbuilder-list > > > End of Vdkbuilder-list Digest > |
From: mario motta <mmotta@gu...> - 2002-03-13 17:33:07
|
VDK Team is proud to announce that: =================================== VDK and VDKBuilder version 2.0.0 is now available at: http://vdkbuilder.sourceforge.net following "downloads" link. Also vdkxdb-2 (a VDK wrapper of xbase library ) is available on the same site. Release notes: ============== 1. VDK/VDKBuilder 2.0.0 require to have installed: - Gtk+/Glib 2.0.0 - atk version 1.0.0 - pango 1.0.0 that can be downloaded from: http://www.gtk.org 2. User that upgrade from VDK/VDKBuilder 1.2.5 can have both versions running on same box provided that are installed in different prefixes (we suggest /usr for version 1.2.5 and /usr/local for 2.0.0 version) 3. User should consider version 2.0.0 as an unstable and incomplete release, test it and report any problem to mmotta@... or trough vdkbuilder list available at: http://vdkbuilder.sourceforge.net A new much more stable and complete release will come soon, pending on user feedback. 4. A VDK/VDKBuilder tutorial is available in pdf format. Is still a draft, written with my bad english, but quite usable, i hope. 5. A 150 pages VDK/VDKBuilder tutorial is now available, it covers almost all aspects on using VDK and VDKBuilder, for this reason VDK Reference manual won't be updated anymore, users are encouraged to install Doxygen tool that permits to build a nice reference manual in html, ps and man format. See INSTALL for further informations. You can download doxygen at: http://www.doxygen.org/download.html 6. Both VDK and VDKBuilder 2.0.0 have been tested on Mandrake 8.0 and RedHat 7.2, using either gcc 2.96 and gcc 3.0. User should try on different systems and report problems if any. What's new on VDK 2.0.0 ======================= Library had a huge rewriting to be compatible with Gtk+ 2.0. However users upgrading from VDK 1.2.5 should suffer little code breaks. Some widgets are now deprecated even if still supported for compatibility reason. Newly written code should not use them. Other widget are not supported anymore. Deprecated widgets: ------------------ VDKCustomList VDKCustomTree VDKPixmap VDKCanvas Widget not more supported: -------------------------- - gtkcombobutton Used on VDKCustomButton class which is now modified, with API unchanged. - VDKFileTreeDialog Based on an old gtkdirtree widget - VDKDatabox Based on gtkdatabox. - VDKGrid Based on gtksheet. - VDKFileIconDialog Based on gtkiconfilesel, same as above. - VDKCoolbar and VDKCoolButton Was already "deprecated" on previous vdk versions. - VDKPanedForm and VDKScrolledForm As above, was deprecated. - VDKColorBrowser It depends on VDKGrid - VDKLabelToggleButton and VDKPixmapToggleButton Deprecated and substituted with VDKCustomButtons. - VDKPacker - VDKText New widgets and features: ------------------------ - VDKTextView A GtkTextView wrapper that would substitute deprecated and buggy VDKText. - VDKEditor A nice source editor wrapping Mike Hamerson gtksourceview 0.0.2 (still on alpha), with syntax hilighting and other nice feautures such as word completion (ctrl-tab) , parent matching, etc. - VDKImage A GtkImage wrapper that should substitute VDKPixmap. - VDKThread A simple wrapper on posix threads. - VDKInputChannel A wrapper for gdk_input Thanks to Jonathan Hudson <jonathan@...> . - VDKTreeView A wrapper for GtkTreeView - VDKCalendar A wrapper for GtkCalendar - VDKDrawingArea This widget should substitute VDKCanvas, not deprecated but consider the new a better widget. What's new on VDKBuilder 2.0.0 ============================== - Porting to Gtk+ 2.0.0 - Redesigned interface - New project wizard - New source editor based on GtkTextView - Class browser - More widgets support - More plugins - Many minor bug fixes - Finally a VDK/VDKBuilder tutorial |
From: mario motta <mmotta@gu...> - 2002-03-12 11:55:58
|
Antonio Valerio Netto wrote: > Hi Mario, > > We have gotten intall the VDKB in Red Hat 7.2! > But, we would like to know why you need to put "#include <string.h>" all > examples (Hello, vdktest and plugs) and in Slackware 8.0, you don`t need to do > that. Why? most probably depends on gcc version and/or different include organisation between two distribution (slack is more bsd oriented). > Now, we can run the autoconf/Automake perfectly for Red Hat instalation, > however, for Slackware we have the same problem. > > aclocal: configure.in: 22: macro `AM_PATH_VDK`not found in library > autoheader: config.h.in is unchanged > Makefile.am:30: blank line following trailing backslah > check automake/autoconf version into slack > I have descovered that the file: vdk.m4 there was not in the > /usr/share/aclocal then I have gotten the vdk.m4 from Red Hat 7.2 and put in > the /usr/share/aclocal (slackware 8.0) but it didn`t work. > Suggest?? > at this point i suggest do not use rpm's but build from scratch downloading tarballs (tar.gz) after having uninstalled vdk/vdkbuilder /mario -- Mario Motta AI Research Group - Rimini http://vdkbuilder.sourceforge.net |
From: Antonio Valerio Netto <aneto@ic...> - 2002-03-11 20:08:59
|
Hi Mario, We have gotten intall the VDKB in Red Hat 7.2! But, we would like to know why you need to put "#include <string.h>" all examples (Hello, vdktest and plugs) and in Slackware 8.0, you don`t need = to do that. Why? Now, we can run the autoconf/Automake perfectly for Red Hat instalati= on, however, for Slackware we have the same problem. aclocal: configure.in: 22: macro `AM_PATH_VDK`not found in library autoheader: config.h.in is unchanged Makefile.am:30: blank line following trailing backslah I have descovered that the file: vdk.m4 there was not in the=20 /usr/share/aclocal then I have gotten the vdk.m4 from Red Hat 7.2 and pu= t in the /usr/share/aclocal (slackware 8.0) but it didn`t work. Suggest??=20 I put just one line + CR in extra-dist and copied the aclocal.m4 for my = project dir and when I rerun ./autogen.sh =20 It appeared that situation: _________________________________________________________________________= __ root@...:~/vdk_info/vdkbuilder-1.2.5/example/hello# ./autogen.sh **Warning**: I am going to run `configure' with no arguments. If you wish to pass any to it, please specify them on the `./autogen.sh' command line. processing . Running aclocal ... aclocal: configure.in: 22: macro `AM_PATH_VDK' not found in library Running autoheader... autoheader: config.h.in is unchanged Running automake --gnu ... Makefile.am:30: blank line following trailing backslash Running autoconf ... ... _________________________________________________________________________= __ =20 By the way, Mario do you know when you will launch the new version of VDK= B? We would like to prepare the VDKB tutorial in portuguese and to start the divulgation by lectures and short papers for brazilian undergratuate and graduate students. best regards, -------------------------------------------------------------- MSc. Antonio Valerio Netto Institute of Mathematics Science and Computer University of S=E3o Paulo - ICMC/USP - Brazil http://www.usp.br=20 -------------------------------------------------------------- |
From: Ricardo Rugerio <r_rugerio@ya...> - 2002-03-11 15:31:12
|
yes I did, but I got this errors: In file included from /usr/local/include/gtk-1.2/gdk/gdkprivate.h:31, from /usr/local/include/gtk-1.2/gdk/gdkx.h:30, from forms.cc:37: /usr/openwin/include/X11/Xlib.h:2063: ANSI C++ forbids declaration `XSetTransientForHint' with no type /usr/openwin/include/X11/Xlib.h:2071: ANSI C++ forbids declaration `XActivateScreenSaver' with no type /usr/openwin/include/X11/Xlib.h:2078: ANSI C++ forbids declaration `XAddHost' with no type /usr/openwin/include/X11/Xlib.h:2086: ANSI C++ forbids declaration `XAddHosts' with no type /usr/openwin/include/X11/Xlib.h:2093: ANSI C++ forbids declaration `XAddToExtensionList' with no type /usr/openwin/include/X11/Xlib.h:2100: ANSI C++ forbids declaration `XAddToSaveSet' with no type /usr/openwin/include/X11/Xlib.h:2154: ANSI C++ forbids declaration `XAllowEvents' with no type /usr/openwin/include/X11/Xlib.h:2160: ANSI C++ forbids declaration `XAutoRepeatOff' with no type /usr/openwin/include/X11/Xlib.h:2166: ANSI C++ forbids declaration `XAutoRepeatOn' with no type /usr/openwin/include/X11/Xlib.h:2173: ANSI C++ forbids declaration `XBell' with no type /usr/openwin/include/X11/Xlib.h:2206: ANSI C++ forbids declaration `XChangeActivePointerGrab' with no type /usr/openwin/include/X11/Xlib.h:2215: ANSI C++ forbids declaration `XChangeGC' with no type /usr/openwin/include/X11/Xlib.h:2223: ANSI C++ forbids declaration `XChangeKeyboardControl' with no type /usr/openwin/include/X11/Xlib.h:2233: ANSI C++ forbids declaration `XChangeKeyboardMapping' with no type /usr/openwin/include/X11/Xlib.h:2244: ANSI C++ forbids declaration `XChangePointerControl' with no type /usr/openwin/include/X11/Xlib.h:2257: ANSI C++ forbids declaration `XChangeProperty' with no type /usr/openwin/include/X11/Xlib.h:2265: ANSI C++ forbids declaration `XChangeSaveSet' with no type /usr/openwin/include/X11/Xlib.h:2274: ANSI C++ forbids declaration `XChangeWindowAttributes' with no type /usr/openwin/include/X11/Xlib.h:2331: ANSI C++ forbids declaration `XCirculateSubwindows' with no type /usr/openwin/include/X11/Xlib.h:2338: ANSI C++ forbids declaration `XCirculateSubwindowsDown' with no type /usr/openwin/include/X11/Xlib.h:2345: ANSI C++ forbids declaration `XCirculateSubwindowsUp' with no type /usr/openwin/include/X11/Xlib.h:2357: ANSI C++ forbids declaration `XClearArea' with no type /usr/openwin/include/X11/Xlib.h:2364: ANSI C++ forbids declaration `XClearWindow' with no type /usr/openwin/include/X11/Xlib.h:2370: ANSI C++ forbids declaration `XCloseDisplay' with no type /usr/openwin/include/X11/Xlib.h:2379: ANSI C++ forbids declaration `XConfigureWindow' with no type /usr/openwin/include/X11/Xlib.h:2396: ANSI C++ forbids declaration `XConvertSelection' with no type /usr/openwin/include/X11/Xlib.h:2411: ANSI C++ forbids declaration `XCopyArea' with no type /usr/openwin/include/X11/Xlib.h:2420: ANSI C++ forbids declaration `XCopyGC' with no type /usr/openwin/include/X11/Xlib.h:2436: ANSI C++ forbids declaration `XCopyPlane' with no type /usr/openwin/include/X11/Xlib.h:2463: ANSI C++ forbids declaration `XDefineCursor' with no type /usr/openwin/include/X11/Xlib.h:2471: ANSI C++ forbids declaration `XDeleteProperty' with no type /usr/openwin/include/X11/Xlib.h:2478: ANSI C++ forbids declaration `XDestroyWindow' with no type /usr/openwin/include/X11/Xlib.h:2485: ANSI C++ forbids declaration `XDestroySubwindows' with no type /usr/openwin/include/X11/Xlib.h:2503: ANSI C++ forbids declaration `XDisableAccessControl' with no type /usr/openwin/include/X11/Xlib.h:2533: ANSI C++ forbids declaration `XDisplayKeycodes' with no type /usr/openwin/include/X11/Xlib.h:2568: ANSI C++ forbids declaration `XDrawArc' with no type /usr/openwin/include/X11/Xlib.h:2578: ANSI C++ forbids declaration `XDrawArcs' with no type /usr/openwin/include/X11/Xlib.h:2590: ANSI C++ forbids declaration `XDrawImageString' with no type /usr/openwin/include/X11/Xlib.h:2602: ANSI C++ forbids declaration `XDrawImageString16' with no type /usr/openwin/include/X11/Xlib.h:2614: ANSI C++ forbids declaration `XDrawLine' with no type /usr/openwin/include/X11/Xlib.h:2625: ANSI C++ forbids declaration `XDrawLines' with no type /usr/openwin/include/X11/Xlib.h:2635: ANSI C++ forbids declaration `XDrawPoint' with no type /usr/openwin/include/X11/Xlib.h:2646: ANSI C++ forbids declaration `XDrawPoints' with no type /usr/openwin/include/X11/Xlib.h:2658: ANSI C++ forbids declaration `XDrawRectangle' with no type /usr/openwin/include/X11/Xlib.h:2668: ANSI C++ forbids declaration `XDrawRectangles' with no type /usr/openwin/include/X11/Xlib.h:2678: ANSI C++ forbids declaration `XDrawSegments' with no type /usr/openwin/include/X11/Xlib.h:2690: ANSI C++ forbids declaration `XDrawString' with no type /usr/openwin/include/X11/Xlib.h:2702: ANSI C++ forbids declaration `XDrawString16' with no type /usr/openwin/include/X11/Xlib.h:2714: ANSI C++ forbids declaration `XDrawText' with no type /usr/openwin/include/X11/Xlib.h:2726: ANSI C++ forbids declaration `XDrawText16' with no type /usr/openwin/include/X11/Xlib.h:2732: ANSI C++ forbids declaration `XEnableAccessControl' with no type /usr/openwin/include/X11/Xlib.h:2761: ANSI C++ forbids declaration `XFillArc' with no type /usr/openwin/include/X11/Xlib.h:2771: ANSI C++ forbids declaration `XFillArcs' with no type /usr/openwin/include/X11/Xlib.h:2783: ANSI C++ forbids declaration `XFillPolygon' with no type /usr/openwin/include/X11/Xlib.h:2795: ANSI C++ forbids declaration `XFillRectangle' with no type /usr/openwin/include/X11/Xlib.h:2805: ANSI C++ forbids declaration `XFillRectangles' with no type /usr/openwin/include/X11/Xlib.h:2811: ANSI C++ forbids declaration `XFlush' with no type /usr/openwin/include/X11/Xlib.h:2818: ANSI C++ forbids declaration `XForceScreenSaver' with no type /usr/openwin/include/X11/Xlib.h:2824: ANSI C++ forbids declaration `XFree' with no type /usr/openwin/include/X11/Xlib.h:2831: ANSI C++ forbids declaration `XFreeColormap' with no type /usr/openwin/include/X11/Xlib.h:2841: ANSI C++ forbids declaration `XFreeColors' with no type /usr/openwin/include/X11/Xlib.h:2848: ANSI C++ forbids declaration `XFreeCursor' with no type /usr/openwin/include/X11/Xlib.h:2854: ANSI C++ forbids declaration `XFreeExtensionList' with no type /usr/openwin/include/X11/Xlib.h:2861: ANSI C++ forbids declaration `XFreeFont' with no type /usr/openwin/include/X11/Xlib.h:2869: ANSI C++ forbids declaration `XFreeFontInfo' with no type /usr/openwin/include/X11/Xlib.h:2875: ANSI C++ forbids declaration `XFreeFontNames' with no type /usr/openwin/include/X11/Xlib.h:2881: ANSI C++ forbids declaration `XFreeFontPath' with no type /usr/openwin/include/X11/Xlib.h:2888: ANSI C++ forbids declaration `XFreeGC' with no type /usr/openwin/include/X11/Xlib.h:2894: ANSI C++ forbids declaration `XFreeModifiermap' with no type /usr/openwin/include/X11/Xlib.h:2901: ANSI C++ forbids declaration `XFreePixmap' with no type /usr/openwin/include/X11/Xlib.h:2930: ANSI C++ forbids declaration `XGetErrorDatabaseText' with no type /usr/openwin/include/X11/Xlib.h:2939: ANSI C++ forbids declaration `XGetErrorText' with no type /usr/openwin/include/X11/Xlib.h:2986: ANSI C++ forbids declaration `XGetInputFocus' with no type /usr/openwin/include/X11/Xlib.h:2993: ANSI C++ forbids declaration `XGetKeyboardControl' with no type /usr/openwin/include/X11/Xlib.h:3002: ANSI C++ forbids declaration `XGetPointerControl' with no type /usr/openwin/include/X11/Xlib.h:3020: ANSI C++ forbids declaration `XGetScreenSaver' with no type /usr/openwin/include/X11/Xlib.h:3068: ANSI C++ forbids declaration `XGrabButton' with no type /usr/openwin/include/X11/Xlib.h:3080: ANSI C++ forbids declaration `XGrabKey' with no type /usr/openwin/include/X11/Xlib.h:3111: ANSI C++ forbids declaration `XGrabServer' with no type /usr/openwin/include/X11/Xlib.h:3138: ANSI C++ forbids declaration `XIfEvent' with no type /usr/openwin/include/X11/Xlib.h:3151: ANSI C++ forbids declaration `XInstallColormap' with no type /usr/openwin/include/X11/Xlib.h:3165: ANSI C++ forbids declaration `XKillClient' with no type /usr/openwin/include/X11/Xlib.h:3188: ANSI C++ forbids declaration `XLowerWindow' with no type /usr/openwin/include/X11/Xlib.h:3195: ANSI C++ forbids declaration `XMapRaised' with no type /usr/openwin/include/X11/Xlib.h:3202: ANSI C++ forbids declaration `XMapSubwindows' with no type /usr/openwin/include/X11/Xlib.h:3209: ANSI C++ forbids declaration `XMapWindow' with no type /usr/openwin/include/X11/Xlib.h:3217: ANSI C++ forbids declaration `XMaskEvent' with no type /usr/openwin/include/X11/Xlib.h:3240: ANSI C++ forbids declaration `XMoveResizeWindow' with no type /usr/openwin/include/X11/Xlib.h:3249: ANSI C++ forbids declaration `XMoveWindow' with no type /usr/openwin/include/X11/Xlib.h:3256: ANSI C++ forbids declaration `XNextEvent' with no type /usr/openwin/include/X11/Xlib.h:3262: ANSI C++ forbids declaration `XNoOp' with no type /usr/openwin/include/X11/Xlib.h:3288: ANSI C++ forbids declaration `XPeekEvent' with no type /usr/openwin/include/X11/Xlib.h:3303: ANSI C++ forbids declaration `XPeekIfEvent' with no type /usr/openwin/include/X11/Xlib.h:3336: ANSI C++ forbids declaration `XPutBackEvent' with no type /usr/openwin/include/X11/Xlib.h:3351: ANSI C++ forbids declaration `XPutImage' with no type /usr/openwin/include/X11/Xlib.h:3410: ANSI C++ forbids declaration `XQueryColor' with no type /usr/openwin/include/X11/Xlib.h:3419: ANSI C++ forbids declaration `XQueryColors' with no type /usr/openwin/include/X11/Xlib.h:3436: ANSI C++ forbids declaration `XQueryKeymap' with no type /usr/openwin/include/X11/Xlib.h:3463: ANSI C++ forbids declaration `XQueryTextExtents' with no type /usr/openwin/include/X11/Xlib.h:3476: ANSI C++ forbids declaration `XQueryTextExtents16' with no type /usr/openwin/include/X11/Xlib.h:3494: ANSI C++ forbids declaration `XRaiseWindow' with no type /usr/openwin/include/X11/Xlib.h:3529: ANSI C++ forbids declaration `XRebindKeysym' with no type /usr/openwin/include/X11/Xlib.h:3538: ANSI C++ forbids declaration `XRecolorCursor' with no type /usr/openwin/include/X11/Xlib.h:3544: ANSI C++ forbids declaration `XRefreshKeyboardMapping' with no type /usr/openwin/include/X11/Xlib.h:3551: ANSI C++ forbids declaration `XRemoveFromSaveSet' with no type /usr/openwin/include/X11/Xlib.h:3558: ANSI C++ forbids declaration `XRemoveHost' with no type /usr/openwin/include/X11/Xlib.h:3566: ANSI C++ forbids declaration `XRemoveHosts' with no type /usr/openwin/include/X11/Xlib.h:3576: ANSI C++ forbids declaration `XReparentWindow' with no type /usr/openwin/include/X11/Xlib.h:3582: ANSI C++ forbids declaration `XResetScreenSaver' with no type /usr/openwin/include/X11/Xlib.h:3591: ANSI C++ forbids declaration `XResizeWindow' with no type /usr/openwin/include/X11/Xlib.h:3599: ANSI C++ forbids declaration `XRestackWindows' with no type /usr/openwin/include/X11/Xlib.h:3606: ANSI C++ forbids declaration `XRotateBuffers' with no type /usr/openwin/include/X11/Xlib.h:3616: ANSI C++ forbids declaration `XRotateWindowProperties' with no type /usr/openwin/include/X11/Xlib.h:3630: ANSI C++ forbids declaration `XSelectInput' with no type /usr/openwin/include/X11/Xlib.h:3647: ANSI C++ forbids declaration `XSetAccessControl' with no type /usr/openwin/include/X11/Xlib.h:3655: ANSI C++ forbids declaration `XSetArcMode' with no type /usr/openwin/include/X11/Xlib.h:3663: ANSI C++ forbids declaration `XSetBackground' with no type /usr/openwin/include/X11/Xlib.h:3671: ANSI C++ forbids declaration `XSetClipMask' with no type /usr/openwin/include/X11/Xlib.h:3680: ANSI C++ forbids declaration `XSetClipOrigin' with no type /usr/openwin/include/X11/Xlib.h:3692: ANSI C++ forbids declaration `XSetClipRectangles' with no type /usr/openwin/include/X11/Xlib.h:3699: ANSI C++ forbids declaration `XSetCloseDownMode' with no type /usr/openwin/include/X11/Xlib.h:3708: ANSI C++ forbids declaration `XSetCommand' with no type /usr/openwin/include/X11/Xlib.h:3718: ANSI C++ forbids declaration `XSetDashes' with no type /usr/openwin/include/X11/Xlib.h:3726: ANSI C++ forbids declaration `XSetFillRule' with no type /usr/openwin/include/X11/Xlib.h:3734: ANSI C++ forbids declaration `XSetFillStyle' with no type /usr/openwin/include/X11/Xlib.h:3742: ANSI C++ forbids declaration `XSetFont' with no type /usr/openwin/include/X11/Xlib.h:3750: ANSI C++ forbids declaration `XSetFontPath' with no type /usr/openwin/include/X11/Xlib.h:3758: ANSI C++ forbids declaration `XSetForeground' with no type /usr/openwin/include/X11/Xlib.h:3766: ANSI C++ forbids declaration `XSetFunction' with no type /usr/openwin/include/X11/Xlib.h:3774: ANSI C++ forbids declaration `XSetGraphicsExposures' with no type /usr/openwin/include/X11/Xlib.h:3782: ANSI C++ forbids declaration `XSetIconName' with no type /usr/openwin/include/X11/Xlib.h:3791: ANSI C++ forbids declaration `XSetInputFocus' with no type /usr/openwin/include/X11/Xlib.h:3802: ANSI C++ forbids declaration `XSetLineAttributes' with no type /usr/openwin/include/X11/Xlib.h:3817: ANSI C++ forbids declaration `XSetPlaneMask' with no type /usr/openwin/include/X11/Xlib.h:3835: ANSI C++ forbids declaration `XSetScreenSaver' with no type /usr/openwin/include/X11/Xlib.h:3844: ANSI C++ forbids declaration `XSetSelectionOwner' with no type /usr/openwin/include/X11/Xlib.h:3855: ANSI C++ forbids declaration `XSetState' with no type /usr/openwin/include/X11/Xlib.h:3863: ANSI C++ forbids declaration `XSetStipple' with no type /usr/openwin/include/X11/Xlib.h:3871: ANSI C++ forbids declaration `XSetSubwindowMode' with no type /usr/openwin/include/X11/Xlib.h:3880: ANSI C++ forbids declaration `XSetTSOrigin' with no type /usr/openwin/include/X11/Xlib.h:3888: ANSI C++ forbids declaration `XSetTile' with no type /usr/openwin/include/X11/Xlib.h:3896: ANSI C++ forbids declaration `XSetWindowBackground' with no type /usr/openwin/include/X11/Xlib.h:3904: ANSI C++ forbids declaration `XSetWindowBackgroundPixmap' with no type /usr/openwin/include/X11/Xlib.h:3912: ANSI C++ forbids declaration `XSetWindowBorder' with no type /usr/openwin/include/X11/Xlib.h:3920: ANSI C++ forbids declaration `XSetWindowBorderPixmap' with no type /usr/openwin/include/X11/Xlib.h:3928: ANSI C++ forbids declaration `XSetWindowBorderWidth' with no type /usr/openwin/include/X11/Xlib.h:3936: ANSI C++ forbids declaration `XSetWindowColormap' with no type /usr/openwin/include/X11/Xlib.h:3945: ANSI C++ forbids declaration `XStoreBuffer' with no type /usr/openwin/include/X11/Xlib.h:3953: ANSI C++ forbids declaration `XStoreBytes' with no type /usr/openwin/include/X11/Xlib.h:3961: ANSI C++ forbids declaration `XStoreColor' with no type /usr/openwin/include/X11/Xlib.h:3970: ANSI C++ forbids declaration `XStoreColors' with no type /usr/openwin/include/X11/Xlib.h:3978: ANSI C++ forbids declaration `XStoreName' with no type /usr/openwin/include/X11/Xlib.h:3988: ANSI C++ forbids declaration `XStoreNamedColor' with no type /usr/openwin/include/X11/Xlib.h:3995: ANSI C++ forbids declaration `XSync' with no type /usr/openwin/include/X11/Xlib.h:4007: ANSI C++ forbids declaration `XTextExtents' with no type /usr/openwin/include/X11/Xlib.h:4019: ANSI C++ forbids declaration `XTextExtents16' with no type /usr/openwin/include/X11/Xlib.h:4055: ANSI C++ forbids declaration `XUndefineCursor' with no type /usr/openwin/include/X11/Xlib.h:4064: ANSI C++ forbids declaration `XUngrabButton' with no type /usr/openwin/include/X11/Xlib.h:4073: ANSI C++ forbids declaration `XUngrabKey' with no type /usr/openwin/include/X11/Xlib.h:4080: ANSI C++ forbids declaration `XUngrabKeyboard' with no type /usr/openwin/include/X11/Xlib.h:4087: ANSI C++ forbids declaration `XUngrabPointer' with no type /usr/openwin/include/X11/Xlib.h:4093: ANSI C++ forbids declaration `XUngrabServer' with no type /usr/openwin/include/X11/Xlib.h:4100: ANSI C++ forbids declaration `XUninstallColormap' with no type /usr/openwin/include/X11/Xlib.h:4107: ANSI C++ forbids declaration `XUnloadFont' with no type /usr/openwin/include/X11/Xlib.h:4114: ANSI C++ forbids declaration `XUnmapSubwindows' with no type /usr/openwin/include/X11/Xlib.h:4121: ANSI C++ forbids declaration `XUnmapWindow' with no type /usr/openwin/include/X11/Xlib.h:4141: ANSI C++ forbids declaration `XWarpPointer' with no type /usr/openwin/include/X11/Xlib.h:4162: ANSI C++ forbids declaration `XWindowEvent' with no type In file included from /usr/local/include/gtk-1.2/gdk/gdkprivate.h:32, from /usr/local/include/gtk-1.2/gdk/gdkx.h:30, from forms.cc:37: /usr/openwin/include/X11/Xutil.h:363: ANSI C++ forbids declaration `XClipBox' with no type /usr/openwin/include/X11/Xutil.h:389: ANSI C++ forbids declaration `XDestroyRegion' with no type /usr/openwin/include/X11/Xutil.h:395: ANSI C++ forbids declaration `XEmptyRegion' with no type /usr/openwin/include/X11/Xutil.h:402: ANSI C++ forbids declaration `XEqualRegion' with no type /usr/openwin/include/X11/Xutil.h:548: ANSI C++ forbids declaration `XIntersectRegion' with no type /usr/openwin/include/X11/Xutil.h:584: ANSI C++ forbids declaration `XOffsetRegion' with no type /usr/openwin/include/X11/Xutil.h:627: ANSI C++ forbids declaration `XSetClassHint' with no type /usr/openwin/include/X11/Xutil.h:636: ANSI C++ forbids declaration `XSetIconSizes' with no type /usr/openwin/include/X11/Xutil.h:644: ANSI C++ forbids declaration `XSetNormalHints' with no type /usr/openwin/include/X11/Xutil.h:663: ANSI C++ forbids declaration `XSetSizeHints' with no type /usr/openwin/include/X11/Xutil.h:676: ANSI C++ forbids declaration `XSetStandardProperties' with no type /usr/openwin/include/X11/Xutil.h:701: ANSI C++ forbids declaration `XSetWMHints' with no type /usr/openwin/include/X11/Xutil.h:770: ANSI C++ forbids declaration `XSetRegion' with no type /usr/openwin/include/X11/Xutil.h:787: ANSI C++ forbids declaration `XSetZoomHints' with no type /usr/openwin/include/X11/Xutil.h:795: ANSI C++ forbids declaration `XShrinkRegion' with no type /usr/openwin/include/X11/Xutil.h:811: ANSI C++ forbids declaration `XSubtractRegion' with no type /usr/openwin/include/X11/Xutil.h:871: ANSI C++ forbids declaration `XUnionRectWithRegion' with no type /usr/openwin/include/X11/Xutil.h:879: ANSI C++ forbids declaration `XUnionRegion' with no type /usr/openwin/include/X11/Xutil.h:903: ANSI C++ forbids declaration `XXorRegion' with no type make[2]: *** [forms.lo] Error 1 make[2]: Leaving directory `/home/ricardo/vdk-1.2.5/vdk' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/ricardo/vdk-1.2.5' make: *** [all-recursive-am] Error 2 --- mario motta <mmotta@...> wrote: > > > Ricardo Rugerio wrote: > > > Hi vdker's > > > > I was reviewing my configure log, but I don't > know > > what is wrong ??? > > > > this is the output of my /.configure: > > > > seems that configure runs ok to the near end, did > you try to make anyway ? > /mario > > > > -- > Mario Motta > AI Research Group - Rimini > http://vdkbuilder.sourceforge.net > > > > _______________________________________________ > Vdkbuilder-list mailing list > Vdkbuilder-list@... > https://lists.sourceforge.net/lists/listinfo/vdkbuilder-list __________________________________________________ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/ |