Comment Re:Would love to see KDE/Qt/gtk bindings (Score 1) 133
KDE/Qt support cannot be done easily, as this are C++ libraries. Free Pascal doesn't support C++ specific things such as C++ classes, C++ exceptions or templates yet, so the only way to go is to use a special C wrapper. (Free Pascal of course supports classes and exceptions, but they are not binary compatible to C++. BTW, what _is_ C++ binary compatiblity...? Each platform and each compiler has a different solution.)
Although this works (I successfully tried it over a year ago), it is a quite inefficient and not very comfortable solution. I recommend to use GTK, until an new special (Free Pascal specific) platform-independend GUI toolkit is out... :)
Although this works (I successfully tried it over a year ago), it is a quite inefficient and not very comfortable solution. I recommend to use GTK, until an new special (Free Pascal specific) platform-independend GUI toolkit is out...