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 / w32textedit.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-14  |  2.9 KB  |  99 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 <richedit.h>
  21. #include <vd2/system/w32assist.h>
  22. #include <vd2/Dita/w32control.h>
  23. #include <vector>
  24. #include <deque>
  25.  
  26. #ifndef _MSC_VER
  27.     #pragma comment(lib, "comctl32")
  28. #endif
  29.  
  30.  
  31. class VDUITextEditW32 : public VDUIControlW32 {
  32. public:
  33.     bool Create(IVDUIParameters *pParameters);
  34.  
  35.     void PreLayoutBase(const VDUILayoutSpecs& parentConstraints);
  36.  
  37.     void OnCommandCallback(UINT code);
  38. };
  39.  
  40. extern IVDUIWindow *VDCreateUITextEdit() { return new VDUITextEditW32; }
  41.  
  42. bool VDUITextEditW32::Create(IVDUIParameters *pParameters) {
  43.     return CreateW32(pParameters, "EDIT", ES_AUTOHSCROLL|WS_TABSTOP);
  44. }
  45.  
  46. void VDUITextEditW32::PreLayoutBase(const VDUILayoutSpecs& parentConstraints) {
  47.     mLayoutSpecs.minsize.w = 0;
  48.     mLayoutSpecs.minsize.h = mpBase->MapUnitsToPixels(vduisize(12,12)).w;
  49. }
  50.  
  51. void VDUITextEditW32::OnCommandCallback(UINT code) {
  52.     if (code == EN_CHANGE) {
  53.         UpdateCaptionW32();
  54.         mpBase->ProcessValueChange(this, mID);
  55.         mpBase->DispatchEvent(this, mID, IVDUICallback::kEventSelect, 0);
  56.     }
  57. }
  58.  
  59. ///////////////////////////////////////////////////////////////////////////
  60.  
  61. class VDUITextAreaW32 : public VDUIControlW32 {
  62. public:
  63.     void *AsInterface(uint32 id);
  64.     bool Create(IVDUIParameters *pParameters);
  65.  
  66. protected:
  67.     static HMODULE shmodRichEdit;
  68. };
  69.  
  70. extern IVDUIWindow *VDCreateUITextArea() { return new VDUITextAreaW32; }
  71.  
  72. HMODULE VDUITextAreaW32::shmodRichEdit = NULL;
  73.  
  74. void *VDUITextAreaW32::AsInterface(uint32 id) {
  75. //    if (id == IVDUIRichText::kTypeID) return static_cast<IVDUIRichText *>(this);
  76.  
  77.     return VDUIControlW32::AsInterface(id);
  78. }
  79.  
  80. bool VDUITextAreaW32::Create(IVDUIParameters *pParameters) {
  81.     if (!shmodRichEdit)
  82.         shmodRichEdit = LoadLibrary("riched32");
  83.  
  84.     DWORD dwStyle = ES_MULTILINE|ES_AUTOVSCROLL|WS_TABSTOP;
  85.  
  86.     if (pParameters->GetB(nsVDUI::kUIParam_Readonly, false)) {
  87.         dwStyle |= ES_READONLY;
  88.         dwStyle &= ~WS_TABSTOP;
  89.     }
  90.  
  91.     if (!CreateW32(pParameters, "RichEdit", dwStyle))
  92.         return false;
  93.  
  94.     if (dwStyle & ES_READONLY)
  95.         SendMessage(mhwnd, EM_SETBKGNDCOLOR, FALSE, GetSysColor(COLOR_3DFACE));
  96.  
  97.     return true;
  98. }
  99.