Home
last modified time | relevance | path

Searched refs:helper_uuid (Results 1 – 24 of 24) sorted by relevance

/dports/textproc/scim/scim-1.4.9/src/
H A Dscim_filter.cpp232 void process_helper_event (const String &helper_uuid, const Transaction &trans) { in process_helper_event() argument
233 if (!m_orig.null ()) m_orig->process_helper_event (helper_uuid, trans); in process_helper_event()
302 m_parent->filter_start_helper (helper_uuid); in slot_start_helper()
306 m_parent->filter_stop_helper (helper_uuid); in slot_stop_helper()
310 m_parent->filter_send_helper_event (helper_uuid, trans); in slot_send_helper_event()
403 m_impl->process_helper_event (helper_uuid, trans); in process_helper_event()
505 FilterInstanceBase::filter_start_helper (const String &helper_uuid) in filter_start_helper() argument
507 start_helper (helper_uuid); in filter_start_helper()
511 FilterInstanceBase::filter_stop_helper (const String &helper_uuid) in filter_stop_helper() argument
513 stop_helper (helper_uuid); in filter_stop_helper()
[all …]
H A Dscim_panel_client.cpp213 String helper_uuid; in filter_event() local
462 void start_helper (int icid, const String &helper_uuid) in start_helper() argument
466 m_send_trans.put_data (helper_uuid); in start_helper()
469 void stop_helper (int icid, const String &helper_uuid) in stop_helper() argument
473 m_send_trans.put_data (helper_uuid); in stop_helper()
480 m_send_trans.put_data (helper_uuid); in send_helper_event()
729 PanelClient::start_helper (int icid, const String &helper_uuid) in start_helper() argument
731 m_impl->start_helper (icid, helper_uuid); in start_helper()
734 PanelClient::stop_helper (int icid, const String &helper_uuid) in stop_helper() argument
736 m_impl->stop_helper (icid, helper_uuid); in stop_helper()
[all …]
H A Dscim_frontend.cpp122 void slot_start_helper (IMEngineInstanceBase * si, const String & helper_uuid) { in slot_start_helper() argument
123 m_frontend->start_helper (si->get_id (), helper_uuid); in slot_start_helper()
126 void slot_stop_helper (IMEngineInstanceBase * si, const String & helper_uuid) { in slot_stop_helper() argument
127 m_frontend->stop_helper (si->get_id (), helper_uuid); in slot_stop_helper()
130 …void slot_send_helper_event (IMEngineInstanceBase * si, const String & helper_uuid, const Tran… in slot_send_helper_event() argument
131 m_frontend->send_helper_event (si->get_id (), helper_uuid, trans); in slot_send_helper_event()
571 FrontEndBase::process_helper_event (int id, const String & helper_uuid, const Transaction & trans) … in process_helper_event() argument
575 if (!si.null ()) si->process_helper_event (helper_uuid, trans); in process_helper_event()
647 FrontEndBase::start_helper (int id, const String &helper_uuid) in start_helper() argument
651 FrontEndBase::stop_helper (int id, const String &helper_uuid) in stop_helper() argument
[all …]
H A Dscim_filter.h347 virtual void process_helper_event (const String &helper_uuid, const Transaction &trans);
380 virtual void filter_start_helper (const String &helper_uuid);
381 virtual void filter_stop_helper (const String &helper_uuid);
382 virtual void filter_send_helper_event (const String &helper_uuid, const Transaction &trans);
H A Dscim_frontend.h390 void process_helper_event (int id, const String &helper_uuid, const Transaction &trans) const;
519 virtual void start_helper (int id, const String &helper_uuid);
527 virtual void stop_helper (int id, const String &helper_uuid);
536 … virtual void send_helper_event (int id, const String &helper_uuid, const Transaction &trans);
H A Dscim_panel_client.h183 void start_helper (int icid, const String &helper_uuid);
184 void stop_helper (int icid, const String &helper_uuid);
185 void send_helper_event (int icid, const String &helper_uuid, const Transaction &trans);
H A Dscim_imengine.cpp587 IMEngineInstanceBase::start_helper (const String &helper_uuid) in start_helper() argument
589 m_impl->m_signal_start_helper (this, helper_uuid); in start_helper()
593 IMEngineInstanceBase::stop_helper (const String &helper_uuid) in stop_helper() argument
595 m_impl->m_signal_stop_helper (this, helper_uuid); in stop_helper()
599 IMEngineInstanceBase::send_helper_event (const String &helper_uuid, const Transaction &trans) in send_helper_event() argument
601 m_impl->m_signal_send_helper_event (this, helper_uuid, trans); in send_helper_event()
H A Dscim_imengine.h575 virtual void process_helper_event (const String &helper_uuid, const Transaction &trans);
735 void start_helper (const String &helper_uuid);
742 void stop_helper (const String &helper_uuid);
750 void send_helper_event (const String &helper_uuid, const Transaction &trans);
/dports/textproc/scim/scim-1.4.9/modules/IMEngine/
H A Dscim_socket_imengine.cpp796 trans.put_data (helper_uuid); in process_helper_event()
980 String helper_uuid; in do_transaction() local
981 if (trans.get_data (helper_uuid)) { in do_transaction()
983 start_helper (helper_uuid); in do_transaction()
989 String helper_uuid; in do_transaction() local
990 if (trans.get_data (helper_uuid)) { in do_transaction()
991 SCIM_DEBUG_IMENGINE(3) << " stop_helper (" << helper_uuid << ")\n"; in do_transaction()
992 stop_helper (helper_uuid); in do_transaction()
998 String helper_uuid; in do_transaction() local
1000 if (trans.get_data (helper_uuid) && trans.get_data (temp_trans)) { in do_transaction()
[all …]
H A Dscim_socket_imengine.h91 virtual void process_helper_event (const String &helper_uuid, const Transaction &trans);
/dports/textproc/scim/scim-1.4.9/modules/FrontEnd/
H A Dscim_socket_frontend.h114 virtual void start_helper (int id, const String &helper_uuid);
115 virtual void stop_helper (int id, const String &helper_uuid);
116 …virtual void send_helper_event (int id, const String &helper_uuid, const Transaction &trans);
H A Dscim_x11_frontend.h110 virtual void start_helper (int siid, const String &helper_uuid);
111 virtual void stop_helper (int siid, const String &helper_uuid);
112 …virtual void send_helper_event (int siid, const String &helper_uuid, const Transaction &tran…
194 …ss_helper_event (int context, const String &target_uuid, const String &helper_uuid, const Transact…
H A Dscim_socket_frontend.cpp245 SocketFrontEnd::start_helper (int id, const String &helper_uuid) in start_helper() argument
247 SCIM_DEBUG_FRONTEND (2) << "start_helper (" << helper_uuid << ")\n"; in start_helper()
250 m_send_trans.put_data (helper_uuid); in start_helper()
255 SocketFrontEnd::stop_helper (int id, const String &helper_uuid) in stop_helper() argument
257 SCIM_DEBUG_FRONTEND (2) << "stop_helper (" << helper_uuid << ")\n"; in stop_helper()
261 m_send_trans.put_data (helper_uuid); in stop_helper()
266 SocketFrontEnd::send_helper_event (int id, const String &helper_uuid, const Transaction &trans) in send_helper_event() argument
270 m_send_trans.put_data (helper_uuid); in send_helper_event()
1078 String helper_uuid; in socket_process_helper_event() local
1084 m_receive_trans.get_data (helper_uuid) && in socket_process_helper_event()
[all …]
H A Dscim_x11_frontend.cpp334 X11FrontEnd::start_helper (int siid, const String &helper_uuid) in start_helper() argument
336 SCIM_DEBUG_FRONTEND(2) << " Start helper, siid=" << siid << " Helper=" << helper_uuid << "\n"; in start_helper()
341 m_panel_client.start_helper (ic->icid, helper_uuid); in start_helper()
345 X11FrontEnd::stop_helper (int siid, const String &helper_uuid) in stop_helper() argument
347 SCIM_DEBUG_FRONTEND(2) << " Stop helper, siid=" << siid << " Helper=" << helper_uuid << "\n"; in stop_helper()
352 m_panel_client.stop_helper (ic->icid, helper_uuid); in stop_helper()
356 X11FrontEnd::send_helper_event (int siid, const String &helper_uuid, const Transaction &trans) in send_helper_event() argument
358 …SCIM_DEBUG_FRONTEND(2) << " Send helper event, siid=" << siid << " Helper=" << helper_uuid << "\n"; in send_helper_event()
363 m_panel_client.send_helper_event (ic->icid, helper_uuid, trans); in send_helper_event()
1710 …ss_helper_event (int context, const String &target_uuid, const String &helper_uuid, const Transact… in panel_slot_process_helper_event() argument
[all …]
/dports/textproc/scim/scim-1.4.9/tests/
H A Dscim_test_imengine.cpp204 TestInstance::process_helper_event (const String &helper_uuid, const Transaction &trans) in process_helper_event() argument
210 if (helper_uuid == TEST_HELPER) { in process_helper_event()
H A Dscim_test_imengine.h68 virtual void process_helper_event (const String &helper_uuid, const Transaction &trans);
/dports/textproc/scim/scim-1.4.9/extras/gtk2_immodule/
H A Dgtkimcontextscim.cpp152 const String &helper_uuid,
240 const String &helper_uuid);
244 const String &helper_uuid,
1101 ic->impl->si->process_helper_event (helper_uuid, trans); in panel_slot_process_helper_event()
2231 const String &helper_uuid) in slot_start_helper() argument
2235 SCIM_DEBUG_FRONTEND(1) << "slot_start_helper helper= " << helper_uuid << " context=" in slot_start_helper()
2240 _panel_client.start_helper (ic->id, helper_uuid); in slot_start_helper()
2245 const String &helper_uuid) in slot_stop_helper() argument
2252 _panel_client.stop_helper (ic->id, helper_uuid); in slot_stop_helper()
2257 const String &helper_uuid, in slot_send_helper_event() argument
[all …]
/dports/devel/efl/efl-1.25.1/src/modules/ecore_imf/scim/
H A Dscim_imcontext.cpp78 const String &helper_uuid,
164 const String &helper_uuid,
1439 ic->impl->si->process_helper_event(helper_uuid, trans); in panel_slot_process_helper_event()
2675 const String &helper_uuid) in slot_start_helper() argument
2681 SCIM_DEBUG_FRONTEND(1) << __func__ << " helper= " << helper_uuid << " context=" in slot_start_helper()
2685 _panel_client.start_helper(ic->id, helper_uuid); in slot_start_helper()
2690 const String &helper_uuid) in slot_stop_helper() argument
2697 _panel_client.stop_helper(ic->id, helper_uuid); in slot_stop_helper()
2702 const String &helper_uuid, in slot_send_helper_event() argument
2709 SCIM_DEBUG_FRONTEND(1) << __func__ << " helper= " << helper_uuid << " context=" in slot_send_helper_event()
[all …]
/dports/japanese/scim-anthy/scim-anthy-1.2.7/src/
H A Dscim_anthy_imengine.h108 virtual void process_helper_event (const String &helper_uuid,
H A Dscim_anthy_imengine.cpp2172 AnthyInstance::process_helper_event (const String &helper_uuid, in process_helper_event() argument
2178 if (helper_uuid != SCIM_ANTHY_HELPER_UUID) in process_helper_event()
/dports/x11/plasma5-plasma-desktop/plasma-desktop-5.23.5/applets/kimpanel/backend/scim/
H A Dmain.cpp352 QString helper_uuid = key; in TriggerProperty() local
353 helper_uuid.remove(0, helper_prop_prefix.size()); in TriggerProperty()
354 SCIM_DEBUG_MAIN(1) << "about_to_start_helper" << qPrintable(helper_uuid) << "\n"; in TriggerProperty()
355 _panel_agent->start_helper(helper_uuid.toUtf8().constData()); in TriggerProperty()
/dports/japanese/scim-honoka/honoka-0.9.1/src/
H A Dhonoka_imengine.h114 virtual void process_helper_event (const String &helper_uuid, const Transaction &trans);
H A Dhonoka_imengine.cpp818 void HonokaInstance::process_helper_event (const String &helper_uuid, const Transaction &trans) in process_helper_event() argument
821 if (helper_uuid == HONOKA_TIMER_UUID) { in process_helper_event()
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_scene_fbx/
H A Dimport_fbx.py2776 for helper_uuid, helper_node in fbx_helper_nodes.items():
2779 for cluster_uuid, cluster_link in fbx_connection_map.get(helper_uuid, ()):