diff options
author | fredrossperry <fredrossperry@gmail.com> | 2015-08-21 13:27:08 -0700 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-09-29 15:41:28 +0100 |
commit | c15f8ca38f526930bd4da7fe610b04cd8fa93bca (patch) | |
tree | 5901b434d4ffc29781e5810f26657aa7be79e403 /platform/android/res/layout | |
parent | fb7206c262a5f9ff0e39e89946846771479ba3ec (diff) | |
download | mupdf-c15f8ca38f526930bd4da7fe610b04cd8fa93bca.tar.xz |
Support for proofing
- use core.fileFormat to decide whether a proof file is being viewed,
- don't show the proofing button except for PDF files.
- in a proofing activity, show the page that was being viewed when
the proof was requested.
- Add extra two arguments to fz_write_gproof_file in the Android build.
Diffstat (limited to 'platform/android/res/layout')
-rw-r--r-- | platform/android/res/layout/buttons.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/platform/android/res/layout/buttons.xml b/platform/android/res/layout/buttons.xml index 12de40c6..6c1620ba 100644 --- a/platform/android/res/layout/buttons.xml +++ b/platform/android/res/layout/buttons.xml @@ -31,6 +31,17 @@ android:textAppearance="?android:attr/textAppearanceMedium" /> <ImageButton + android:id="@+id/sepsButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerVertical="true" + android:layout_alignParentRight="true" + android:contentDescription="Separations" + android:background="@drawable/button" + android:onClick="OnSepsButtonClick" + android:src="@drawable/ic_sep" /> + + <ImageButton android:id="@+id/linkButton" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -393,4 +404,5 @@ android:background="@drawable/page_num" android:textAppearance="?android:attr/textAppearanceMedium" android:textColor="#FFFFFF" /> + </RelativeLayout> |