Thread: Whats the jargon for this.

  1. #1
    1479
    Join Date
    Aug 2003
    Posts
    253

    Whats the jargon for this.

    I am trying to find out how to do something in c++ but I don't know the lingo for what you would call it. I am trying to make an aplications I guess. A window that has some icons and does things.....I guess like an internet explorer. I hope this makes sense. What do you call these, GUI? API? What are those things?
    Knowledge is power and I want it all

    -0RealityFusion0-

  2. #2
    Sweet
    Join Date
    Aug 2002
    Location
    Tucson, Arizona
    Posts
    1,820
    A GUI is called a Graphical User Interface(basically a window). An API is Application Program Interface(basically the code to make some sort of program) if you want to learn how to make "windows" check out this linky
    www.winprog.org/tutorial
    Woop?

  3. #3
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398

    Assuming we're in a Microsoft world....

    I usually just call it "Windows programming", but I think "Windows GUI programming" would be the most clear. i.e. "I'm writing a Windows GUI program".

    You might also see "WinAPI", "Win32", and "Win32 API".

    The API is actually part of the Windows operating system. Microsoft Visual C++ (and any and other Windows compiler) has a "Windows library". The windows library has a couple-thousand functions that make use of the WinAPI. The <windows> header also includes a ship-load of typedefs and structures... just to make things interesting.

    If the tutorial recommended by prog-bman doesn't scare you off, I recommed the book Programming Windows, by Charles Petzold. This is the standard book for learning Windows Programming. Just about every Windows programmer owns a copy of this book.

  4. #4
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >Just about every Windows programmer owns a copy of this book.
    And a few non-Windows programmers.
    My best code is written with the delete key.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Amperstands! Confusion. And Jargon.
    By Chris_p_i in forum C++ Programming
    Replies: 5
    Last Post: 08-22-2006, 09:57 AM
  2. jargon [with a point this tyme]
    By doubleanti in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 03-15-2002, 08:48 AM
  3. the jargon thread...
    By doubleanti in forum A Brief History of Cprogramming.com
    Replies: 318
    Last Post: 10-09-2001, 04:22 PM