Release 990226.
[wine/gsoc-2012-control.git] / windows / ttydrv / wnd.c
blobda2b18446cb50b34520e3cbbe9d88965718c6bcf
1 /*
2 * TTY window driver
4 * Copyright 1998,1999 Patrik Stridvall
5 */
7 #include "class.h"
8 #include "dc.h"
9 #include "ttydrv.h"
10 #include "win.h"
12 /**********************************************************************
13 * TTYDRV_WND_Initialize
15 void TTYDRV_WND_Initialize(WND *wndPtr)
19 /**********************************************************************
20 * TTYDRV_WND_Finalize
22 void TTYDRV_WND_Finalize(WND *wndPtr)
26 /**********************************************************************
27 * TTYDRV_WND_CreateDesktopWindow
29 BOOL TTYDRV_WND_CreateDesktopWindow(WND *wndPtr, CLASS *classPtr, BOOL bUnicode)
31 return FALSE;
34 /**********************************************************************
35 * TTYDRV_WND_CreateWindow
37 BOOL TTYDRV_WND_CreateWindow(WND *wndPtr, CLASS *classPtr, CREATESTRUCTA *cs, BOOL bUnicode)
39 return FALSE;
42 /***********************************************************************
43 * TTYDRV_WND_DestroyWindow
45 BOOL TTYDRV_WND_DestroyWindow(WND *wndPtr)
47 return FALSE;
50 /*****************************************************************
51 * X11DRV_WND_SetParent
53 WND *TTYDRV_WND_SetParent(WND *wndPtr, WND *pWndParent)
55 return NULL;
58 /***********************************************************************
59 * TTYDRV_WND_ForceWindowRaise
61 void TTYDRV_WND_ForceWindowRaise(WND *wndPtr)
65 /***********************************************************************
66 * WINPOS_SetXWindowPos
68 * SetWindowPos() for an X window. Used by the real SetWindowPos().
70 void TTYDRV_WND_SetWindowPos(WND *wndPtr, const WINDOWPOS *winpos, BOOL bSMC_SETXPOS)
74 /*****************************************************************
75 * TTYDRV_WND_SetText
77 void TTYDRV_WND_SetText(WND *wndPtr, LPCSTR text)
81 /*****************************************************************
82 * TTYDRV_WND_SetFocus
84 void TTYDRV_WND_SetFocus(WND *wndPtr)
88 /*****************************************************************
89 * TTYDRV_WND_PreSizeMove
91 void TTYDRV_WND_PreSizeMove(WND *wndPtr)
95 /*****************************************************************
96 * TTYDRV_WND_PostSizeMove
98 void TTYDRV_WND_PostSizeMove(WND *wndPtr)
103 /*****************************************************************
104 * TTYDRV_WND_ScrollWindow
106 void TTYDRV_WND_ScrollWindow(
107 WND *wndPtr, DC *dcPtr, INT dx, INT dy,
108 const RECT *clipRect, BOOL bUpdate)
112 /***********************************************************************
113 * TTYDRV_WND_SetDrawable
115 void TTYDRV_WND_SetDrawable(WND *wndPtr, DC *dc, WORD flags, BOOL bSetClipOrigin)
119 /***********************************************************************
120 * TTYDRV_WND_IsSelfClipping
122 BOOL TTYDRV_WND_IsSelfClipping(WND *wndPtr)
124 return FALSE;