C++ and OpenGL Help [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I am wanting to code something with OpenGL, but I don't want to have to go through Windows API, is this Possible? If so then some links to tutorials on how to do this would be nice.

Yes.
GLFW
Qt + OpenGL
GLUT or FreeGLUT
Or see my question.

In order to create a Win32 window for displaying OpenGL content - without going through Win32 API, GLUT is the only option that I'm aware of.

If you need a complete visualization framework, then VTK is the best FREE choice.

Related

Integrating (any) map framework in Qt 5.5 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to implement any maps (OSM, Google maps...) in my Qt Widget application (only targeting Windows platforms).
All answers I got so far is really out-dated (answers from 2011-2013) and I am not able to google anything useful. So I wanted to ask which frameworks could you recommend me?
We are using the osgEarth SDK in our Qt applications. It supports OSM and basically every map type that is supported by GDAL.

Qt and C++ game development for assignment [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've got the assignment to write a pacman game using qt creator and c++. I know that QT Quick is better suited for games but i've got no option. The only problem is i am a little bit lost because the documentation of qt is great but there is massive amount of it. Could you provide me some tutorials or links to the documentation where to start?
I would be grateful.
Try to give a look at the QGraphisView and the Animation framework examples, probably they are a good starting point.

drawing shapes with SDL [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I've been looking around on internet for a tutorial how you install SDL_gfx in xcode for drawing shapes. Does anybody know any tutorials in how to set it up or where I can download it?
http://lazyfoo.net/ is a great source for information on SDL.
See
Ferzkopp SDL_gfx documentation.
It has information about SDL_gfx and Xcode.

Creating an Ctablctrl on a CFrameWnd [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to create a mfc window that has tabs on top.
I cannot find a good tutorial or example of this.
Can someone give me a link to a good tutorial of example?
please help me.
You mean like this?
MFC app in VS 2010 http://blogs.msdn.com/photos/vcblog/images/9927511/original.aspx
Here is a walkthrough that should take you where you need to be: http://blogs.msdn.com/b/vcblog/archive/2009/11/23/teched-europe-demo-session-face-lifting-mfc-applications-on-windows-7.aspx
Install the Visual C++ Feature Pack. It comes with newer libraries to do this.

Good tutorial to create Win32 toolbar? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to add a toolbar and know which tool was clicked. I'd also like to be able to change the toolbar's buttons' bitmap after theyve been created MSDN is fairly breif on all of this. Thanks
If you like to learn by example then you may find this code useful. It's a Windows toolbar wrapper class I created some time ago. It's somewhat advanced though because it uses Custom Draw.
WindowsToolbar.h
WindowsToolbar.cpp
WindowsToolbarItem.h
WindowsToolbarItem.cpp
You might want to check out these tutorials.
Grz, Kris.
http://www.functionx.com/win32/