1999-01-24 20:12:34 +01:00
|
|
|
/*
|
|
|
|
* Drag List control
|
|
|
|
*
|
|
|
|
* Copyright 1999 Eric Kohl
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* This is just a dummy control. An author is needed! Any volunteers?
|
|
|
|
* I will only improve this control once in a while.
|
|
|
|
* Eric <ekohl@abo.rhein-zeitung.de>
|
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
* - Everything.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "commctrl.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
1999-01-26 13:59:31 +01:00
|
|
|
BOOL32 WINAPI MakeDragList (HWND32 hwndLB)
|
1999-01-24 20:12:34 +01:00
|
|
|
{
|
|
|
|
FIXME (commctrl, "(0x%x)\n", hwndLB);
|
|
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-26 13:59:31 +01:00
|
|
|
VOID WINAPI DrawInsert (HWND32 hwndParent, HWND32 hwndLB, INT32 nItem)
|
1999-01-24 20:12:34 +01:00
|
|
|
{
|
|
|
|
FIXME (commctrl, "(0x%x 0x%x %d)\n", hwndParent, hwndLB, nItem);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-26 13:59:31 +01:00
|
|
|
INT32 WINAPI LBItemFromPt (HWND32 hwndLB, POINT32 pt, BOOL32 bAutoScroll)
|
1999-01-24 20:12:34 +01:00
|
|
|
{
|
1999-02-13 18:38:16 +01:00
|
|
|
FIXME (commctrl, "(0x%x %ld x %ld %s)\n",
|
1999-01-24 20:12:34 +01:00
|
|
|
hwndLB, pt.x, pt.y, bAutoScroll ? "TRUE" : "FALSE");
|
|
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|