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
P
PIM Messagelib
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
PIM Messagelib
Commits
afe34a49
Commit
afe34a49
authored
Mar 21, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix export + header
parent
3c3d3a04
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
27 additions
and
27 deletions
+27
-27
mimetreeparser/src/htmlwriter/filehtmlwriter.h
mimetreeparser/src/htmlwriter/filehtmlwriter.h
+2
-2
mimetreeparser/src/htmlwriter/queuehtmlwriter.h
mimetreeparser/src/htmlwriter/queuehtmlwriter.h
+1
-1
mimetreeparser/src/interfaces/bodypartformatter.h
mimetreeparser/src/interfaces/bodypartformatter.h
+3
-3
mimetreeparser/src/objecttreesourceif.h
mimetreeparser/src/objecttreesourceif.h
+2
-2
mimetreeparser/src/utils/iconnamecache.h
mimetreeparser/src/utils/iconnamecache.h
+2
-2
mimetreeparser/src/utils/mimetype.h
mimetreeparser/src/utils/mimetype.h
+3
-3
mimetreeparser/src/viewer/attachmentstrategy.h
mimetreeparser/src/viewer/attachmentstrategy.h
+2
-2
mimetreeparser/src/viewer/bodypartformatterbasefactory.h
mimetreeparser/src/viewer/bodypartformatterbasefactory.h
+2
-2
mimetreeparser/src/viewer/csshelperbase.h
mimetreeparser/src/viewer/csshelperbase.h
+2
-2
mimetreeparser/src/viewer/nodehelper.h
mimetreeparser/src/viewer/nodehelper.h
+2
-2
mimetreeparser/src/viewer/objecttreeparser.h
mimetreeparser/src/viewer/objecttreeparser.h
+3
-3
mimetreeparser/src/viewer/partmetadata.h
mimetreeparser/src/viewer/partmetadata.h
+1
-1
mimetreeparser/src/viewer/partnodebodypart.h
mimetreeparser/src/viewer/partnodebodypart.h
+2
-2
No files found.
mimetreeparser/src/htmlwriter/filehtmlwriter.h
View file @
afe34a49
...
...
@@ -32,7 +32,7 @@
#ifndef __MESSAGEVIEWER_FILEHTMLWRITER_H__
#define __MESSAGEVIEWER_FILEHTMLWRITER_H__
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/htmlwriter.h"
#include <QFile>
...
...
@@ -43,7 +43,7 @@ class QString;
namespace
MessageViewer
{
class
M
ESSAGEVIEW
ER_EXPORT
FileHtmlWriter
:
public
HtmlWriter
class
M
IMETREEPARS
ER_EXPORT
FileHtmlWriter
:
public
HtmlWriter
{
public:
explicit
FileHtmlWriter
(
const
QString
&
filename
);
...
...
mimetreeparser/src/htmlwriter/queuehtmlwriter.h
View file @
afe34a49
...
...
@@ -20,7 +20,7 @@
#ifndef __MESSAGEVIEWER_QUEUEHTMLWRITER_H__
#define __MESSAGEVIEWER_QUEUEHTMLWRITER_H__
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/htmlwriter.h"
#include<QVector>
...
...
mimetreeparser/src/interfaces/bodypartformatter.h
View file @
afe34a49
...
...
@@ -34,7 +34,7 @@
#ifndef __KMAIL_INTERFACE_BODYPARTFORMATTER_H__
#define __KMAIL_INTERFACE_BODYPARTFORMATTER_H__
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include <QObject>
#include <QSharedPointer>
...
...
@@ -51,7 +51,7 @@ namespace Interface
class
BodyPartURLHandler
;
class
BodyPart
;
class
M
ESSAGEVIEW
ER_EXPORT
MessagePart
class
M
IMETREEPARS
ER_EXPORT
MessagePart
{
public:
typedef
QSharedPointer
<
MessagePart
>
Ptr
;
...
...
@@ -71,7 +71,7 @@ private:
friend
class
BodyPartFormatter
;
};
class
M
ESSAGEVIEW
ER_EXPORT
BodyPartFormatter
class
M
IMETREEPARS
ER_EXPORT
BodyPartFormatter
{
public:
virtual
~
BodyPartFormatter
()
{}
...
...
mimetreeparser/src/objecttreesourceif.h
View file @
afe34a49
...
...
@@ -20,7 +20,7 @@
#ifndef MAILVIEWER_OBJECTTREESOURCE_IF_H
#define MAILVIEWER_OBJECTTREESOURCE_IF_H
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/mimetype.h"
#include <KMime/Message>
...
...
@@ -43,7 +43,7 @@ namespace MessageViewer
* Interface for object tree sources.
* @author Andras Mantia <amantia@kdab.net>
*/
class
M
ESSAGEVIEW
ER_EXPORT
ObjectTreeSourceIf
class
M
IMETREEPARS
ER_EXPORT
ObjectTreeSourceIf
{
public:
...
...
mimetreeparser/src/utils/iconnamecache.h
View file @
afe34a49
...
...
@@ -21,7 +21,7 @@
#include <QMap>
#include <QString>
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
namespace
MessageViewer
{
...
...
@@ -33,7 +33,7 @@ namespace MessageViewer
*
* The IconNameCache caches the result of iconPath() in a map and solves the slowness.
*/
class
M
ESSAGEVIEW
ER_EXPORT
IconNameCache
class
M
IMETREEPARS
ER_EXPORT
IconNameCache
{
public:
...
...
mimetreeparser/src/utils/mimetype.h
View file @
afe34a49
...
...
@@ -20,7 +20,7 @@
#ifndef MESSAGEVIEWER_UTIL_MIMETYPE_H
#define MESSAGEVIEWER_UTIL_MIMETYPE_H
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include <QString>
class
QMimeType
;
...
...
@@ -49,7 +49,7 @@ enum HtmlMode {
/**
* Search mimetype from filename when mimetype is empty or application/octet-stream
**/
QMimeType
M
ESSAGEVIEW
ER_EXPORT
mimetype
(
const
QString
&
name
);
QMimeType
M
IMETREEPARS
ER_EXPORT
mimetype
(
const
QString
&
name
);
/**
* Finds the filename of an icon based on the given mimetype or filenames.
...
...
@@ -67,7 +67,7 @@ QMimeType MESSAGEVIEWER_EXPORT mimetype(const QString &name);
* Example: "test.zip"
* @return the full file name of the icon file
*/
QString
M
ESSAGEVIEW
ER_EXPORT
fileNameForMimetype
(
const
QString
&
mimeType
,
int
iconSize
,
QString
M
IMETREEPARS
ER_EXPORT
fileNameForMimetype
(
const
QString
&
mimeType
,
int
iconSize
,
const
QString
&
fallbackFileName1
=
QString
(),
const
QString
&
fallbackFileName2
=
QString
());
}
...
...
mimetreeparser/src/viewer/attachmentstrategy.h
View file @
afe34a49
...
...
@@ -34,7 +34,7 @@
#ifndef __MESSAGEVIEWER_ATTACHMENTSTRATEGY_H__
#define __MESSAGEVIEWER_ATTACHMENTSTRATEGY_H__
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
class
QString
;
namespace
KMime
...
...
@@ -45,7 +45,7 @@ class Content;
namespace
MessageViewer
{
class
M
ESSAGEVIEW
ER_EXPORT
AttachmentStrategy
class
M
IMETREEPARS
ER_EXPORT
AttachmentStrategy
{
protected:
AttachmentStrategy
();
...
...
mimetreeparser/src/viewer/bodypartformatterbasefactory.h
View file @
afe34a49
...
...
@@ -34,7 +34,7 @@
#ifndef __MESSAGEVIEWER_BODYPARTFORMATTERBASEFACTORY_H__
#define __MESSAGEVIEWER_BODYPARTFORMATTERBASEFACTORY_H__
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include <map>
#include <QByteArray>
...
...
@@ -61,7 +61,7 @@ typedef std::map<const char *, MessageViewer::SubtypeRegistry, MessageViewer::lt
class
BodyPartFormatterBaseFactoryPrivate
;
class
M
ESSAGEVIEW
ER_EXPORT
BodyPartFormatterBaseFactory
class
M
IMETREEPARS
ER_EXPORT
BodyPartFormatterBaseFactory
{
public:
BodyPartFormatterBaseFactory
();
...
...
mimetreeparser/src/viewer/csshelperbase.h
View file @
afe34a49
...
...
@@ -32,7 +32,7 @@
#ifndef MESSAGEVIEWER_CSSHELPERBASE_H
#define MESSAGEVIEWER_CSSHELPERBASE_H
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include <QColor>
#include <QFont>
...
...
@@ -42,7 +42,7 @@ class QPaintDevice;
namespace
MessageViewer
{
class
M
ESSAGEVIEW
ER_EXPORT
CSSHelperBase
class
M
IMETREEPARS
ER_EXPORT
CSSHelperBase
{
public:
/** Construct a CSSHelper object and set its font and color settings to
...
...
mimetreeparser/src/viewer/nodehelper.h
View file @
afe34a49
...
...
@@ -19,7 +19,7 @@
#ifndef _MESSAGEVIEWER_NODEHELPER_H
#define _MESSAGEVIEWER_NODEHELPER_H
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/partmetadata.h"
#include "mimetreeparser/enums.h"
...
...
@@ -53,7 +53,7 @@ namespace MessageViewer
/**
* @author Andras Mantia <andras@kdab.net>
*/
class
M
ESSAGEVIEW
ER_EXPORT
NodeHelper
:
public
QObject
class
M
IMETREEPARS
ER_EXPORT
NodeHelper
:
public
QObject
{
Q_OBJECT
public:
...
...
mimetreeparser/src/viewer/objecttreeparser.h
View file @
afe34a49
...
...
@@ -34,7 +34,7 @@
#ifndef _MESSAGEVIEWER_OBJECTTREEPARSER_H_
#define _MESSAGEVIEWER_OBJECTTREEPARSER_H_
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/nodehelper.h"
#include "objecttreesourceif.h"
...
...
@@ -70,7 +70,7 @@ class MimeMessagePart;
typedef
QSharedPointer
<
MessagePart
>
MessagePartPtr
;
typedef
QSharedPointer
<
MimeMessagePart
>
MimeMessagePartPtr
;
class
M
ESSAGEVIEW
ER_EXPORT
ProcessResult
class
M
IMETREEPARS
ER_EXPORT
ProcessResult
{
public:
explicit
ProcessResult
(
NodeHelper
*
nodeHelper
,
KMMsgSignatureState
inlineSignatureState
=
KMMsgNotSigned
,
...
...
@@ -277,7 +277,7 @@ is used to mark an attachment in the body with a yellow border when the user cli
in the header. Finally, parseObjectTree() creates an anchor with the id 'att%1', which is used in
the Viewer to scroll to the attachment.
*/
class
M
ESSAGEVIEW
ER_EXPORT
ObjectTreeParser
class
M
IMETREEPARS
ER_EXPORT
ObjectTreeParser
{
class
CryptoProtocolSaver
;
/**
...
...
mimetreeparser/src/viewer/partmetadata.h
View file @
afe34a49
...
...
@@ -16,7 +16,7 @@
#ifndef _MESSAGEVIEWER_PARTMETADATA_H_
#define _MESSAGEVIEWER_PARTMETADATA_H_
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include <gpgme++/verificationresult.h>
#include <gpgme++/context.h>
...
...
mimetreeparser/src/viewer/partnodebodypart.h
View file @
afe34a49
...
...
@@ -34,7 +34,7 @@
#ifndef __MESSAGEVIEWER_PARTNODEBODYPART_H_
#define __MESSAGEVIEWER_PARTNODEBODYPART_H_
#include "m
essageview
er_export.h"
#include "m
imetreepars
er_export.h"
#include "mimetreeparser/bodypart.h"
class
QTextCodec
;
...
...
@@ -55,7 +55,7 @@ namespace MessageViewer
/**
@short an implementation of the BodyPart interface using KMime::Content's
*/
class
M
ESSAGEVIEW
ER_EXPORT
PartNodeBodyPart
:
public
Interface
::
BodyPart
class
M
IMETREEPARS
ER_EXPORT
PartNodeBodyPart
:
public
Interface
::
BodyPart
{
public:
explicit
PartNodeBodyPart
(
ObjectTreeParser
*
otp
,
ProcessResult
*
result
,
KMime
::
Content
*
topLevelContent
,
KMime
::
Content
*
content
,
...
...
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