Thread: GUI with Standard Library

  1. #1
    Registered User
    Join Date
    Nov 2008
    Location
    My computer
    Posts
    65

    GUI with Standard Library

    How could you write GUI programs without the help of a third party library such as OpenGL?

  2. #2
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    You would rewrite OpenGL, call it something else, and use that.

    But seriously - the standard library doesn't provide for graphics, and things like that. You need to use a third-party library, or write your own code to do all the graphics - which isn't very fun using just the standard library.

    edit: http://www.friedspace.com/cprogramming/cgraphics.php

  3. #3
    Registered User
    Join Date
    Sep 2006
    Posts
    8,868
    Quote Originally Posted by sean View Post
    You would rewrite OpenGL, call it something else, and use that.

    But seriously - the standard library doesn't provide for graphics, and things like that. You need to use a third-party library, or write your own code to do all the graphics - which isn't very fun using just the standard library.

    edit: http://www.friedspace.com/cprogramming/cgraphics.php
    Thanks so much for that link, Sean! Great info and tutorial, there.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Difference between GLIBC and Standard C library
    By RoshanX in forum Tech Board
    Replies: 5
    Last Post: 04-15-2007, 02:22 AM
  2. GUI library that works on windows and linux?
    By Logan in forum C++ Programming
    Replies: 2
    Last Post: 04-28-2006, 08:40 PM
  3. Standard C library Question
    By invisibleghost in forum C++ Programming
    Replies: 3
    Last Post: 10-24-2004, 01:40 PM
  4. Replies: 3
    Last Post: 09-04-2002, 09:01 PM
  5. C Standard Library
    By JoshG in forum C Programming
    Replies: 2
    Last Post: 07-17-2002, 09:09 AM