Question

I have created a Tic Tac Toe program in C++ playable against the computer. At present my interface is something like you have to chose a number from 1-9 which corresponds to the location you can make your turn on. I want to change this to a clickable graphic interface. What are my options to do these? Some tutorial links would be extremely helpful. I'm using windows 7

Was it helpful?

Solution

I recommend Qt for implementing Graphical User Interfaces in C++.

See more here: http://doc.qt.io/archives/qt-4.8/qt-declarative-toys-tic-tac-toe-example.html

OTHER TIPS

what compiler/IDE you are using.if it is visual studio then you beter go for native C/C++ APIs provided by windows you can get help to find th APIs at msdn.microsoft.com or even you can install MSDN on your machine.its better to start with native APIs rather than starting with qt on windows you may face many troubles installing qt.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top