up vote 2 down vote favorite
1
share [g+] share [fb]

Is there any GUI API that can be used together with DirectX other than MFC, WIN32, Winforms and WPF?

link|improve this question

75% accept rate
You can use any win32 window as surface. so i think ports such as QT, GTK will work too. – Trickster Oct 27 '09 at 21:55
Tough I think QT is a pretty interesting API, the documentation related to DirectX Interoperability is scarce if not inexistent. – Mario Oct 27 '09 at 22:15
feedback

3 Answers

up vote 1 down vote accepted

If you're doing your own DirectX rendering, you can use any GUI technology for windows that exposes an HWND.

Just use the "panel" equivelent in whatever toolkit you want, and feed it's handle (HWND) into DirectX to initialize the device. This technique is the same, no matter whether you use MFC, Windows Forms, WPF, Qt, GTK, FLTK, or any other framework.

As long as you can get a handle to the window, you can do it. It's just easier, and potentially more flexible, with some of the Microsoft toolkits. (For example, using D3DImage makes it seamless in WPF...)

link|improve this answer
Thanks, this seems to be the answer i was looking for. – Mario Oct 27 '09 at 22:41
feedback

Have a look at XNA. Ultimately WPF or WinForms will be used to get a display surface - can't draw in Windows without a window - but you'll need an additional framework for rendering.

link|improve this answer
But XNA does not have a consistent design model for GUI. As fas as I know, I would have to use XNA in winforms or WPF. Please tell me If I'm wrong. Thanks in advance. – Mario Oct 27 '09 at 22:09
feedback

Check out CEGUI. It's pretty popular especially for games. And it supports both Direct3d and OpenGL.

link|improve this answer
I´ll check it out, thanks. – Mario Oct 27 '09 at 22:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.