On Mon, Nov 24, 2008 at 12:22 PM, sudhakar bonthu <[EMAIL PROTECTED]> wrote: > hello everybody, > I want to create a frame(window) in c++ which is > having menubar,titlebar,toolbar. I want to provide functionality to the > window.Can any body suggest me about the required concepts and way to > implement.(only using c++)
The C++ standard does not have facilities for this. You will need to either use a platform-specific API (like the Win32 API), or some cross-platform toolkit (like Qt, GTK, etc.). -- Tamas Marki
