Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
1.7 KiB

  1. /*
  2. * LINEDISP.CPP
  3. *
  4. *
  5. *
  6. *
  7. *
  8. *
  9. */
  10. #include <windows.h>
  11. #include <hidclass.h>
  12. #include <hidsdi.h>
  13. #include <ole2.h>
  14. #include <ole2ver.h>
  15. #include "..\inc\opos.h"
  16. #include "oposctrl.h"
  17. /*
  18. * Define constructor/deconstructor.
  19. */
  20. DEFINE_DEFAULT_CONTROL_CONSTRUCTOR(COPOSLineDisplay)
  21. /*
  22. * Define local methods to relay all generic control
  23. * method calls to the m_genericControl member.
  24. */
  25. DEFINE_GENERIC_CONTROL_FUNCTIONS(COPOSLineDisplay)
  26. STDMETHODIMP_(LONG) COPOSLineDisplay::ClearDescriptors()
  27. {
  28. LONG result = 0;
  29. // BUGBUG FINISH
  30. return result;
  31. }
  32. STDMETHODIMP_(LONG) COPOSLineDisplay::ClearText()
  33. {
  34. LONG result = 0;
  35. // BUGBUG FINISH
  36. return result;
  37. }
  38. // BUGBUG conflict ??? STDMETHODIMP_(LONG) COPOSLineDisplay::CreateWindow(LONG ViewportRow, LONG ViewportColumn, LONG ViewportHeight, LONG ViewportWidth, LONG WindowHeight, LONG WindowWidth)
  39. STDMETHODIMP_(LONG) COPOSLineDisplay::DestroyWindow()
  40. {
  41. LONG result = 0;
  42. // BUGBUG FINISH
  43. return result;
  44. }
  45. STDMETHODIMP_(LONG) COPOSLineDisplay::DisplayText(BSTR Data, LONG Attribute)
  46. {
  47. LONG result = 0;
  48. // BUGBUG FINISH
  49. return result;
  50. }
  51. STDMETHODIMP_(LONG) COPOSLineDisplay::DisplayTextAt(LONG Row, LONG Column, BSTR Data, LONG Attribute)
  52. {
  53. LONG result = 0;
  54. // BUGBUG FINISH
  55. return result;
  56. }
  57. STDMETHODIMP_(LONG) COPOSLineDisplay::RefreshWindow(LONG Window)
  58. {
  59. LONG result = 0;
  60. // BUGBUG FINISH
  61. return result;
  62. }
  63. STDMETHODIMP_(LONG) COPOSLineDisplay::ScrollText(LONG Direction, LONG Units)
  64. {
  65. LONG result = 0;
  66. // BUGBUG FINISH
  67. return result;
  68. }
  69. STDMETHODIMP_(LONG) COPOSLineDisplay::SetDescriptor(LONG Descriptor, LONG Attribute)
  70. {
  71. LONG result = 0;
  72. // BUGBUG FINISH
  73. return result;
  74. }