in reply to Continueing the Quest to get RegisterHotKey to work!
In sub WindowProc, you need to unpack $lParam, which is a pointer to a struct of type MSG.
You then need to check the message field in MSG to see if the message is of type WM_HOTKEY.
Here are the minimum changes to make your code work.
Add this to your constant section:
Add this to the middle of sub WindowProc:use constant WM_HOTKEY => 0x0312;
my ($hwnd, $message, $msg_wParam, $msg_lParam, $time, $pt) = unpack 'L L L l L L ', unpack( 'P24', pack('L', $lParam) ); if ( $message == WM_HOTKEY ) { print "**************************\n"; }
These are some thoughts I had during my research of this problem:
Refactored, working, tested code:
use strict; use warnings; use Win32::GUI; use Win32::API; use Win32::API::Callback; # From PlatformSDK/Include/WinUser.h use constant MOD_CONTROL => 2; use constant KEY_A => ord('A'); use constant MY_HOTKEY_ID => 99; use constant { # Codes for SetWindowHook WH_GETMESSAGE => 3, # Window Messages WM_HOTKEY => 0x0312, ### # Hook Codes ### HC_ACTION => 0, ### HC_GETNEXT => 1, ### HC_SKIP => 2, ### HC_NOREMOVE => 3, ### HC_SYSMODALON => 4, ### HC_SYSMODALOFF => 5, ### ### # PeekMessage() Options ### PM_NOREMOVE => 0x0000, ### PM_REMOVE => 0x0001, ### PM_NOYIELD => 0x0002, }; sub WindowProc { my ( $nCode, $wParam, $lParam ) = @_; # See http://msdn.microsoft.com/library/en-us/winui/winui/windowsu +serinterface/windowing/messagesandmessagequeues/messagesandmessageque +uesreference/messageandmessagequeuestructures/msg.asp # typedef struct { # HWND hwnd; # UINT message; # WPARAM wParam; # Unsigned # LPARAM lParam; # Signed # DWORD time; # POINT pt; # } MSG, *PMSG; my ( $msg_hwnd, $msg_message, $msg_wParam, $msg_lParam, $msg_time, + $msg_pt ) = unpack 'L L L l L L ', unpack( 'P24', pack('L', $lParam) ); if ( $msg_message == WM_HOTKEY ) { print "**************************\n"; } CallNextHookEx( 0, $nCode, $wParam, $lParam ); } my $WinProc = Win32::API::Callback->new( \&WindowProc, 'NNN', 'N' ); Win32::API->Import( kernel32 => GetCurrentThreadId => '', 'N' ) or + die; Win32::API->Import( user32 => SetWindowsHookEx => 'NKNN', 'N' ) or + die; Win32::API->Import( user32 => CallNextHookEx => 'PNNN', 'N' ) or + die; Win32::API->Import( user32 => RegisterHotKey => 'NNNN', 'N' ) or + die; Win32::API->Import( user32 => UnregisterHotKey => 'NN', 'N' ) or + die; my $ThreadId = GetCurrentThreadId() or die; SetWindowsHookEx( WH_GETMESSAGE, $WinProc, 0, $ThreadId ) or die $^E; my $mw_win32 = Win32::GUI::Window->new( -name => 'MainWindow', -title => 'This is a test!', -width => 100, -height => 100, ); $mw_win32->Show(); my $mw_handle = $mw_win32->GetActiveWindow(); RegisterHotKey( $mw_handle, MY_HOTKEY_ID, MOD_CONTROL, KEY_A ) or die +$^E; Win32::GUI::Dialog(); UnregisterHotKey( $mw_handle, MY_HOTKEY_ID ) or die $^E;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Continueing the Quest to get RegisterHotKey to work!
by eric256 (Parson) on Jul 16, 2006 at 21:42 UTC |