Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
d10dbdc1
Commit
d10dbdc1
authored
Jun 08, 2017
by
Martin Schultz
Browse files
added signal crossPlattformConnectQueued to PluginConnecctionInterface
parent
a2e93c36
Changes
1
Hide whitespace changes
Inline
Side-by-side
BasePlugin/PluginConnectionInterface.hh
View file @
d10dbdc1
...
...
@@ -88,6 +88,17 @@ class PluginConnectionInterface {
*/
virtual
void
crossPluginConnect
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
{};
/** \brief connect signals and slots of plugins across plugins using Qt::QueuedConnection
*
* Connect a signal of one plugin to another plugin by its scripting name.
* _pluginName1 is the scripting name of the plugin containing the signal ( Use script editor to check that name)
* _signal is the signal name. Use it like with regular connect ( <tt>SIGNAL(...)</tt> ) macro
* _pluginName2 is the scripting name of the plugin containing a slot
* _slot is the slot name. Use it like with regular connect ( <tt>SLOT(...)</tt> ) macro
*
*/
virtual
void
crossPluginConnectQueued
(
QString
/*_pluginName1*/
,
const
char
*
/*_signal*/
,
QString
/*_pluginName2*/
,
const
char
*
/*_slot*/
)
{};
public
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment