Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
0 user currently in Programming. | 3 guests
Acmlm's Board - I2 Archive - Programming - how do you pronounce gui? | |
Add to favorites | "RSS" Feed | Next newer thread | Next older thread
User Post
paraplayer

Snifit
Level: 22

Posts: 249/280
EXP: 57271
For next: 1079

Since: 06-06-05

Since last post: 44 days
Last activity: 44 days
Posted on 07-24-05 11:37 AM Link | Quote
Slowly improving.

Just wondering what i'll need to know to start learning about GUI.

i'm running under windows if that makes any diffrence....

I'm getting really bored learning things i can't make pretty.
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 6022/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 07-24-05 01:04 PM Link | Quote
G, U, I.

Or did you mean how to program a GUI?
paraplayer

Snifit
Level: 22

Posts: 252/280
EXP: 57271
For next: 1079

Since: 06-06-05

Since last post: 44 days
Last activity: 44 days
Posted on 07-24-05 01:28 PM Link | Quote
(really? i always pronounced it ga-wee.)


anyways yea.

also is it advisable to start learning GUI in linux?

I've heard openGL and DirectX are hell to use in windows...
HyperLamer
<||bass> and this was the soloution i thought of that was guarinteed to piss off the greatest amount of people

Sesshomaru
Tamaranian

Level: 118

Posts: 6033/8210
EXP: 18171887
For next: 211027

Since: 03-15-04
From: Canada, w00t!
LOL FAD

Since last post: 2 hours
Last activity: 2 hours
Posted on 07-24-05 03:10 PM Link | Quote
You don't need any of those to make a GUI in Windows. It is complicated but not especially difficult. The hard part is finding a resource builder to make the actual interface.
beneficii

Lakitu
Level: 36

Posts: 314/567
EXP: 299656
For next: 8454

Since: 06-27-04
From: Cordova, TN, USA

Since last post: 14 hours
Last activity: 6 hours
Posted on 07-24-05 05:32 PM Link | Quote
You should learn the Windows API before moving onto anything else. Just perform a Google search.

What language are you using, btw?
sloat

Level: 16

Posts: 73/85
EXP: 18044
For next: 2212

Since: 05-21-04
From: South Central Delaware

Since last post: 19 days
Last activity: 5 hours
Posted on 07-25-05 01:06 AM Link | Quote
I've always pronounced it Gooey.

beneficii

Lakitu
Level: 36

Posts: 319/567
EXP: 299656
For next: 8454

Since: 06-27-04
From: Cordova, TN, USA

Since last post: 14 hours
Last activity: 6 hours
Posted on 07-25-05 01:13 AM Link | Quote
Originally posted by sloat
I've always pronounced it Gooey.




And I've always pronounced it, Gee You Eye.
Ramsus

Octoballoon
Level: 19

Posts: 152/162
EXP: 34651
For next: 1126

Since: 01-24-05
From: United States

Since last post: 39 days
Last activity: 71 days
Posted on 07-25-05 02:19 AM Link | Quote
Originally posted by beneficii
Originally posted by sloat
I've always pronounced it Gooey.




And I've always pronounced it, Gee You Eye.


Technically, I'd consider that spelling it out.

For the record though, I pronounce it gooey.


(edited by Ramsus on 07-24-05 05:21 PM)
Dish

Spiny
Level: 38

Posts: 451/596
EXP: 355646
For next: 14801

Since: 03-15-04
From: Disch

Since last post: 18 days
Last activity: 18 days
Posted on 07-25-05 03:19 AM Link | Quote
I'd sooner stab myself in the eye with an icepick than pronounce it 'gooey'

I spell it out as well. Though I've heard people say 'gooey'... and everytime I hear it I die a little inside.
paraplayer

Snifit
Level: 22

Posts: 257/280
EXP: 57271
For next: 1079

Since: 06-06-05

Since last post: 44 days
Last activity: 44 days
Posted on 07-25-05 06:10 AM Link | Quote
Originally posted by beneficii
You should learn the Windows API before moving onto anything else. Just perform a Google search.

What language are you using, btw?


I'm using C++

okay going to google windows API right now.

whats the diffrence between GUI and API?
Dish

Spiny
Level: 38

Posts: 452/596
EXP: 355646
For next: 14801

Since: 03-15-04
From: Disch

Since last post: 18 days
Last activity: 18 days
Posted on 07-25-05 06:32 AM Link | Quote
GUI = Guided User Interface (or Graphical User Interface -- I forget which). It is any sort of program interface that allows the user to interact with the program (like menu systems, dialog boxes, the stuff the user actually deals with in order to use the program).

API = Application Programming Interface. It is the series of functions (and other coding materials like structures, enums, etc) which the programmer uses in order to develop programs with the target library. In this case, the 'WinAPI' is the series of functions that gets your programming running on Windows. The DirectX API is the series of functions which the programmer would use to take advantage of DirectX. Etc.
beneficii

Lakitu
Level: 36

Posts: 321/567
EXP: 299656
For next: 8454

Since: 06-27-04
From: Cordova, TN, USA

Since last post: 14 hours
Last activity: 6 hours
Posted on 07-25-05 07:38 AM Link | Quote
Originally posted by paraplayer
Originally posted by beneficii
You should learn the Windows API before moving onto anything else. Just perform a Google search.

What language are you using, btw?


I'm using C++

okay going to google windows API right now.

whats the diffrence between GUI and API?


Yeah, as Disch said, they're not really different. An API is just a common set of functions for the programmer to use. An API usually makes it easier for you to set up a GUI, because it does all the low-level stuff (like displaying a windows and text onto the screen) for you. The Windows API is a really powerful way of setting up a window with the controls you want to allow the user to communicate with the program, while the DirectX API is done for things like fast animation, which is not really supported by the standard Windows API.

Here is a good site for learning the basics of the Windows API:

http://www.winprog.org/tutorial/



(edited by beneficii on 07-24-05 10:39 PM)
(edited by beneficii on 07-24-05 10:39 PM)
score_under

Level: 4

Posts: 9/10
EXP: 271
For next: 8

Since: 08-20-05

Since last post: 71 days
Last activity: 52 days
Posted on 08-23-05 02:44 AM Link | Quote
I pronounce it Geeyoueye, but you could, if you are confused,
pronounce it Graphical User Interface.


(edited by score_under on 08-22-05 05:45 PM)
(edited by score_under on 08-22-05 05:45 PM)
(edited by score_under on 08-22-05 05:46 PM)
TapTap

Nipper Plant
Level: 24

Posts: 13/405
EXP: 68995
For next: 9130

Since: 08-22-05
From: Yoshi's Island
Current Posting Mode: Spree

Since last post: 7 hours
Last activity: 6 hours
Posted on 08-23-05 08:01 PM Link | Quote
I always pronounced it GOOEY
interdpth

Rex
Level: 36

Posts: 506/527
EXP: 294398
For next: 13712

Since: 03-20-04

Since last post: 10 days
Last activity: 31 days
Posted on 08-25-05 07:39 AM Link | Quote
I pronounce it Guh-Wee
Add to favorites | "RSS" Feed | Next newer thread | Next older thread
Acmlm's Board - I2 Archive - Programming - how do you pronounce gui? | |


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.009 seconds.