Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8372135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:20:47+00:00 2026-06-09T14:20:47+00:00

I have a win32 wrapper class with a functioning WndProc (i use a static

  • 0

I have a win32 wrapper class with a functioning WndProc (i use a static wndproc to forward messages to the WndProc member function).

I also have another app class which creates an instance of my win32 wrapper class.

I want the user of the app class to be able to write their own functions that represent events, such as OnMouseClick(), or OnMouseMove(), but in order for this to work, I need to call the event functions from the win32 wrapper class’s Wndproc (which has no knowledge of the app class).

What’s the best way to do this? Should I send a pointer to each event function to my win32 wrapper class, and call it via pointer? Or is there a better way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T14:20:48+00:00Added an answer on June 9, 2026 at 2:20 pm

    The structure of your classes and their purpose is not clear. Nevertheless, the typical recommnded structure of wrapper classes is the following:

    class BaseClass
    {
    public:
        virtual void OnMouseClick(...) { }   // Empty body
        virtual void OnMouseMove(...) { }   // Empty body
    };
    
    class AppClass : public BaseClass
    {
    public:
        void OnMouseClick(...) { AppCode }
        void OnMouseMove(...) { AppCode }
    };
    

    Base class is calling virtual methods when it receives Windows events in its static WndProc handler. And this triggers execution of the app code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two WIN32 DLL projects in the solution, main.dll should call a function
So I have a WIN32 app that records videos using DirectShow. Now I want
We have a C++ Win32 application which spawns, using Qt's QProcess (undoubtedly a wrapper
I have a Win32 C++ app developed in VS2005. There is a try {}
I have a win32 application, in which I want to use openGL just for
I'm doing a wrapper class around win32 threads and pthreads, in a style similiar
I have a BitBlt wrapper function in my VB project. It works just fine
I have a Win32 app developed in C++ Builder XE, which has worked great
In my attempt to create my own win32 wrapper I have come across this
I have a win32 GUI (MFC) application which I need to port to a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.