Author Topic: C based GUI cross platform toolkits  (Read 5457 times)

Offline John

  • Forum Support / SB Dev
  • Posts: 3563
    • ScriptBasic Open Source Project
C based GUI cross platform toolkits
« on: October 14, 2011, 12:31:59 PM »
Is Gtk the only C GUI toolkit that is cross platform? Both Qt and wxWigets seem to be C++ solutions.

The problem with Gtk is it's primarily a Linux solution with poor implementations on Windows and OS X.

I need a good cross platform GUI that plays well with ANSI/ISO C.
 

Offline John

  • Forum Support / SB Dev
  • Posts: 3563
    • ScriptBasic Open Source Project
Re: C based GUI cross platform toolkits
« Reply #1 on: October 14, 2011, 08:49:12 PM »
I'm wondering if I should use the native GUI API and wrap it with a common high level Basic function set.

win = Window("Ttile",400,225)

This would be the same syntax for all platforms.

This could be taken a step further and used within CGI scripts. (function creates a <DIV> and uses absolute positioning for control placement.)