Click here to Skip to main content
15,880,543 members
Articles / Desktop Programming / MFC
Article

Illustration of a Java type listener method for MFC

Rate me:
Please Sign up or sign in to vote.
4.24/5 (9 votes)
7 Oct 20032 min read 52.9K   948   19   10
An article on how to make a 'Java type' listener method.

Image 1

Introduction

This article was written to illustrate how to implement the 'Java type' listener method in MFC. This small article demonstrates how you can take advantage of this method and how you can use it in your code. This is my first project, so if there is anything wrong with it or if there is anything better that can be implemented, please do mail me at el_josephrthomas@yahoo.com.sg. In general, this code can also be roughly seen as the implementation of the 'Observer Pattern'. You can get more information on the observer pattern from the Houston's page and Wiki's page.

Background

There is currently an article present in CodeProject which implements the 'Observer Pattern' to illustrate a treadmill, but I have written this article purely to illustrate the 'Java Listener method' and nothing else.

Using the code

When you need to make a class an observer to the event source, you need to inherit your class from CJrtEventListener and implement the EventHandler method.

EventHandler is the method where you want the particular action to be performed. For e.g.: In the project, I have four 'Listeners', each 'Listener' wants to perform a different action when the source changes. So all the 'Listeners' have a different EventHandler function.

The 'Source' to which the 'Listeners' are supposed to listen to, is the edit box with a 'Change Event Source' button next to it.

The buttons in the control panel (at the top), controls the 'Listeners'. When the control panel button in switched on, the respective 'Listeners' start to listen for the source and when it's switched off, the respective 'Listeners' stops listening to the source. These buttons also show the state of the respective 'Listener'.

CJrtEvent is the event class that is passed to the 'Listeners' so that they know that this is the event occurred, and update themselves.

CJrtEventSource is the source, which means that this is what your 'Listeners' will be listening for.

All the 'Event class' and the 'Listener class' are kept decoupled, so both of them don't have to know about each others existence.

Points of interest

While writing this article I came to know of the mechanics of how the 'Java Listeners' work. Actually I needed to implement the Java 'Listening' method in my MFC project. I asked my teacher and he said that since MFC does not provide a 'Listener' like Java, I'll have to make my own. So this project is what I've come up with

Acknowledgments

Thanks to my teacher Dr. Zhang Binglu for guiding and helping me.

Conclusion

Well, at last if you think this article is useful to you, perhaps I can upgrade it to use C# and Windows forms.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
Niklas L31-Mar-09 3:15
Niklas L31-Mar-09 3:15 
GeneralMy vote of 2 Pin
Niklas L31-Mar-09 3:14
Niklas L31-Mar-09 3:14 
QuestionDiagrams? Pin
Johann Gerell8-Oct-03 11:04
Johann Gerell8-Oct-03 11:04 
AnswerRe: Diagrams? Pin
snakeware8-Oct-03 20:51
snakeware8-Oct-03 20:51 
GeneralRe: Diagrams? Pin
Johann Gerell8-Oct-03 23:41
Johann Gerell8-Oct-03 23:41 
AnswerRe: Diagrams? Pin
R. Thomas8-Oct-03 23:51
R. Thomas8-Oct-03 23:51 
GeneralRe: Diagrams? Pin
Johann Gerell9-Oct-03 0:26
Johann Gerell9-Oct-03 0:26 
GeneralRe: Diagrams? Pin
R. Thomas9-Oct-03 5:19
R. Thomas9-Oct-03 5:19 
GeneralRe: Diagrams? Pin
danitrol15-Oct-03 20:58
danitrol15-Oct-03 20:58 
GeneralRe: Diagrams? Pin
Johann Gerell15-Oct-03 21:42
Johann Gerell15-Oct-03 21:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.