Search found 3805 matches

by TJF
Oct 24, 2010 11:07
Forum: Projects
Topic: GTK+tobac (Glade3 to FB code sketcher, GtkBuilder/libglade)
Replies: 42
Views: 15660

Version 2.2.2 released

The new version 2.2.2 of GTK+tobac2 is released, including binding for GTK version 2.22.0. It generates now matching callback routines (SUB/FUNCTION) with matching parameter lists for all known signals in GTK-2.22.0. The definitions are red from the new file data/Signals.def . Further signal definit...
by TJF
Oct 24, 2010 10:57
Forum: Libraries & Headers
Topic: GTK+ v2.20.0 Headers [New Release - 090910]
Replies: 10
Views: 3627

GTK-2.22.0

For a complete set of headers for GTK-2.22.0, see also this post:
http://www.freebasic.net/forum/viewtopi ... ht=#146853
by TJF
Oct 24, 2010 10:55
Forum: Libraries & Headers
Topic: GTK-headers 2.22.0 for FreeBasic
Replies: 20
Views: 8743

GTK-headers 2.22.0 for FreeBasic

FreeBasic-headers for GTK version 2.22.0 are available now. Features, compared to 'gtk/gtk.bi': All new functions available, e.g. GtkBuilder or Cairo More compiler features are translated (e.g. G_DISABLE_DEPRECATED ) Small bugs are fixed (e.g. gtk_tree_item_new_with_label("NoGo") is workin...
by TJF
Oct 22, 2010 16:30
Forum: Linux
Topic: Total Newbie Question "invalid command-line option"
Replies: 18
Views: 6293

... If you have the dev module properly installed, then maybe that function may had been deprecated. Those examples are for GTK 2.8, but the current version is 2.22. As far as I know, all deprecated functions from GTK 2.8 (or 2.6.1 in this case) can be used in GTK 2.22 (or 2.20). This should not ca...
by TJF
Oct 22, 2010 16:24
Forum: Projects
Topic: h_2_bi.bas, a tool for translating .h files into .bi
Replies: 290
Views: 78899

Could it be possible to have the *.h files changed into individual *.bi file, and not to have them in just one *.bi file? That's possible with the actual release. h_2_bi will generate one .bi file per config file ('.h2bi' file). Make one .h2bi file for each .h file you want to translate. I think it...
by TJF
Oct 22, 2010 10:50
Forum: Projects
Topic: h_2_bi.bas, a tool for translating .h files into .bi
Replies: 290
Views: 78899

@AGS I cleaned up the code of h_2_bi and sorry, I had to change some options . Some work on the frontend will be neccessary. Removed: _iEX (replaced by -oEX) _iRS (now included in _iUT) _iRI (now included in _iUT) _iRE (now included in _iUT) _oCO (allways on) Replaced: _iERR IB.ER gets IB.ERR_ New: ...
by TJF
Oct 21, 2010 17:11
Forum: Linux
Topic: Total Newbie Question "invalid command-line option"
Replies: 18
Views: 6293

When I try "fbc glade2bas.bas", I get 6 complaints about 'missing closing quote in literal string', then a long, long list of undefined references in just about every lib I installed. One for instance, is "/usr/lib/libgtk-x11-2.0.so: undefined reference to 'g_bookmark_file_free'"...
by TJF
Oct 21, 2010 16:40
Forum: General
Topic: Which editor to use?
Replies: 9
Views: 1488

E.K.Virtanen wrote:TJF. I checked and tested Geany, and to say, it is nearly perfect. Thanks.
Then write tools and custom commands to make it perfect - and don't forget to share them :)
by TJF
Oct 21, 2010 15:08
Forum: Beginners
Topic: how to send the " character in a string?
Replies: 3
Views: 1200

Make your choice:

Code: Select all

PRINT """Hello World!"""
PRINT !"\"Hello World!\""
PRINT CHR(34) & "Hello World!" & CHR(34)
by TJF
Oct 21, 2010 12:17
Forum: General
Topic: Which editor to use?
Replies: 9
Views: 1488

BTW: Geany isn't that fast at big files (> 1Mb). Loading and saving takes some time. But editing is OK (faster than most other editors).
by TJF
Oct 21, 2010 12:11
Forum: Sources, Examples, Tips and Tricks
Topic: Various String Editing Routines for Text Manip
Replies: 24
Views: 3259

rolliebollocks wrote:@TJF

Do you have a copy of a GTK clipboard routine?
It's available at http://www.gtk.org/. You'll need just translating it :)
by TJF
Oct 21, 2010 11:58
Forum: General
Topic: Which editor to use?
Replies: 9
Views: 1488

E.K.Virtanen wrote:... Scite?
I didn't try that one. I also didn't try Anjuta. Geany is my favourable for Kate, gEdit, Vi and an other horrible one (I forgot the name).
by TJF
Oct 21, 2010 11:41
Forum: General
Topic: Which editor to use?
Replies: 9
Views: 1488

I'm using Geany . I love the compromise between lightweight and powerfull, the developers found. I do not like the special FreeBasic-IDEs like FBIde , FBEdit , ... They do not realy work under wine. And they'll fail totally if you need to handle other source than FreeBasic (I often have to handle C ...