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
PIM
PIM Messagelib
Commits
d0fdd28b
Commit
d0fdd28b
authored
Jul 11, 2021
by
Laurent Montel
Browse files
Allow to get replyTo info
parent
6b8be715
Pipeline
#69889
passed with stage
in 40 minutes and 48 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagecomposer/src/composer/composerviewinterface.cpp
View file @
d0fdd28b
...
...
@@ -59,6 +59,14 @@ QString ComposerViewInterface::from() const
return
{};
}
QString
ComposerViewInterface
::
replyTo
()
const
{
if
(
mComposerView
)
{
return
mComposerView
->
replyTo
();
}
return
{};
}
MessageComposer
::
ComposerAttachmentInterface
ComposerViewInterface
::
attachments
()
const
{
MessageComposer
::
ComposerAttachmentInterface
attachmentInterface
;
...
...
messagecomposer/src/composer/composerviewinterface.h
View file @
d0fdd28b
...
...
@@ -27,6 +27,7 @@ public:
Q_REQUIRED_RESULT
QString
cc
()
const
;
Q_REQUIRED_RESULT
QString
bcc
()
const
;
Q_REQUIRED_RESULT
QString
from
()
const
;
Q_REQUIRED_RESULT
QString
replyTo
()
const
;
Q_REQUIRED_RESULT
MessageComposer
::
ComposerAttachmentInterface
attachments
()
const
;
...
...
messagecomposer/src/plugineditor/plugincomposerinterface.cpp
View file @
d0fdd28b
...
...
@@ -32,6 +32,11 @@ QString PluginComposerInterface::subject() const
return
mComposerViewInterface
->
subject
();
}
QString
PluginComposerInterface
::
replyTo
()
const
{
return
mComposerViewInterface
->
replyTo
();
}
QString
PluginComposerInterface
::
to
()
const
{
return
mComposerViewInterface
->
to
();
...
...
messagecomposer/src/plugineditor/plugincomposerinterface.h
View file @
d0fdd28b
...
...
@@ -24,6 +24,7 @@ public:
~
PluginComposerInterface
();
void
setComposerViewBase
(
ComposerViewBase
*
composerViewBase
);
Q_REQUIRED_RESULT
QString
replyTo
()
const
;
Q_REQUIRED_RESULT
QString
subject
()
const
;
Q_REQUIRED_RESULT
QString
to
()
const
;
Q_REQUIRED_RESULT
QString
cc
()
const
;
...
...
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