home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 275 / DPCS0111DVD.ISO / Toolkit / Audio-Visual / VirtualDub / Source / VirtualDub-1.9.10-src.7z / src / Dita / source / w32hotkey.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-14  |  2.2 KB  |  77 lines

  1. //    VirtualDub - Video processing and capture application
  2. //    Copyright (C) 1998-2006 Avery Lee
  3. //
  4. //    This program is free software; you can redistribute it and/or modify
  5. //    it under the terms of the GNU General Public License as published by
  6. //    the Free Software Foundation; either version 2 of the License, or
  7. //    (at your option) any later version.
  8. //
  9. //    This program is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. //    GNU General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU General Public License
  15. //    along with this program; if not, write to the Free Software
  16. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #include <stdafx.h>
  19. #include <windows.h>
  20. #include <commctrl.h>
  21. #include <vd2/Dita/w32control.h>
  22.  
  23. ///////////////////////////////////////////////////////////////////////////
  24. //
  25. //    VDUIHotkeyW32
  26. //
  27. ///////////////////////////////////////////////////////////////////////////
  28.  
  29. class VDUIHotkeyW32 : public VDUIControlW32 {
  30. public:
  31.     bool Create(IVDUIParameters *);
  32.  
  33.     void PreLayoutBase(const VDUILayoutSpecs& parentConstraints);
  34.  
  35.     void OnCommandCallback(UINT code);
  36.  
  37.     int GetValue();
  38.     void SetValue(int value);
  39.  
  40. protected:
  41.     int mValue;
  42. };
  43.  
  44. extern IVDUIWindow *VDCreateUIHotkey() { return new VDUIHotkeyW32; }
  45.  
  46. bool VDUIHotkeyW32::Create(IVDUIParameters *pParams) {
  47.     if (!CreateW32(pParams, HOTKEY_CLASS, WS_TABSTOP))
  48.         return false;
  49.  
  50.     mValue = 0;
  51.     return true;
  52. }
  53.  
  54. void VDUIHotkeyW32::PreLayoutBase(const VDUILayoutSpecs& parentConstraints) {
  55.     vduisize pad = mpBase->MapUnitsToPixels(vduisize(8,12));
  56.  
  57.     mLayoutSpecs.minsize.w = GetSystemMetrics(SM_CXVSCROLL);
  58.     mLayoutSpecs.minsize.h = pad.h;
  59. }
  60.  
  61. void VDUIHotkeyW32::OnCommandCallback(UINT code) {
  62.     if (code == EN_CHANGE) {
  63.         mValue = SendMessage(mhwnd, HKM_GETHOTKEY, 0, 0);
  64.         mpBase->ProcessActivation(this, mID);
  65.         mpBase->DispatchEvent(this, mID, IVDUICallback::kEventSelect, 0);
  66.     }
  67. }
  68.  
  69. int VDUIHotkeyW32::GetValue() {
  70.     return mValue;
  71. }
  72.  
  73. void VDUIHotkeyW32::SetValue(int value) {
  74.     mValue = value;
  75.     SendMessage(mhwnd, HKM_SETHOTKEY, value, 0);
  76. }
  77.