Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
d10dbdc1
Commit
d10dbdc1
authored
Jun 08, 2017
by
Martin Schultz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added signal crossPlattformConnectQueued to PluginConnecctionInterface
parent
a2e93c36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
BasePlugin/PluginConnectionInterface.hh
BasePlugin/PluginConnectionInterface.hh
+11
-0
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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