[pywin32-checkins] pywin32/Pythonwin win32uimodule.cpp,1.25,1.26
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-15 23:33:37
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1:/tmp/cvs-serv16305 Modified Files: win32uimodule.cpp Log Message: Patch from Larry Howard to allow a tooltip control to be directly created. Index: win32uimodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32uimodule.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** win32uimodule.cpp 8 Jun 2002 15:21:09 -0000 1.25 --- win32uimodule.cpp 15 Oct 2003 23:33:33 -0000 1.26 *************** *** 1768,1771 **** --- 1768,1772 ---- extern PyObject *PyCStatusBarCtrl_create(PyObject *self, PyObject *args); extern PyObject *PyCToolBarCtrl_create(PyObject *self, PyObject *args); + extern PyObject *PyCToolTipCtrl_create(PyObject *self, PyObject *args); extern PyObject *ui_window_create(PyObject *self, PyObject *args); extern PyObject *PyCImageList_Create(PyObject *self, PyObject *args); *************** *** 1831,1834 **** --- 1832,1836 ---- {"CreateToolBar", PyCToolBar::create, 1}, // @pymeth CreateToolBar|Creates a toolbar object. {"CreateToolBarCtrl", PyCToolBarCtrl_create, 1}, // @pymeth CreateToolBar|Creates a toolbar object. + {"CreateToolTipCtrl", PyCToolTipCtrl_create, 1}, // @pymeth CreateToolTip|Creates a tooltip control object. {"CreateThread", PyCWinThread::create, 1}, // @pymeth CreateThread|Creates a <o PyCWinThread> object. {"CreateView", PyCScrollView::create, 1}, // @pymeth CreateView|Creates a <o PyCView> object. |