From 9026ea4981dd69959341b3f646ed26a7fd9b9f5b Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 13 Mar 2005 04:56:40 +0000 Subject: fixes for attribute editor (to deal with large dialogs) fix for gcc strangeness eliminated ChannelsIn/ChannelsOut moved ShouldExit to flext namespace new naming for some virtual callback functions fix for flext_dsp @ Max svn path=/trunk/; revision=2621 --- externals/grill/flext/source/flclass.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'externals/grill/flext/source/flclass.h') diff --git a/externals/grill/flext/source/flclass.h b/externals/grill/flext/source/flclass.h index b32f49fa..4fcf64a9 100644 --- a/externals/grill/flext/source/flclass.h +++ b/externals/grill/flext/source/flclass.h @@ -86,23 +86,22 @@ public: @{ */ - //! called on "help" message: should post some text - virtual void m_help(); - //! called on patcher load (not on mere object creation!) + virtual void CbLoadbang(); virtual void m_loadbang(); //! called on (double-)click into object box - virtual void m_click(); + virtual void CbClick(); /*! \brief Called for every incoming message. All method handling is done in there \return True if a handler was found and called */ - virtual bool m_methodmain(int inlet,const t_symbol *s,int argc,const t_atom *argv); + virtual bool CbMethodHandler(int inlet,const t_symbol *s,int argc,const t_atom *argv); - /*! \brief Called for every unhandled message (by m_methodmain) + /*! \brief Called for every unhandled message (by CbMethodHandler) */ + virtual bool CbMethodResort(int inlet,const t_symbol *s,int argc,const t_atom *argv); virtual bool m_method_(int inlet,const t_symbol *s,int argc,const t_atom *argv); //! @} FLEXT_C_VIRTUAL @@ -501,10 +500,6 @@ public: //! Terminate all threads of this object bool StopThreads(); - - //! Check if current thread should terminate - bool ShouldExit() const; - #endif // FLEXT_THREADS //! @} FLEXT_C_THREAD -- cgit v1.2.1