is there any references about mfc ui redraw... mechanism? [closed] - mfc

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
please give me some reference about the ui rendering mechanism
thanks~

MFC is merely a thin wrapper around the Win32 API. It provides an object oriented foundation that simplifies the use of the C style Win32 API, but it doesn't have too much brains built into it. If you want to understand the way MFC creates UI, go a bit further and take a look at GDI, which is the API used for UI stuff in Windows.

Related

Handling Apple events from console app on Mac [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Please give me some hints about how to work and, more practically, handle Apple events from raw console application written in C++ on Mac. I know that there is huge infrastructure for this purpose in Cocoa but as I think this is only a wrapper.
May be it's impossible?
There is C API for it:
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Open_Scripti_Architecture/Reference/reference.html
and
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Apple_Event_Manager/Reference/reference.html
Overview:
http://developer.apple.com/legacy/mac/library/#documentation/AppleScript/Conceptual/AppleEvents/intro_aepg/intro_aepg.html
But as you can see that Apple considers this as legacy nowadays, so for a new project, using the Objective-C APIs might be the better choice.

Creating Windows Aero Wizards [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am new to Visual C++. I am trying to experiment the creation of a Windows Aero Wizard. I found this reference on Microsoft website but I cannot understand how to create it. Could anybody give me a good reference or tutorial please?
This is overly broad question. Look for code with CreatePropertySheetPage API usage. Windows SDK contains a few samples, e.g. under "\Samples\winui\shell\appplatform\aerowizards"; Aero Wizards Sample (Windows) on MSDN.

Do i need to develop touch screen version of an application separately [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an desktop based application in c++. I want to make it touch screen enabled, where touch screen is available. My question do I need a separate version for this application for touchscreen?
If you are planning on adding specialized support for touchscreens, like multitouch, and enable gestures for your application, you'll have some separate code handling that. If not, whatever OS you are using, assuming your code is portable, mouse input should be equivalent to touch input.
That being said, your question is quite vague, I'm not sure if my answer is what you expected.

C++ Autopatcher GUI (With a unique skin) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Can you please take a look at this picture of a game launcher:
image http://4.bp.blogspot.com/-5sHFYgzDSqE/TiRrdl2cUmI/AAAAAAAAAJs/ULE76E6Nwwo/s400/Launcher.png
How can I create something identical? (using my own art)
Everything about the design I just love, I downloaded qt, wxWidgets, nuilib and several others, but they either do not compile well or bloated and damn difficult to use.
Does anyone know the exact widget library that most asian mmorpgs use? Like that picture.
Those are just drawn images. It is trivial with any toolkit.
Qt, GTK and wxWidgets are the most prominent toolkits. I would recommend Qt, since it is very widely supported. But you can do this even with plain WinAPI or XLib.

What's the most recommended cross platform C++ library? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is there something like jQuery that works the same in all browsers in the c/c++ world that will work consistently in all platforms?
Are you talking about for GUI elements? Qt is very popular.
Gnulib is intended to act as a facade for the system's native libc.
Depends on what you want to do. Boost is one of the most used one.