Mercurial > hg > octave-nkf
view examples/myfeval.c @ 18810:41489b96ebca gui-release
GUI: allow drag and drop to win32 GUI command window (Bug #41443)
* libgui/qterminal/libqterminal/win32/QWinTerminalImpl.h, libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp
(QWinTerminalImpl::QWinTerminalImpl): set Accept Drops.
(QWinTerminalImpl::dragEnterEvent): New function.
(QWinTerminalImpl::dropEvent): New function.
author | John Donoghue <john.donoghue@ieee.org> |
---|---|
date | Thu, 17 Apr 2014 09:01:03 -0400 |
parents | d1e16bdb3958 |
children |
line wrap: on
line source
#include "mex.h" void mexFunction (int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { char *str; mexPrintf ("Starting file myfeval.mex\n"); mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs); if (nrhs < 1 || ! mxIsString (prhs[0])) mexErrMsgTxt ("ARG1 must be a function name"); str = mxArrayToString (prhs[0]); mexPrintf ("I'm going to call the function %s\n", str); if (nlhs == 0) nlhs = 1; // Octave's automatic 'ans' variable /* Cast prhs just to get rid of 'const' qualifier and stop compile warning */ mexCallMATLAB (nlhs, plhs, nrhs-1, (mxArray**)prhs+1, str); mxFree (str); }