Results 1 to 3 of 3

Thread: Alternative user interface development in C

  1. #1
    Join Date
    Sep 2013
    Beans
    51

    Alternative user interface development in C

    Hello all,
    I've been programming user interfaces for decades using a proprietary system (LabWindows/CVI), which is compatible with Linux but difficult to distribute. I've long wanted to learn some native open-source Linux user interface development, but:
    - I've tried QT tutorials and I've a hard time groking it. Its philosophy is alien to me. Also I'd strongly prefer to use C, but QT is C++ only, adding to the confusion.
    - I don't fancy using GTK apps, so I'd rather avoid that too !

    My question is what alternatives are there ? I've read about some 'meta user interfaces' that compile to whatever the system has (QT, GTK, Windows, Mac...) but I don't remember the names offhand. I guess some are even available in multiple languages, including scripts, which would be good.

    Suggestions ?

  2. #2
    Join Date
    Mar 2014
    Beans
    8

    Re: Alternative user interface development in C

    Hi ...

    I believe, best, fastest and simplest way to write GUI in linux is with Python Tkinter. Its the default GUI, so you can use this fore windows too.
    For C development exists "ncurses" - a simple text based UI for console. But if you write this as a bash script, you are faster. In bash is "ncurses" named as "dialog".

    I hope, its helpfull...


  3. #3
    Join Date
    Sep 2013
    Beans
    51

    Re: Alternative user interface development in C

    Thanks. I've been reading about GUI, in particular here and it looks like for C the options are GTK+, LessTiff (truly ancient) and IUP (never heard of it).

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •