Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
cf91bdd0
Commit
cf91bdd0
authored
Feb 06, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removing warning act 2
parent
c8a88bbb
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
199 additions
and
28 deletions
+199
-28
UBActionableWidget.cpp
src/customWidgets/UBActionableWidget.cpp
+1
-0
UBDraggableMedia.cpp
src/customWidgets/UBDraggableMedia.cpp
+1
-1
UBTBPageEditWidget.cpp
src/gui/UBTBPageEditWidget.cpp
+1
-0
ASCII85Decode.cpp
src/pdf-merger/ASCII85Decode.cpp
+11
-2
ASCII85Decode.h
src/pdf-merger/ASCII85Decode.h
+2
-2
ASCIIHexDecode.cpp
src/pdf-merger/ASCIIHexDecode.cpp
+12
-1
ASCIIHexDecode.h
src/pdf-merger/ASCIIHexDecode.h
+2
-2
CCITTFaxDecode.cpp
src/pdf-merger/CCITTFaxDecode.cpp
+36
-0
CCITTFaxDecode.h
src/pdf-merger/CCITTFaxDecode.h
+5
-3
ContentHandler.cpp
src/pdf-merger/ContentHandler.cpp
+1
-0
DCTDecode.cpp
src/pdf-merger/DCTDecode.cpp
+36
-0
DCTDecode.h
src/pdf-merger/DCTDecode.h
+4
-4
Document.cpp
src/pdf-merger/Document.cpp
+2
-1
FilterPredictor.cpp
src/pdf-merger/FilterPredictor.cpp
+7
-0
FilterPredictor.h
src/pdf-merger/FilterPredictor.h
+1
-1
JBIG2Decode.cpp
src/pdf-merger/JBIG2Decode.cpp
+36
-0
JBIG2Decode.h
src/pdf-merger/JBIG2Decode.h
+4
-3
LZWDecode.cpp
src/pdf-merger/LZWDecode.cpp
+5
-0
LZWDecode.h
src/pdf-merger/LZWDecode.h
+1
-1
PageElementHandler.cpp
src/pdf-merger/PageElementHandler.cpp
+7
-1
PageElementHandler.h
src/pdf-merger/PageElementHandler.h
+2
-2
RunLengthDecode.cpp
src/pdf-merger/RunLengthDecode.cpp
+13
-1
RunLengthDecode.h
src/pdf-merger/RunLengthDecode.h
+2
-2
pdfMerger.pri
src/pdf-merger/pdfMerger.pri
+7
-1
No files found.
src/customWidgets/UBActionableWidget.cpp
View file @
cf91bdd0
...
...
@@ -57,6 +57,7 @@ bool UBActionableWidget::shouldClose(QPoint p)
void
UBActionableWidget
::
paintEvent
(
QPaintEvent
*
ev
)
{
Q_UNUSED
(
ev
);
if
(
mShowActions
){
QPainter
p
(
this
);
if
(
mActions
.
contains
(
eAction_Close
)){
...
...
src/customWidgets/UBDraggableMedia.cpp
View file @
cf91bdd0
...
...
@@ -38,5 +38,5 @@ void UBDraggableMedia::mouseMoveEvent(QMouseEvent* ev)
drag
->
setMimeData
(
mimeData
);
Qt
::
DropAction
dropAction
=
drag
->
exec
(
Qt
::
CopyAction
|
Qt
::
MoveAction
);
drag
->
exec
(
Qt
::
CopyAction
|
Qt
::
MoveAction
);
}
src/gui/UBTBPageEditWidget.cpp
View file @
cf91bdd0
...
...
@@ -578,5 +578,6 @@ UBPictureWidget::~UBPictureWidget()
void
UBPictureWidget
::
resizeEvent
(
QResizeEvent
*
ev
)
{
Q_UNUSED
(
ev
);
mpLabel
->
setGeometry
(
10
,
10
,
width
()
-
2
*
10
,
height
());
}
src/pdf-merger/ASCII85Decode.cpp
View file @
cf91bdd0
...
...
@@ -13,7 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <iostream>
#include <QtGlobal>
#include "ASCII85Decode.h"
#include "core/memcheck.h"
...
...
@@ -51,6 +51,12 @@ void ASCII85Decode::_wput(std::string &cur,unsigned long tuple, int len)
}
}
bool
ASCII85Decode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
false
;
}
bool
ASCII85Decode
::
decode
(
std
::
string
&
encoded
)
{
unsigned
long
tuple
=
0
;
...
...
@@ -58,7 +64,6 @@ bool ASCII85Decode::decode(std::string &encoded)
int
count
=
0
;
int
size
=
encoded
.
size
();
int
i
=
0
;
bool
found
=
false
;
for
(;
size
;)
{
char
ch
=
encoded
[
i
++
];
...
...
@@ -121,3 +126,7 @@ bool ASCII85Decode::decode(std::string &encoded)
}
return
true
;
}
void
ASCII85Decode
::
initialize
(
Object
*
objectWithStram
)
{
Q_UNUSED
(
objectWithStram
);
};
src/pdf-merger/ASCII85Decode.h
View file @
cf91bdd0
...
...
@@ -26,9 +26,9 @@ namespace merge_lib
public
:
ASCII85Decode
(){};
virtual
~
ASCII85Decode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
false
;}
bool
encode
(
std
::
string
&
decoded
)
;
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
)
{}
;
void
initialize
(
Object
*
objectWithStram
);
private
:
void
_wput
(
std
::
string
&
cur
,
unsigned
long
tuple
,
int
len
);
...
...
src/pdf-merger/ASCIIHexDecode.cpp
View file @
cf91bdd0
...
...
@@ -13,7 +13,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ASCIIHexDecode.h"
#include <QtGlobal>
#include <string>
#include "Utils.h"
...
...
@@ -42,6 +42,12 @@ static unsigned int convertHexVal(unsigned char c)
return
0
;
}
bool
ASCIIHexDecode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
false
;
}
bool
ASCIIHexDecode
::
decode
(
std
::
string
&
encoded
)
{
bool
isLow
=
true
;
...
...
@@ -75,3 +81,8 @@ bool ASCIIHexDecode::decode(std::string & encoded)
encoded
=
decoded
;
return
true
;
}
void
ASCIIHexDecode
::
initialize
(
Object
*
objectWithStram
)
{
Q_UNUSED
(
objectWithStram
);
}
src/pdf-merger/ASCIIHexDecode.h
View file @
cf91bdd0
...
...
@@ -26,9 +26,9 @@ namespace merge_lib
public
:
ASCIIHexDecode
(){};
virtual
~
ASCIIHexDecode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
false
;}
bool
encode
(
std
::
string
&
decoded
)
;
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
)
{}
;
void
initialize
(
Object
*
objectWithStram
);
};
}
...
...
src/pdf-merger/CCITTFaxDecode.cpp
0 → 100644
View file @
cf91bdd0
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGlobal>
#include "CCITTFaxDecode.h"
using
namespace
merge_lib
;
bool
CCITTFaxDecode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
true
;
}
bool
CCITTFaxDecode
::
decode
(
std
::
string
&
encoded
)
{
Q_UNUSED
(
encoded
);
return
true
;
}
void
CCITTFaxDecode
::
initialize
(
Object
*
objectWithStram
)
{
Q_UNUSED
(
objectWithStram
);
}
src/pdf-merger/CCITTFaxDecode.h
View file @
cf91bdd0
...
...
@@ -16,6 +16,8 @@
#define CCITTFaxDecode_H
#include <string>
#include "Decoder.h"
namespace
merge_lib
{
// this class provides method for FlateDecode encoding and decoding
...
...
@@ -24,9 +26,9 @@ namespace merge_lib
public
:
CCITTFaxDecode
(){};
virtual
~
CCITTFaxDecode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
true
;}
;
bool
decode
(
std
::
string
&
encoded
)
{
return
true
;}
;
void
initialize
(
Object
*
objectWithStram
)
{}
;
bool
encode
(
std
::
string
&
decoded
);
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
);
};
}
...
...
src/pdf-merger/ContentHandler.cpp
View file @
cf91bdd0
...
...
@@ -12,6 +12,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ContentHandler.h"
#include "Filter.h"
#include "FlateDecode.h"
...
...
src/pdf-merger/DCTDecode.cpp
0 → 100644
View file @
cf91bdd0
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGlobal>
#include "DCTDecode.h"
using
namespace
merge_lib
;
bool
DCTDecode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
true
;
}
bool
DCTDecode
::
decode
(
std
::
string
&
encoded
)
{
Q_UNUSED
(
encoded
);
return
true
;
}
void
DCTDecode
::
initialize
(
Object
*
objectWithStram
)
{
Q_UNUSED
(
objectWithStram
);
}
src/pdf-merger/DCTDecode.h
View file @
cf91bdd0
...
...
@@ -16,7 +16,7 @@
#define DCTDecode_H
#include <string>
#include "Decoder.h"
namespace
merge_lib
{
// this class provides method for FlateDecode encoding and decoding
...
...
@@ -25,9 +25,9 @@ namespace merge_lib
public
:
DCTDecode
(){};
virtual
~
DCTDecode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
true
;}
;
bool
decode
(
std
::
string
&
encoded
)
{
return
true
;}
;
void
initialize
(
Object
*
objectWithStram
)
{}
;
bool
encode
(
std
::
string
&
decoded
);
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
);
};
}
...
...
src/pdf-merger/Document.cpp
View file @
cf91bdd0
...
...
@@ -28,7 +28,8 @@
using
namespace
merge_lib
;
const
std
::
string
firstObj
(
"%PDF-1.4
\n
1 0 obj
\n
<<
\n
/Title ()/Creator ()/Producer (Qt 4.5.0 (C) 1992-2009 Nokia Corporation and/or its subsidiary(-ies))/CreationDate (D:20090424120829)
\n
>>
\n
endobj
\n
"
);
const
std
::
string
zeroStr
(
"0000000000"
);
Document
::
Document
(
const
char
*
fileName
)
:
_pages
(),
_maxObjectNumber
(
0
),
_root
(
0
),
_documentName
(
fileName
)
Document
::
Document
(
const
char
*
fileName
)
:
_root
(
0
),
_pages
(),
_documentName
(
fileName
),
_maxObjectNumber
(
0
)
{
}
...
...
src/pdf-merger/FilterPredictor.cpp
View file @
cf91bdd0
...
...
@@ -15,6 +15,7 @@
#include "Config.h"
#include <iostream>
#include <map>
#include <QtGlobal>
#include "FilterPredictor.h"
#include "Utils.h"
...
...
@@ -49,6 +50,12 @@ FilterPredictor::~FilterPredictor()
{
}
bool
FilterPredictor
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
false
;
}
std
::
string
FilterPredictor
::
getDictionaryContentStr
(
std
::
string
&
in
,
size_t
&
pos
)
{
size_t
beg
=
in
.
find
(
DICT_START_TOKEN
,
pos
);
...
...
src/pdf-merger/FilterPredictor.h
View file @
cf91bdd0
...
...
@@ -27,7 +27,7 @@ namespace merge_lib
public
:
FilterPredictor
();
virtual
~
FilterPredictor
();
bool
encode
(
std
::
string
&
decoded
)
{
return
false
;}
bool
encode
(
std
::
string
&
decoded
)
;
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStream
);
...
...
src/pdf-merger/JBIG2Decode.cpp
0 → 100644
View file @
cf91bdd0
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtGlobal>
#include "JBIG2Decode.h"
using
namespace
merge_lib
;
bool
JBIG2Decode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
true
;
}
bool
JBIG2Decode
::
decode
(
std
::
string
&
encoded
)
{
Q_UNUSED
(
encoded
);
return
true
;
}
void
JBIG2Decode
::
initialize
(
Object
*
objectWithStram
)
{
Q_UNUSED
(
objectWithStram
);
}
src/pdf-merger/JBIG2Decode.h
View file @
cf91bdd0
...
...
@@ -16,6 +16,7 @@
#define JBIG2Decode_H
#include <string>
#include "Decoder.h"
namespace
merge_lib
{
...
...
@@ -25,9 +26,9 @@ namespace merge_lib
public
:
JBIG2Decode
(){};
virtual
~
JBIG2Decode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
true
;}
;
bool
decode
(
std
::
string
&
encoded
)
{
return
true
;}
;
void
initialize
(
Object
*
objectWithStram
)
{}
;
bool
encode
(
std
::
string
&
decoded
);
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
);
};
}
...
...
src/pdf-merger/LZWDecode.cpp
View file @
cf91bdd0
...
...
@@ -44,6 +44,11 @@ LZWDecode::~LZWDecode()
}
}
bool
LZWDecode
::
encode
(
std
::
string
&
decoded
)
{
return
true
;
}
void
LZWDecode
::
initialize
(
Object
*
objectWithStream
)
{
if
(
objectWithStream
)
...
...
src/pdf-merger/LZWDecode.h
View file @
cf91bdd0
...
...
@@ -27,7 +27,7 @@ namespace merge_lib
public
:
LZWDecode
();
virtual
~
LZWDecode
();
bool
encode
(
std
::
string
&
decoded
)
{
return
true
;}
;
bool
encode
(
std
::
string
&
decoded
);
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStram
);
private
:
...
...
src/pdf-merger/PageElementHandler.cpp
View file @
cf91bdd0
...
...
@@ -12,8 +12,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "PageElementHandler.h"
#include "PageElementHandler.h"
#include <QtGlobal>
#include "core/memcheck.h"
using
namespace
merge_lib
;
...
...
@@ -88,3 +89,8 @@ unsigned int PageElementHandler::_findEndOfElementContent(unsigned int startOfPa
}
return
_pageContent
.
rfind
(
">>"
);
}
void
PageElementHandler
::
_processObjectContent
(
unsigned
int
startOfPageElement
)
{
Q_UNUSED
(
startOfPageElement
);
}
src/pdf-merger/PageElementHandler.h
View file @
cf91bdd0
...
...
@@ -73,14 +73,14 @@ namespace merge_lib
void
_createAllPageFieldsSet
();
//members
std
::
string
&
_pageContent
;
Object
*
_page
;
std
::
string
&
_pageContent
;
std
::
string
_handlerName
;
PageElementHandler
*
_nextHandler
;
private
:
//methods
virtual
void
_processObjectContent
(
unsigned
int
startOfPageElement
)
{}
;
virtual
void
_processObjectContent
(
unsigned
int
startOfPageElement
);
virtual
void
_changeObjectContent
(
unsigned
int
startOfPageElement
)
=
0
;
virtual
void
_pageElementNotFound
()
{};
unsigned
int
_findStartOfPageElement
()
...
...
src/pdf-merger/RunLengthDecode.cpp
View file @
cf91bdd0
...
...
@@ -12,12 +12,19 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "RunLengthDecode.h"
#include "RunLengthDecode.h"
#include <QtGlobal>
#include "core/memcheck.h"
using
namespace
merge_lib
;
bool
RunLengthDecode
::
encode
(
std
::
string
&
decoded
)
{
Q_UNUSED
(
decoded
);
return
false
;
}
/* The encoded data is a sequence of
runs, where each run consists of a length byte followed by 1 to 128 bytes of data. If
the length byte is in the range 0 to 127, the following length + 1 (1 to 128) bytes
...
...
@@ -57,3 +64,8 @@ bool RunLengthDecode::decode(std::string & encoded)
}
return
true
;
}
void
RunLengthDecode
::
initialize
(
Object
*
objectWithStream
)
{
Q_UNUSED
(
objectWithStream
);
};
src/pdf-merger/RunLengthDecode.h
View file @
cf91bdd0
...
...
@@ -26,9 +26,9 @@ namespace merge_lib
public
:
RunLengthDecode
(){};
virtual
~
RunLengthDecode
(){};
bool
encode
(
std
::
string
&
decoded
)
{
return
false
;}
bool
encode
(
std
::
string
&
decoded
)
;
bool
decode
(
std
::
string
&
encoded
);
void
initialize
(
Object
*
objectWithStream
)
{}
;
void
initialize
(
Object
*
objectWithStream
);
};
}
...
...
src/pdf-merger/pdfMerger.pri
View file @
cf91bdd0
...
...
@@ -54,7 +54,10 @@ SOURCES += \
RemoveHimselfHandler.cpp \
RunLengthDecode.cpp \
Utils.cpp \
OverlayDocumentParser.cpp
OverlayDocumentParser.cpp \
src/pdf-merger/CCITTFaxDecode.cpp \
src/pdf-merger/JBIG2Decode.cpp \
src/pdf-merger/DCTDecode.cpp
macx {
...
...
@@ -83,3 +86,6 @@ linux-g++-64 {
LIBS += -lz
}
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