Add a link to the changes file, move the log file
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -351,6 +351,7 @@ A new test build of wxPython has been uploaded to starship.
|
|||||||
|
|
||||||
Version: $VERSION
|
Version: $VERSION
|
||||||
URL: http://starship.python.net/crew/robind/wxPython/daily/$DAILY
|
URL: http://starship.python.net/crew/robind/wxPython/daily/$DAILY
|
||||||
|
Changes: http://starship.python.net/crew/robind/wxPython/daily/$DAILY/CHANGES.html
|
||||||
|
|
||||||
Have fun!
|
Have fun!
|
||||||
R'bot
|
R'bot
|
||||||
@@ -394,6 +395,7 @@ A new RC build of wxPython has been uploaded to starship.
|
|||||||
|
|
||||||
Version: $VERSION
|
Version: $VERSION
|
||||||
URL: http://starship.python.net/crew/robind/wxPython/preview/$VERSION
|
URL: http://starship.python.net/crew/robind/wxPython/preview/$VERSION
|
||||||
|
Changes: http://starship.python.net/crew/robind/wxPython/preview/$VERSION/CHANGES.html
|
||||||
|
|
||||||
Have fun!
|
Have fun!
|
||||||
R'bot
|
R'bot
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
distrib/all/build-all daily $* 2>&1 | tee daily.log
|
distrib/all/build-all daily $* 2>&1 | tee tmp/daily.log
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
distrib/all/build-all release $* 2>&1 | tee release.log
|
distrib/all/build-all release $* 2>&1 | tee tmp/release.log
|
||||||
|
|
||||||
|
@@ -241,6 +241,18 @@ def GetCurrentId(*args, **kwargs):
|
|||||||
"""GetCurrentId() -> long"""
|
"""GetCurrentId() -> long"""
|
||||||
return _misc_.GetCurrentId(*args, **kwargs)
|
return _misc_.GetCurrentId(*args, **kwargs)
|
||||||
|
|
||||||
|
def wxIsStockID(*args, **kwargs):
|
||||||
|
"""wxIsStockID(int id) -> bool"""
|
||||||
|
return _misc_.wxIsStockID(*args, **kwargs)
|
||||||
|
|
||||||
|
def wxIsStockLabel(*args, **kwargs):
|
||||||
|
"""wxIsStockLabel(int id, String label) -> bool"""
|
||||||
|
return _misc_.wxIsStockLabel(*args, **kwargs)
|
||||||
|
|
||||||
|
def wxGetStockLabel(*args, **kwargs):
|
||||||
|
"""wxGetStockLabel(int id) -> String"""
|
||||||
|
return _misc_.wxGetStockLabel(*args, **kwargs)
|
||||||
|
|
||||||
def Bell(*args, **kwargs):
|
def Bell(*args, **kwargs):
|
||||||
"""Bell()"""
|
"""Bell()"""
|
||||||
return _misc_.Bell(*args, **kwargs)
|
return _misc_.Bell(*args, **kwargs)
|
||||||
|
@@ -421,6 +421,9 @@ SWIG_CheckInt(PyObject* obj)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#include <wx/stockitem.h>
|
||||||
|
|
||||||
static const wxString wxPyFileSelectorPromptStr(wxFileSelectorPromptStr);
|
static const wxString wxPyFileSelectorPromptStr(wxFileSelectorPromptStr);
|
||||||
static const wxString wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr);
|
static const wxString wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr);
|
||||||
static const wxString wxPyDirSelectorPromptStr(wxDirSelectorPromptStr);
|
static const wxString wxPyDirSelectorPromptStr(wxDirSelectorPromptStr);
|
||||||
@@ -2174,6 +2177,110 @@ static PyObject *_wrap_GetCurrentId(PyObject *self, PyObject *args, PyObject *kw
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_wxIsStockID(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
int arg1 ;
|
||||||
|
bool result;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "id", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:wxIsStockID",kwnames,&obj0)) goto fail;
|
||||||
|
arg1 = (int) SWIG_AsInt(obj0);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = (bool)wxIsStockID(arg1);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_wxIsStockLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
int arg1 ;
|
||||||
|
wxString *arg2 = 0 ;
|
||||||
|
bool result;
|
||||||
|
bool temp2 = False ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "id",(char *) "label", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:wxIsStockLabel",kwnames,&obj0,&obj1)) goto fail;
|
||||||
|
arg1 = (int) SWIG_AsInt(obj0);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
{
|
||||||
|
arg2 = wxString_in_helper(obj1);
|
||||||
|
if (arg2 == NULL) SWIG_fail;
|
||||||
|
temp2 = True;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = (bool)wxIsStockLabel(arg1,(wxString const &)*arg2);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (temp2)
|
||||||
|
delete arg2;
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
{
|
||||||
|
if (temp2)
|
||||||
|
delete arg2;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_wxGetStockLabel(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
int arg1 ;
|
||||||
|
wxString result;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "id", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:wxGetStockLabel",kwnames,&obj0)) goto fail;
|
||||||
|
arg1 = (int) SWIG_AsInt(obj0);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = wxGetStockLabel(arg1);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
#if wxUSE_UNICODE
|
||||||
|
resultobj = PyUnicode_FromWideChar((&result)->c_str(), (&result)->Len());
|
||||||
|
#else
|
||||||
|
resultobj = PyString_FromStringAndSize((&result)->c_str(), (&result)->Len());
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Bell(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_Bell(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
char *kwnames[] = {
|
char *kwnames[] = {
|
||||||
@@ -28257,6 +28364,9 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"NewId", (PyCFunction) _wrap_NewId, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"NewId", (PyCFunction) _wrap_NewId, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"RegisterId", (PyCFunction) _wrap_RegisterId, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"RegisterId", (PyCFunction) _wrap_RegisterId, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"GetCurrentId", (PyCFunction) _wrap_GetCurrentId, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"GetCurrentId", (PyCFunction) _wrap_GetCurrentId, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"wxIsStockID", (PyCFunction) _wrap_wxIsStockID, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"wxIsStockLabel", (PyCFunction) _wrap_wxIsStockLabel, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"wxGetStockLabel", (PyCFunction) _wrap_wxGetStockLabel, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Bell", (PyCFunction) _wrap_Bell, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Bell", (PyCFunction) _wrap_Bell, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"EndBusyCursor", (PyCFunction) _wrap_EndBusyCursor, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"EndBusyCursor", (PyCFunction) _wrap_EndBusyCursor, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"GetElapsedTime", (PyCFunction) _wrap_GetElapsedTime, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"GetElapsedTime", (PyCFunction) _wrap_GetElapsedTime, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
@@ -1655,6 +1655,10 @@ class Grid(_windows.ScrolledWindow):
|
|||||||
"""SetColAttr(self, int col, GridCellAttr attr)"""
|
"""SetColAttr(self, int col, GridCellAttr attr)"""
|
||||||
return _grid.Grid_SetColAttr(*args, **kwargs)
|
return _grid.Grid_SetColAttr(*args, **kwargs)
|
||||||
|
|
||||||
|
def GetOrCreateCellAttr(*args, **kwargs):
|
||||||
|
"""GetOrCreateCellAttr(self, int row, int col) -> GridCellAttr"""
|
||||||
|
return _grid.Grid_GetOrCreateCellAttr(*args, **kwargs)
|
||||||
|
|
||||||
def SetColFormatBool(*args, **kwargs):
|
def SetColFormatBool(*args, **kwargs):
|
||||||
"""SetColFormatBool(self, int col)"""
|
"""SetColFormatBool(self, int col)"""
|
||||||
return _grid.Grid_SetColFormatBool(*args, **kwargs)
|
return _grid.Grid_SetColFormatBool(*args, **kwargs)
|
||||||
|
@@ -11438,6 +11438,42 @@ static PyObject *_wrap_Grid_SetColAttr(PyObject *self, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_Grid_GetOrCreateCellAttr(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
wxGrid *arg1 = (wxGrid *) 0 ;
|
||||||
|
int arg2 ;
|
||||||
|
int arg3 ;
|
||||||
|
wxGridCellAttr *result;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
PyObject * obj2 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "row",(char *) "col", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:Grid_GetOrCreateCellAttr",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||||
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxGrid,
|
||||||
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
|
arg2 = (int) SWIG_AsInt(obj1);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
arg3 = (int) SWIG_AsInt(obj2);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = (wxGridCellAttr *)((wxGrid const *)arg1)->GetOrCreateCellAttr(arg2,arg3);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
resultobj = wxPyMake_wxGridCellAttr(result, 0);
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Grid_SetColFormatBool(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_Grid_SetColFormatBool(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxGrid *arg1 = (wxGrid *) 0 ;
|
wxGrid *arg1 = (wxGrid *) 0 ;
|
||||||
@@ -16043,6 +16079,7 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"Grid_SetAttr", (PyCFunction) _wrap_Grid_SetAttr, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetAttr", (PyCFunction) _wrap_Grid_SetAttr, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Grid_SetRowAttr", (PyCFunction) _wrap_Grid_SetRowAttr, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetRowAttr", (PyCFunction) _wrap_Grid_SetRowAttr, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Grid_SetColAttr", (PyCFunction) _wrap_Grid_SetColAttr, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetColAttr", (PyCFunction) _wrap_Grid_SetColAttr, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"Grid_GetOrCreateCellAttr", (PyCFunction) _wrap_Grid_GetOrCreateCellAttr, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Grid_SetColFormatBool", (PyCFunction) _wrap_Grid_SetColFormatBool, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetColFormatBool", (PyCFunction) _wrap_Grid_SetColFormatBool, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Grid_SetColFormatNumber", (PyCFunction) _wrap_Grid_SetColFormatNumber, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetColFormatNumber", (PyCFunction) _wrap_Grid_SetColFormatNumber, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Grid_SetColFormatFloat", (PyCFunction) _wrap_Grid_SetColFormatFloat, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Grid_SetColFormatFloat", (PyCFunction) _wrap_Grid_SetColFormatFloat, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
Reference in New Issue
Block a user