Link to home
Start Free TrialLog in
Avatar of jeffs1
jeffs1

asked on

Windows API GUI library?

There are tons of Windows add on components for MFC, .NET, ActiveX, etc...  but, I am still a Win32 purist... and am looking for an old fashioned add on static library that implements enhanced GUI components... from masked entry fields, to Outlook style toolbars, docking windows, sliders, etc...  I would be intereste din any type of third party GUI enhancing library... as long as it is not implemented as a DLL, ActiveX, .NET or MFC.

Anyone have nay recommendations?

Thanks,
Jeff
Avatar of DanRollins
DanRollins
Flag of United States of America image

The funny thing is, once you start encapsulating an HWND, or a ListView control, or Slider control, or attempting to automate the message-processing....  You end up with a CWnd, a CListview, a CSlider and BEGIN_MESSAGEMAP ... in other words, you reinvent MFC only with many, many bugs and deficiencies.  MFC has the advantage of having had 1,000,000 programmers work out the kinks over the years.

-- Dan
Agree with Dan. However, if you are thinking of a portable and free alternative, I'd suggest takin a look at wxWindows: http://www.wxwindows.org/
Avatar of fl0yd
fl0yd

Being a purist while looking for a general purpose library will eventually turn out to be a contradiction in itself. Have to agree with Dan, go with MFC.

.f
Avatar of jeffs1

ASKER

Not being an MFC expert by any stretch... here's the problem.

I have a app built using Borland C++ 5.01... if I were to use MFC, is it all or nothing?... i.e. main window is a CWin and put up with the performance hit... or can I use MFC in certain areas without affecting the customized, high performance drawing stuff I have done via API...

I have just heard horror stories of performance in MFC...

Jeff
ASKER CERTIFIED SOLUTION
Avatar of DanRollins
DanRollins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi Jeff, I'm having the same problems as you, but I'm going the lengthy route of learning how to encapsulate components (in win32api) so I can learn the common controls and UI programming well.

For lightweight components, you could try browsing the web for WTL components, based on ATL.  It looks quite nice as long as you're not squeamish of templates and doesn't have the slow bloat of MFC.

There are plenty of WTL UI components here:
http://www.codeproject.com/wtl/

Includes Tabbed MDI Document, dockable toolbars, coolbars, splitter windows, and the like.
you can find 3rd party controls all over, on my site (www.PlanetCpp.com) you can download a custom button class that we made. allows you to use bitmaps, conform to the bitmap shape and etc. it's a lib file so once compiled you don't need to send anything over.