tags:

views:

37

answers:

2

Hello. My name is Guillermo and i'm studing Computer Sciences at college. For my final project, i have to build a game on Borland C++ and i was curious about making a GUI for it

The game is really simple. Create a matriz dimension 4x4 (with 16 elements) and fill it with random numbers from 1 to 15 and one empty space. The user/player would have to sort the numbers (1, 2, 3....15)

My "idea" of a GUI came from my old days having fun with MS VB6. Currently, i'm running Borland under wine on ubuntu but i have no idea about making a GUI since i started with C++ a couple of monthos ago.

Any idea is great!!

Thanks!!! chepe263

A: 

You might want to look into wxWidgets and Qt that are both really good GUI engines meant primarily for creating forms. If you want to go further and draw your forms line by line (or simply create whatever tickles your fancy) then I reccomend OpenGL. You will have to spend some time learning them but once you do then they will be invaluable in the future projects that you do.

Robert Massaioli
+1  A: 

Borland has its own GUI library with IDE support (VCL? comment says OWL). Your GUI can easily be done with the built-in elements. You'll have to check to see if the resulting GUI can run under WINE (probably).

Lou Franco
Borland C++ did not have the VCL. It used OWL. C++Builder is required to use the VCL in C++
David Dean - Embarcadero
Hence the question mark
Lou Franco