xrubythreadconnector.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef XRUBYTHREADCONNECTOR_H_
15 #define XRUBYTHREADCONNECTOR_H_
16 
17 #include "xnodeconnector.h"
18 
19 class XRubyThread;
20 class XRuby;
21 class Ui_FrmRubyThread;
23 
25  Q_OBJECT
26 public:
27  XRubyThreadConnector(const shared_ptr<XRubyThread> &rbthread, FrmRubyThread *form,
28  const shared_ptr<XRuby> &rbsupport);
29  virtual ~XRubyThreadConnector();
30 
31  const shared_ptr<XTouchableNode> &resume() const {return m_resume;}
32  const shared_ptr<XTouchableNode> &kill() const {return m_kill;}
33 private:
34  const shared_ptr<XTouchableNode> m_resume;
35  const shared_ptr<XTouchableNode> m_kill;
36  shared_ptr<XListener> m_lsnOnResumeTouched;
37  shared_ptr<XListener> m_lsnOnKillTouched;
38  shared_ptr<XListener> m_lsnOnDefout;
39  shared_ptr<XListener> m_lsnOnStatusChanged;
40  void onResumeTouched(const Snapshot &shot, XTouchableNode *node);
41  void onKillTouched(const Snapshot &shot, XTouchableNode *node);
42  void onDefout(const Snapshot &shot, const shared_ptr<XString> &str);
43  void onStatusChanged(const Snapshot &shot, XValueNodeBase *node);
44  FrmRubyThread *const m_pForm;
45  const shared_ptr<XRubyThread> m_rubyThread;
46  const shared_ptr<XRuby> m_rubySupport;
47  xqcon_ptr m_conFilename, m_conStatus, m_conResume, m_conKill, m_conLineinput;
48 };
49 
50 #endif /*XRUBYTHREADCONNECTOR_H_*/

Generated for KAME4 by  doxygen 1.8.3