mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-28 12:04:19 +01:00
76 lines
1.8 KiB
C++
76 lines
1.8 KiB
C++
|
#ifndef __PY_IDA_VIEW__
|
||
|
#define __PY_IDA_VIEW__
|
||
|
|
||
|
//<code(py_idaview)>
|
||
|
class py_idaview_t : public py_customidamemo_t
|
||
|
{
|
||
|
typedef py_customidamemo_t inherited;
|
||
|
|
||
|
public:
|
||
|
static bool Bind(PyObject *self);
|
||
|
};
|
||
|
|
||
|
//-------------------------------------------------------------------------
|
||
|
bool py_idaview_t::Bind(PyObject *self)
|
||
|
{
|
||
|
// Already a py_idaview_t associated to this object?
|
||
|
py_idaview_t *_this = view_extract_this<py_idaview_t>(self);
|
||
|
if ( _this != NULL )
|
||
|
return false;
|
||
|
|
||
|
qstring title;
|
||
|
if ( !PyW_GetStringAttr(self, S_M_TITLE, &title) )
|
||
|
return false;
|
||
|
|
||
|
// Get the IDAView associated to this TForm
|
||
|
TForm *tform = find_tform(title.c_str());
|
||
|
if ( tform == NULL )
|
||
|
return false;
|
||
|
TCustomControl *v = get_tform_idaview(tform);
|
||
|
if ( v == NULL )
|
||
|
return false;
|
||
|
|
||
|
// Get unique py_idaview_t associated to that tform
|
||
|
py_idaview_t *py_view;
|
||
|
TCustomControl *found_view;
|
||
|
if ( lookup_info.find_by_form(&found_view, (py_customidamemo_t**) &py_view, tform) )
|
||
|
{
|
||
|
// If we have a py_idaview_t for that form, ensure it has
|
||
|
// the expected view.
|
||
|
QASSERT(30451, found_view == v);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
py_view = new py_idaview_t();
|
||
|
lookup_info.add(tform, v, py_view);
|
||
|
}
|
||
|
|
||
|
// Finally, bind:
|
||
|
// py_idaview_t <=> IDAViewWrapper
|
||
|
// py_idaview_t => TCustomControl
|
||
|
bool ok = py_view->bind(self, v);
|
||
|
if ( ok )
|
||
|
{
|
||
|
ok = py_view->collect_pyobject_callbacks(self);
|
||
|
if ( !ok )
|
||
|
delete py_view;
|
||
|
}
|
||
|
return ok;
|
||
|
}
|
||
|
|
||
|
//-------------------------------------------------------------------------
|
||
|
bool pyidag_bind(PyObject *self)
|
||
|
{
|
||
|
return py_idaview_t::Bind(self);
|
||
|
}
|
||
|
|
||
|
//</code(py_idaview)>
|
||
|
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
//<inline(py_idaview)>
|
||
|
bool pyidag_bind(PyObject *self);
|
||
|
//</inline(py_idaview)>
|
||
|
|
||
|
#endif // __PY_IDA_VIEW__
|