1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/*
A* -------------------------------------------------------------------
B* This file contains source code for the PyMOL computer program
C* copyright 1998-2000 by Warren Lyford Delano of DeLano Scientific.
D* -------------------------------------------------------------------
E* It is unlawful to modify or remove this copyright notice.
F* -------------------------------------------------------------------
G* Please see the accompanying LICENSE file for further information.
H* -------------------------------------------------------------------
I* Additional authors of this source file include:
-*
-*
-*
Z* -------------------------------------------------------------------
*/
#include"os_python.h"
#include"os_predef.h"
#include"os_std.h"
#include "Menu.h"
#include "PopUp.h"
#include "P.h"
#include "Ortho.h"
void MenuActivate(PyMOLGlobals * G, int x, int y, int last_x, int last_y, int passive,
char *name, char *sele)
{
#ifndef _PYMOL_NOPY
PyObject *list;
PBlock(G);
list = PyObject_CallMethod(P_menu, name, "Os", G->P_inst->cmd, sele);
if(PyErr_Occurred())
PyErr_Print();
if(list) {
PopUpNew(G, x, y, last_x, last_y, passive, list, NULL);
Py_DECREF(list);
}
PUnblock(G);
#endif
}
void MenuActivate3fv(PyMOLGlobals * G, int x, int y, int last_x, int last_y, int passive,
char *name, float *xyz)
{
#ifndef _PYMOL_NOPY
PyObject *list;
PBlock(G);
list =
PyObject_CallMethod(P_menu, name, "O(fff)", G->P_inst->cmd, xyz[0], xyz[1], xyz[2]);
if(PyErr_Occurred())
PyErr_Print();
if(list) {
PopUpNew(G, x, y, last_x, last_y, passive, list, NULL);
Py_DECREF(list);
}
PUnblock(G);
#endif
}
void MenuActivate2Arg(PyMOLGlobals * G, int x, int y, int last_x, int last_y, int passive,
char *name, char *sele1, char *sele2)
{
#ifndef _PYMOL_NOPY
PyObject *list;
PBlock(G);
list = PyObject_CallMethod(P_menu, name, "Oss", G->P_inst->cmd, sele1, sele2);
if(PyErr_Occurred())
PyErr_Print();
if(list) {
PopUpNew(G, x, y, last_x, last_y, passive, list, NULL);
Py_DECREF(list);
}
PUnblock(G);
#endif
}
void MenuActivate1Arg(PyMOLGlobals * G, int x, int y, int last_x, int last_y, int passive,
char *name, char *arg1)
{
#ifndef _PYMOL_NOPY
PyObject *list;
PBlock(G);
list = PyObject_CallMethod(P_menu, name, "Os", G->P_inst->cmd, arg1);
if(PyErr_Occurred())
PyErr_Print();
if(list) {
PopUpNew(G, x, y, last_x, last_y, passive, list, NULL);
Py_DECREF(list);
}
PUnblock(G);
#endif
}
void MenuActivate0Arg(PyMOLGlobals * G, int x, int y, int last_x, int last_y, int passive,
char *name)
{
#ifndef _PYMOL_NOPY
PyObject *list;
PBlock(G);
list = PyObject_CallMethod(P_menu, name, "O", G->P_inst->cmd);
if(PyErr_Occurred())
PyErr_Print();
if(list) {
PopUpNew(G, x, y, last_x, last_y, passive, list, NULL);
Py_DECREF(list);
}
PUnblock(G);
#endif
}
|