Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zathura
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
114
Issues
114
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwmt
zathura
Commits
75b7ce0b
Commit
75b7ce0b
authored
Mar 16, 2012
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark zathura->global.page_padding as deprecated.
parent
9fe03f72
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
5 deletions
+14
-5
Makefile
Makefile
+1
-1
macros.h
macros.h
+11
-0
zathura.h
zathura.h
+2
-4
No files found.
Makefile
View file @
75b7ce0b
...
...
@@ -147,7 +147,7 @@ endif
install-headers
:
${PROJECT}.pc
$(ECHO)
installing header files
$(QUIET)
mkdir
-p
${DESTDIR}${INCLUDEDIR}
/
${PROJECT}
$(QUIET)
install
-m
644 zathura.h document.h version.h
${DESTDIR}${INCLUDEDIR}
/
${PROJECT}
$(QUIET)
install
-m
644 zathura.h document.h version.h
macros.h
${DESTDIR}${INCLUDEDIR}
/
${PROJECT}
$(ECHO)
installing pkgconfig file
$(QUIET)
mkdir
-p
${DESTDIR}${LIBDIR}
/pkgconfig
$(QUIET)
install
-m
644
${PROJECT}
.pc
${DESTDIR}${LIBDIR}
/pkgconfig
...
...
macros.h
0 → 100644
View file @
75b7ce0b
/* See LICENSE file for license and copyright information */
#ifndef ZATHURA_MACROS_H
#define ZATHURA_MACROS_H
#include <girara/macros.h>
#define UNUSED(x) GIRARA_UNUSED(x)
#define DEPRECATED(x) GIRARA_DEPRECATED(x)
#endif
zathura.h
View file @
75b7ce0b
...
...
@@ -5,10 +5,8 @@
#include <stdbool.h>
#include <girara/types.h>
#include <girara/macros.h>
#include <gtk/gtk.h>
#define UNUSED(x) GIRARA_UNUSED(x)
#include "macros.h"
enum
{
NEXT
,
PREVIOUS
,
LEFT
,
RIGHT
,
UP
,
DOWN
,
BOTTOM
,
TOP
,
HIDE
,
HIGHLIGHT
,
DELETE_LAST_WORD
,
DELETE_LAST_CHAR
,
DEFAULT
,
ERROR
,
WARNING
,
NEXT_GROUP
,
...
...
@@ -84,7 +82,7 @@ typedef struct zathura_s
struct
{
unsigned
int
page_padding
;
/**< Padding between the pages */
unsigned
int
DEPRECATED
(
page_padding
)
;
/**< Padding between the pages */
bool
recolor
;
/**< Recoloring mode switch */
bool
update_page_number
;
/**< Update current page number */
}
global
;
...
...
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