YOU CAN CODE!

 

With The Case Of UCanCode.net  Release The Power OF  Visual C++ !   HomeProducts | PurchaseSupport | Downloads  
View in English
View in Japanese
View in
참고
View in Français
View in Italiano
View in 中文(繁體)
Download Evaluation
Pricing & Purchase?
E-XD++Visual C++/ MFC Products
Overview
Features Tour 
Electronic Form Solution
Visualization & HMI Solution
Power system HMI Solution
CAD Drawing and Printing Solution

Bar code labeling Solution
Workflow Solution

Coal industry HMI Solution
Instrumentation Gauge Solution

Report Printing Solution
Graphical modeling Solution
GIS mapping solution

Visio graphics solution
Industrial control SCADA &HMI Solution
BPM business process Solution

Industrial monitoring Solution
Flowchart and diagramming Solution
Organization Diagram Solution

Graphic editor Source Code
UML drawing editor Source Code
Map Diagramming Solution

Architectural Graphic Drawing Solution
Request Evaluation
Purchase
ActiveX COM Products
Overview
Download
Purchase
Technical Support
  General Q & A
Discussion Board
Contact Us

Links

Get Ready to Unleash the Power of UCanCode .NET


UCanCode Software focuses on general application software development. We provide complete solution for developers. No matter you want to develop a simple database workflow application, or an large flow/diagram based system, our product will provide a complete solution for you. Our product had been used by hundreds of top companies around the world!

"100% source code provided! Free you from not daring to use components because of unable to master the key technology of components!"


VC++ Article: Create 2d graphics editor, AutoCAD, like Toolbar

 
 By Y. Hirsh

Attach a sub-toolbar/s to another toolbar's button/s. The sub-toolbar will popup if the user clicks on that button a little bit longer 

Sample Image - FOToolBar.jpg

Introduction

This article shows how to create a Flyout Toolbar. Flyout toolbars are used, for example, in 3D Studio & AutoCAD.

The idea is to let the user choose a sub-option of a more 'general' action that can be performed. For example, if we're writing a 2D graphics editor and we have a 'Draw Rectangle' option, we would probably have a button on the toolbar showing a rectangle. But the question is what kind of rectangle? A filled rectangle? Just the border? Or maybe both?

One solution to the problem is to create another 'flyout' toolbar showing all the 'Draw Rectangle' sub-options, which will pop-up next to the 'Draw Rectangle' button on the toolbar if the user clicks that button a little bit longer. If the user has chosen a different sub-option from the flyout toolbar, the button on the main toolbar is automatically updated.

The class CFOToolBar does just that. It's derived from CToolBar, and has an additional member function called addFlyout(), which takes the zero-based index of the button on the toolbar, and the resource ID of the flyout toolbar to be attached to that button.

Usage

In order to use CFOToolBar, just perform the following steps:

1. Create another toolbar with the resource editor that will contain all the sub options ( in this case, the toolbar that contains the different kinds of rectangles Flyout Toolbar. Let's say that it's resource ID is IDR_RECTANGLE_TOOLBAR )

2. Derive your main toolbar from CFOToolBar (or just use it directly instead of deriving from it)

In MainFrm.h (in class CMainFrame)

...
protected:  // control bar embedded members
    CFOToolBar    m_wndToolBar;

3. Call the addFlyout() member function of your main toolbar object to attach the flyout toolbar to the desired button.

In MainFrm.cpp (in OnCreate())

...
// add the flyout to the first button on the toolbar
m_wndToolBar.addFlyout(0, IDR_RECTANGLE_TOOLBAR);	

m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
...

4. Add FOToolBar.cpp & FOToolBar.h to your project.

That's it.

Now if you click the first button on the toolbar a little bit longer, you'll see the 'rectangle' flyout toolbar pop up.

How it works

By overriding the ON_WM_LBUTTONDOWN() message of the main toolbar, we can do two things:

1. Check if a the user clicked on a button to which we previously attached a flyout toolbar.

2. If so, initiate the timer for X milliseconds. In the timer function, we create the flyout toolbar and display it in the right place. The flyout toolbar is also CToolBar-derived. All we had to do is simply remove the caption and float it.

There are a few problems though when displaying the flyout toolbar. It doesn't get any mouse messages because the main toolbar gets them. That's the reason we also had to override ON_WM_MOUSEMOVE() to detect if a flyout toolbar is displayed, and if so, delegate that message to it.

We also override ON_WM_LBUTTONUP() in which we kill the timer and update the new button from the flyout if neccessary.

A strange side effect happens if the user changes the application (by clicking Ctrl+Alt) while a flyout is on, and unclicks the mouse in the other application. When getting back, neither the main toolbar nor the flyout toolbar receive the ON_WM_LBUTTONUP() message, so you'll see that flyout is still displayed until you actually click on one of its buttons.

These are the main guildelines of the implementation. For more specific details please looks at the code, and feel free to e-mail me with questions or suggestions.

 

 

Copyright ?1998-2024 UCanCode.Net Software , all rights reserved.
Other product and company names herein may be the trademarks of their respective owners.

Please direct your questions or comments to webmaster@ucancode.net