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 / w32trackbar.cpp < prev   
Encoding:
C/C++ Source or Header  |  2009-09-14  |  2.6 KB  |  88 lines

  1. //    VirtualDub - Video processing and capture application
  2. //    Copyright (C) 1998-2004 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. //    VDUITrackbarW32
  26. //
  27. ///////////////////////////////////////////////////////////////////////////
  28.  
  29. class VDUITrackbarW32 : public VDUIControlW32, public IVDUITrackbar {
  30. public:
  31.     void *AsInterface(uint32 id);
  32.  
  33.     bool Create(IVDUIParameters *);
  34.  
  35.     void PreLayoutBase(const VDUILayoutSpecs& parentConstraints);
  36.  
  37.     void SetRange(sint32 mn, sint32 mx);
  38.  
  39.     int GetValue();
  40.     void SetValue(int value);
  41.  
  42.     void OnScrollCallback(UINT code);
  43.  
  44. protected:
  45.     sint32    mValue;
  46. };
  47.  
  48. extern IVDUIWindow *VDCreateUITrackbar() { return new VDUITrackbarW32; }
  49.  
  50. void *VDUITrackbarW32::AsInterface(uint32 id) {
  51.     if (id == IVDUITrackbar::kTypeID) return static_cast<IVDUITrackbar *>(this);
  52.  
  53.     return VDUIControlW32::AsInterface(id);
  54. }
  55.  
  56. bool VDUITrackbarW32::Create(IVDUIParameters *pParams) {
  57.     mValue = 0;
  58.     return CreateW32(pParams, TRACKBAR_CLASS, TBS_HORZ|TBS_BOTH|TBS_NOTICKS);
  59. }
  60.  
  61. void VDUITrackbarW32::PreLayoutBase(const VDUILayoutSpecs& parentConstraints) {
  62. }
  63.  
  64. void VDUITrackbarW32::SetRange(sint32 mn, sint32 mx) {
  65.     SendMessage(mhwnd, TBM_SETRANGEMIN, FALSE, mn);
  66.     SendMessage(mhwnd, TBM_SETRANGEMAX, TRUE, mx);
  67.     OnScrollCallback(0);    // check for clip
  68. }
  69.  
  70. int VDUITrackbarW32::GetValue() {
  71.     return mValue;
  72. }
  73.  
  74. void VDUITrackbarW32::SetValue(int value) {
  75.     mValue = value;        // prevents recursion
  76.     SendMessage(mhwnd, TBM_SETPOS, TRUE, value);
  77. }
  78.  
  79. void VDUITrackbarW32::OnScrollCallback(UINT code) {
  80.     sint32 v = SendMessage(mhwnd, TBM_GETPOS, 0, 0);
  81.  
  82.     if (mValue != v) {
  83.         mValue = v;
  84.         mpBase->ProcessValueChange(this, mID);
  85.         mpBase->DispatchEvent(this, mID, IVDUICallback::kEventSelect, GetValue());
  86.     }
  87. }
  88.