Click here to Skip to main content
15,881,380 members
Articles / Desktop Programming / MFC

An unclickable button

Rate me:
Please Sign up or sign in to vote.
4.87/5 (40 votes)
30 May 2002CPOL 401K   3.6K   64   77
What looks like a normal pushbutton - until the user tries to click on it.

Sample Image - trick_button.gif

Introduction 

I wrote this many years ago for a friend. It is basically just a normal pushbutton, except that when the user tries to click on it, it moves out of the way making it practically un-clickable.  

I have no idea what anyone would ever want to use such a control in their app, apart from wanting to be extremely annoying to users (and hey - don't we all get like that on occasion?) :)

The button is just a normal button with OnMouseMove overridden: (m_nJumpDistance is the distance in pixels to jump once the mouse has moved over the control).

The WM_SETFOCUS message has also been handled to bounce the focus back to the window that previously had focus, and PreSubclassWindow has been overridden to allow the removal of the WS_TABSTOP window style bit. This ensures that the user can't tab to the control.

The guts of it all

C++
void CTrickButton::OnMouseMove(UINT nFlags, CPoint point) 
{
    CWnd* pParent = GetParent();
    if (!pParent) pParent = GetDesktopWindow();

    CRect ParentRect;                                   // Parent client area (Parent coords)
    pParent->GetClientRect(ParentRect);

    ClientToScreen(&point);                             // Convert point to parent coords
    pParent->ScreenToClient(&point);

    CRect ButtonRect;                                   // Button Dimensions (Parent coords)
    GetWindowRect(ButtonRect);  
    pParent->ScreenToClient(ButtonRect);
    CPoint Center = ButtonRect.CenterPoint();           // Center of button (parent coords)

    CRect NewButtonRect = ButtonRect;                   // New position (parent coords)

    if (point.x > Center.x)                             // Mouse is right of center
    {
        if (ButtonRect.left > ParentRect.left + ButtonRect.Width() + m_nJumpDistance)
            NewButtonRect -= CSize(ButtonRect.right - point.x + m_nJumpDistance, 0);
        else
            NewButtonRect += CSize(point.x - ButtonRect.left + m_nJumpDistance, 0);
    }
    else if (point.x < Center.x)                       // Mouse is left of center
    {
        if (ButtonRect.right < ParentRect.right - ButtonRect.Width() - m_nJumpDistance)
            NewButtonRect += CSize(point.x - ButtonRect.left + m_nJumpDistance, 0);
        else
            NewButtonRect -= CSize(ButtonRect.right - point.x + m_nJumpDistance, 0);
    }

    if (point.y > Center.y)                           // Mouse is below center
    {
        if (ButtonRect.top > ParentRect.top + ButtonRect.Height() + m_nJumpDistance)
            NewButtonRect -= CSize(0, ButtonRect.bottom - point.y + m_nJumpDistance);
        else
            NewButtonRect += CSize(0, point.y - ButtonRect.top + m_nJumpDistance);
    }
    else if (point.y < Center.y)                      // Mouse is above center
    {
        if (ButtonRect.bottom < ParentRect.bottom - ButtonRect.Height() - m_nJumpDistance)
            NewButtonRect += CSize(0, point.y - ButtonRect.top + m_nJumpDistance);
        else
            NewButtonRect -= CSize(0, ButtonRect.bottom - point.y + m_nJumpDistance);
    }

    MoveWindow(NewButtonRect);
    RedrawWindow();
    
    CButton::OnMouseMove(nFlags, point);
}

void CTrickButton::OnSetFocus(CWnd* pOldWnd)
{
    CButton::OnSetFocus(pOldWnd);

    // Give the focus right back to the window that justn gave it to us
    if (pOldWnd!=NULL && ::IsWindow(pOldWnd->GetSafeHwnd()))
        pOldWnd->SetFocus();
}

void CTrickButton::PreSubclassWindow()
{
    // Ensure that the TabStop style is removed from the control
    ModifyStyle(WS_TABSTOP, 0);
    CButton::PreSubclassWindow();
}

History

31 May 2002 - updated to include removal of WM_TABSTOP, plus minor cleanup.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder CodeProject
Canada Canada
Chris Maunder is the co-founder of CodeProject and ContentLab.com, and has been a prominent figure in the software development community for nearly 30 years. Hailing from Australia, Chris has a background in Mathematics, Astrophysics, Environmental Engineering and Defence Research. His programming endeavours span everything from FORTRAN on Super Computers, C++/MFC on Windows, through to to high-load .NET web applications and Python AI applications on everything from macOS to a Raspberry Pi. Chris is a full-stack developer who is as comfortable with SQL as he is with CSS.

In the late 1990s, he and his business partner David Cunningham recognized the need for a platform that would facilitate knowledge-sharing among developers, leading to the establishment of CodeProject.com in 1999. Chris's expertise in programming and his passion for fostering a collaborative environment have played a pivotal role in the success of CodeProject.com. Over the years, the website has grown into a vibrant community where programmers worldwide can connect, exchange ideas, and find solutions to coding challenges. Chris is a prolific contributor to the developer community through his articles and tutorials, and his latest passion project, CodeProject.AI.

In addition to his work with CodeProject.com, Chris co-founded ContentLab and DeveloperMedia, two projects focussed on helping companies make their Software Projects a success. Chris's roles included Product Development, Content Creation, Client Satisfaction and Systems Automation.

Comments and Discussions

 
GeneralRe: cheat... Pin
Tom Archer24-May-02 12:28
Tom Archer24-May-02 12:28 
GeneralRe: cheat... Pin
Chris Maunder24-May-02 14:18
cofounderChris Maunder24-May-02 14:18 
GeneralRe: cheat... Pin
Tom Archer24-May-02 14:35
Tom Archer24-May-02 14:35 
GeneralRe: cheat... Pin
Chris Maunder24-May-02 14:47
cofounderChris Maunder24-May-02 14:47 
GeneralRe: cheat... Pin
Tom Archer24-May-02 14:51
Tom Archer24-May-02 14:51 
GeneralRe: cheat... Pin
Chris Maunder24-May-02 15:00
cofounderChris Maunder24-May-02 15:00 
GeneralRe: cheat... Pin
Tom Archer24-May-02 15:17
Tom Archer24-May-02 15:17 
GeneralRe: cheat... Pin
Tom Archer24-May-02 14:36
Tom Archer24-May-02 14:36 
GeneralRe: cheat... Pin
Brian Olej24-May-02 14:55
Brian Olej24-May-02 14:55 
Generalty Pin
Mohammadj3-Mar-09 6:19
Mohammadj3-Mar-09 6:19 
General... Pin
Stefan Spenz21-May-02 22:33
Stefan Spenz21-May-02 22:33 
GeneralReminds me of my school days Pin
Michael P Butler21-May-02 22:29
Michael P Butler21-May-02 22:29 
GeneralRe: Reminds me of my school days Pin
Carlos Antollini22-May-02 5:08
Carlos Antollini22-May-02 5:08 
GeneralRe: Reminds me of my school days Pin
Alexandru Savescu22-May-02 11:26
Alexandru Savescu22-May-02 11:26 
Generalgreat laugh Pin
mystro_AKA_kokie21-May-02 20:09
mystro_AKA_kokie21-May-02 20:09 
GeneralRe: great laugh Pin
Mohammadj4-Mar-09 6:25
Mohammadj4-Mar-09 6:25 
GeneralI remember this..... Pin
Christian Graus21-May-02 19:13
protectorChristian Graus21-May-02 19:13 
GeneralRe: I remember this..... Pin
Black Cat21-May-02 19:50
Black Cat21-May-02 19:50 
GeneralRe: I remember this..... Pin
PJ Arends21-May-02 20:13
professionalPJ Arends21-May-02 20:13 
GeneralRe: I remember this..... Pin
Chris Maunder21-May-02 20:28
cofounderChris Maunder21-May-02 20:28 
GeneralRe: I remember this..... Pin
Maximilian Hänel22-May-02 5:31
Maximilian Hänel22-May-02 5:31 
QuestionHow about an Annoyance Controls section Chris? Pin
Nish Nishant21-May-02 18:57
sitebuilderNish Nishant21-May-02 18:57 
AnswerRe: How about an Annoyance Controls section Chris? Pin
mystro_AKA_kokie21-May-02 20:00
mystro_AKA_kokie21-May-02 20:00 
GeneralRe: How about an Annoyance Controls section Chris? Pin
21-May-02 21:44
suss21-May-02 21:44 
GeneralRe: How about an Annoyance Controls section Chris? Pin
Jörgen Sigvardsson21-May-02 21:52
Jörgen Sigvardsson21-May-02 21:52 

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.