Page 5 of 5 FirstFirst ... 345
Results 41 to 44 of 44

Thread: FAQ: GUI Toolkits for Linux

  1. #41
    Join Date
    Apr 2005
    Location
    Glasgow, Scotland
    Beans
    1,642

    Re: FAQ: GUI Toolkits for Linux

    To be honest, for simple projects, a good old Makefile like this is good enough:

    Code:
    CC = gcc
    CFLAGS = -g -Wall `pkg-config --cflags --libs gtk+-2.0`
    
    all: program
    
    program: program.c
    	$(CC) $(CFLAGS) -o program program.c
    
    clean:
    	$(RM) program
    A Fedora user

  2. #42
    Join Date
    Apr 2007
    Beans
    34

    Re: FAQ: GUI Toolkits for Linux

    I'm looking for a grid UI component with grouping/filtering/child tables features (like this .NET component); does it exist in the linux world?

    And are there commercial UI toolkits for Linux?

  3. #43
    Join Date
    Nov 2006
    Beans
    Hidden!

    Re: FAQ: GUI Toolkits for Linux

    Quote Originally Posted by jmehdi View Post
    I'm looking for a grid UI component with grouping/filtering/child tables features (like this .NET component); does it exist in the linux world?

    And are there commercial UI toolkits for Linux?
    Qt is a really very nice Toolkit, it comes as lgpl or commercial. It does have grid widgets and a nice RAD like IDE: qtcreator.

  4. #44
    Join Date
    Dec 2009
    Beans
    Hidden!

    Re: FAQ: GUI Toolkits for Linux

    you can also use bash commands in the glade interface designer although it limits your options. gtkdialog is also an excellent tool for widgets and you can contain the xml file in a bash variable and pipe it into gtkdialog all in one script.
    Last edited by d3v1150m471c; October 23rd, 2010 at 10:23 AM.

Page 5 of 5 FirstFirst ... 345

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
  •