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 / w32label.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-14  |  2.0 KB  |  73 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 <vd2/Dita/w32control.h>
  20.  
  21. class VDUILabelW32 : public VDUIControlW32 {
  22. public:
  23.     bool Create(IVDUIParameters *);
  24.     void PreLayoutBaseW32(const VDUILayoutSpecs&);
  25. };
  26.  
  27. extern IVDUIWindow *VDCreateUILabel() { return new VDUILabelW32; }
  28.  
  29. bool VDUILabelW32::Create(IVDUIParameters *pParameters) {
  30.     return CreateW32(pParameters, "STATIC", SS_CENTERIMAGE|SS_LEFT);
  31. }
  32.  
  33. void VDUILabelW32::PreLayoutBaseW32(const VDUILayoutSpecs& parentConstraints) {
  34.     SIZE siz = SizeText(0, 0, 0);
  35.  
  36.     mLayoutSpecs.minsize.w    = siz.cx;
  37.     mLayoutSpecs.minsize.h    = siz.cy;
  38. }
  39.  
  40. ///////////////////////////////////////////////////////////////////////////////
  41.  
  42. class VDUINumericLabelW32 : public VDUILabelW32 {
  43. public:
  44.     VDUINumericLabelW32();
  45.  
  46.     int GetValue();
  47.     void SetValue(int v);
  48.  
  49. protected:
  50.     int mValue;
  51.     VDStringW    mFormat;
  52. };
  53.  
  54. extern IVDUIWindow *VDCreateUINumericLabel() { return new VDUINumericLabelW32; }
  55.  
  56. VDUINumericLabelW32::VDUINumericLabelW32()
  57.     : mValue(0)
  58.     , mFormat(L"%d")
  59. {
  60. }
  61.  
  62. int VDUINumericLabelW32::GetValue() {
  63.     return mValue;
  64. }
  65.  
  66. void VDUINumericLabelW32::SetValue(int v) {
  67.     if (v != mValue) {
  68.         mValue = v;
  69.  
  70.         SetCaption(VDswprintf(mFormat.c_str(), 1, &v).c_str());
  71.     }
  72. }
  73.