Draw flow chart in SDI MFC application

515 Views Asked by At

I am working on a client/server application in c++. In the server application I am running multiple server IP's and I want to show a flow chart in the server app which has to display the connected clients with some basic shapes like rectangle and circle. Can anybody tell how Can I achieve this? Is there any MFC classes available

1

There are 1 best solutions below

0
On

I made such an application in the past, but it was in WinApi only, not MFC. For each client connecting to the server there was displayed a small dialog (with the "child" flag set - it had its own controls, of course). Displaying "basic shapes" can be implemented by custom drawing on owner-drawn controls. And MFC provides a number of "wrapper" classes and functions, encapsulating WinApi objects but still allowing access to these API-level objects and calls, ie everyhting that can be implemented in WinApi can be implemented in MFC as well. Still, MFC isn't "necessary" or "recommended" here.

Screenshot of the application I was talking about. Take a look at the sunken "static" owner-drawn controls (SS_SUNKEN | SS_OWNERDRAW), emulating the appearance of a LED indicator.

enter image description here