Search found 101 matches

by tinycla
Sep 29, 2015 6:54
Forum: Libraries Questions
Topic: Help with IUP 3.13 for FreeBASIC 1.03 (and wx.C )
Replies: 11
Views: 4988

Re: Help with IUP 3.13 for FreeBASIC 1.03 (and wx.C )

I totally agree with D.J.Peters: in my opinion, the better choice at this moment is FLTK. It's well documented, it's really fast (I mean: very very fast) and have a good look, if you use theming. You could give a try to FLTK.
by tinycla
Jun 30, 2015 15:25
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

I've completed the program that I was developing for my wife, and I must say that I'm very happy with what I've learned. In the end, I've used Fl_Browser in place of Fl_Table_Row because I didn't found a way for doing what I needed. I like Fltk library very much, but there are things that I miss (of...
by tinycla
Jun 22, 2015 7:37
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

D.J.Peters wrote:@tinycla the new version works here.
I'm sure you have a old version of the library floating around.

Do you use windows or linux, 32 or 64-bit ?

Joshy
You're right, there was an old version in the FreeBASIC lib folder. Thank you.
by tinycla
Jun 22, 2015 6:51
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

@tinycla you can see the Fl_TableRow stuff are the same as from Fl_Table. The difference are in the DrawCellCB I change the background color if a row are selected. ... if Fl_Table_RowRowSelected(self,r) then ' <-- added DrawData(self,strptr(value),x,y,w,h,Fl_Red) else DrawData(self,strptr(value),x,...
by tinycla
Jun 19, 2015 15:32
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

You are right this are missing in the wrapper declare function Fl_Table_RowExHandleBase (byval tex as Fl_Table_RowEx ptr,byval event as Fl_Event) as long declare function Fl_Table_RowExFindCell (byval tex as Fl_Table_RowEx ptr,byval ctx as FL_TABLECONTEXT,byval r as long,byval c as long,byref x as ...
by tinycla
Jun 19, 2015 14:42
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

@tinycla Do you now what a Fl_TableRow is or why you mean a Fl_Table_Row is what you need ? 1) A Fl_Table_Row extends Fl_Table widget that means you have to use all Fl_Table methods with this widget also. 2) A Fl_Table_Row is primary a container where you can place other widgets in it. I think you ...
by tinycla
Jun 19, 2015 11:01
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Fl_Table_Row

Reading the FLTK docs I've found that Fl_Table_Row could be very usefull for my programs, but I've found examples only on using Fl_Table and Fl_TableEx. Fl_Table_Row is derived from Fl_Table, so I supposed that I could use all the routines of Fl_Table and Fl_TableEx, but this is not true. Maybe some...
by tinycla
Jun 15, 2015 12:41
Forum: Libraries Questions
Topic: libharu (hpdf.bi)
Replies: 0
Views: 2008

libharu (hpdf.bi)

While testing libharu, I've found hpdf.bi misses one function, recently added to the library, that can be very important for all non-english people. I've added this line of code: declare function HPDF_UseUTFEncodings cdecl alias "HPDF_UseUTFEncodings" (byval pdf as HPDF_Doc) as HPDF_STATUS...
by tinycla
Jun 15, 2015 8:05
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Re: FLTK 1.3.3 C Wrapper Windows/Linux 32/64-bit.

I'd like to start using Fl_Printer, or at least try using it, but I don't find any significant examples. Anybody could show me how to draw some text on page? For example, a title center horizontally and a few lines of columnar data, with some lines or boxes. The Fltk documentation is not very clear ...
by tinycla
Jun 12, 2015 10:16
Forum: Libraries Questions
Topic: PdfLib on linux
Replies: 10
Views: 4538

Re: PdfLib on linux

For Cairo Windows you need 5 dll's in a folder, and run any test code you have from the same folder; http://www.mediafire.com/download/ui41tbgy649195b/Cairo.zip The .bi file is included in the folder. Well, very interesting, but it's not what I looked for. I need a way to produce PDF docs, almost e...
by tinycla
Jun 11, 2015 12:58
Forum: Libraries Questions
Topic: PdfLib on linux
Replies: 10
Views: 4538

Re: PdfLib on linux

The advantage is that libharu doesn't require any external dependency (dll or so). That's wrong. libharu is an external dependency itself, while cairo is part of each LINUX distribution with GTK desktop (like GNOME, XFCE, LXDE, ...). I checked it, meanwhile libharu can handle graphics. The advantag...
by tinycla
Jun 11, 2015 10:50
Forum: Libraries Questions
Topic: PdfLib on linux
Replies: 10
Views: 4538

Re: PdfLib on linux

AFAIR libharu is text only. Here's an alternative if you need graphics (no encryption in this case): http://www.freebasic.net/forum/viewtopic.php?p=163536 I don't need graphics, except maybe for a little logo, so I think libharu is OK. The advantage is that libharu doesn't require any external depe...
by tinycla
Jun 10, 2015 8:08
Forum: Libraries Questions
Topic: PdfLib on linux
Replies: 10
Views: 4538

Re: PdfLib on linux

http://free-basic.ru/ 18.04.2015 It is in russian, I guess you can not read cyrilic, but you dont need it: just click 3rd link from the top. Library is called LIBHARU follow link and save libharu.zip - and then when you download it will be in english I don use that lib, but I tested examples and it...
by tinycla
Jun 09, 2015 19:19
Forum: Libraries Questions
Topic: PdfLib on linux
Replies: 10
Views: 4538

PdfLib on linux

I need to generate some pdf docs and I thought I'd use the pdflib, but I've discovered that it doesn't work on Linux (the lib is missing from distribution files, and the site does'nt say anything about a linux version). Somebody knows how to make pdflib work in linux, or what other libraries could I...
by tinycla
Jun 05, 2015 20:06
Forum: Archive
Topic: FLTK 1.3.x C Wrapper (obsolete)
Replies: 753
Views: 167663

Using Fl_Table

Another question: I'm using an Fl_Table, which contains an Fl_Input. I'm searching for a way to get the value of this Fl_Input for all the rows when user push a button (not in the Fl_Input event). How could I do this?