code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package com.artifex.mupdfdemo;
import android.graphics.RectF;
public class LinkInfo {
final public RectF rect;
public LinkInfo(float l, float t, float r, float b) {
rect = new RectF(l, t, r, b);
}
public void acceptVisitor(LinkInfoVisitor visitor) {
}
}
| Java |
package com.artifex.mupdfdemo;
public class OutlineActivityData {
public OutlineItem items[];
public int position;
static private OutlineActivityData singleton;
static public void set(OutlineActivityData d) {
singleton = d;
}
static public OutlineActivityData get() {
if (singleton == null)
singl... | Java |
package com.artifex.mupdfdemo;
import android.graphics.Bitmap;
public class BitmapHolder {
private Bitmap bm;
public BitmapHolder() {
bm = null;
}
public synchronized void setBm(Bitmap abm) {
if (bm != null && bm != abm)
bm.recycle();
bm = abm;
}
public synchronized void drop() {
bm = null;
}
p... | Java |
package com.artifex.mupdfdemo;
import android.graphics.RectF;
public class TextChar extends RectF {
public char c;
public TextChar(float x0, float y0, float x1, float y1, char _c) {
super(x0, y0, x1, y1);
c = _c;
}
}
| Java |
package com.artifex.mupdfdemo;
/**
* User: mike
* Date: 15.07.12
* Time: 19:23
*/
public class OutlineItem {
public final int level;
public final String title;
public final int page;
public OutlineItem(int level, String title, int page) {
this.level = level;
this.title = title;
... | Java |
package com.artifex.mupdfdemo;
import android.graphics.PointF;
import android.graphics.RectF;
enum Hit {Nothing, Widget, Annotation};
public interface MuPDFView {
public void setPage(int page, PointF size);
public void setScale(float scale);
public int getPage();
public void blank(int page);
public Hit passClic... | Java |
//package com.artifex.mupdfdemo;
//
//import java.io.ByteArrayOutputStream;
//import java.io.InputStream;
//
//import android.app.Activity;
//import android.content.ActivityNotFoundException;
//import android.content.ContentResolver;
//import android.content.Intent;
//import android.os.Bundle;
//import android.util.Bas... | Java |
package com.artifex.mupdfdemo;
import java.util.LinkedList;
import java.util.NoSuchElementException;
import android.content.Context;
import android.graphics.Point;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.util.SparseArray;
import android.view.GestureDetector;
import android.view.... | Java |
//package com.artifex.mupdfdemo;
//
//import android.content.Context;
//import android.graphics.Point;
//import android.graphics.PointF;
//import android.util.SparseArray;
//import android.view.View;
//import android.view.ViewGroup;
//import android.widget.BaseAdapter;
//
//public class MuPDFPageAdapter extends BaseAda... | Java |
package com.artifex.mupdfdemo;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
public class OutlineActivity extends ListActivity {
OutlineItem mItems[];
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle sav... | Java |
/*package com.artifex.mupdfdemo;
import java.io.InputStream;
import java.util.concurrent.Executor;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import androi... | Java |
package com.artifex.mupdfdemo;
public class LinkInfoInternal extends LinkInfo {
final public int pageNumber;
public LinkInfoInternal(float l, float t, float r, float b, int p) {
super(l, t, r, b);
pageNumber = p;
}
public void acceptVisitor(LinkInfoVisitor visitor) {
visitor.visitInternal(this);
}
}
| Java |
package com.artifex.mupdfdemo;
public class MuPDFAlert {
public enum IconType {Error,Warning,Question,Status};
public enum ButtonPressed {None,Ok,Cancel,No,Yes};
public enum ButtonGroupType {Ok,OkCancel,YesNo,YesNoCancel};
public final String message;
public final IconType iconType;
public final ButtonGroupType... | Java |
package com.artifex.mupdfdemo;
public class LinkInfoExternal extends LinkInfo {
final public String url;
public LinkInfoExternal(float l, float t, float r, float b, String u) {
super(l, t, r, b);
url = u;
}
public void acceptVisitor(LinkInfoVisitor visitor) {
visitor.visitExternal(this);
}
}
| Java |
package com.artifex.mupdfdemo;
public enum WidgetType {
NONE,
TEXT,
LISTBOX,
COMBOBOX
}
| Java |
package com.artifex.mupdfdemo;
import android.graphics.RectF;
public class Annotation extends RectF {
enum Type {
TEXT, LINK, FREETEXT, LINE, SQUARE, CIRCLE, POLYGON, POLYLINE, HIGHLIGHT,
UNDERLINE, SQUIGGLY, STRIKEOUT, STAMP, CARET, INK, POPUP, FILEATTACHMENT,
SOUND, MOVIE, WIDGET, SCREEN, PRINTERMARK, TRAPNE... | Java |
package com.artifex.mupdfdemo;
import java.util.ArrayList;
import java.util.Iterator;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Point;
import androi... | Java |
package com.artifex.mupdfdemo;
import android.graphics.RectF;
public class TextWord extends RectF {
private StringBuffer w;
public TextWord() {
super();
w = new StringBuffer();
}
public void Add(TextChar tc) {
super.union(tc);
w = w.append(tc.c);
}
public StringBuffer getText() {
return w;... | Java |
//package com.artifex.mupdfdemo;
//
//import java.util.ArrayList;
//
//import android.app.AlertDialog;
//import android.content.ClipData;
//import android.content.Context;
//import android.content.DialogInterface;
//import android.graphics.Bitmap;
//import android.graphics.Point;
//import android.graphics.PointF;
//imp... | Java |
package com.artifex.mupdfdemo;
import android.content.Context;
import android.graphics.Point;
import android.graphics.PointF;
import android.graphics.RectF;
import android.os.AsyncTask;
import android.os.Handler;
import android.util.Base64;
import android.view.MotionEvent;
import android.view.View;
import android.webk... | Java |
package com.artifex.mupdfdemo;
// Version of MuPDFAlert without enums to simplify JNI
public class MuPDFAlertInternal {
public final String message;
public final int iconType;
public final int buttonGroupType;
public final String title;
public int buttonPressed;
MuPDFAlertInternal(String aMessage, int aIconType... | Java |
package universe.constellation.orion.viewer;
import android.view.KeyEvent;
/**
* User: mike
* Date: 14.08.13
* Time: 9:41
*/
public class SafeApi {
public static final void doTrackEvent(KeyEvent event) {
event.startTracking();
}
public static final boolean isCanceled(KeyEvent event) {
... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
///*
// * Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
// *
// * Copyright (C) 2011-2012 Michael Bogdanov
// *
// * 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, ... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.search;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.RectF;
import android.os.AsyncTask;
import android.os.Handler;
import com.artifex.mupdfdemo.SearchTaskRe... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.prefs;
import android.content.Context;
import android.preference.DialogPreference;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.SeekBar;
import android.widget.TextView;
import universe.constellation.o... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.android;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.ActionBar;
import universe.constellation.orion.viewer.OrionBaseActivity;
/**
* User: mike
* Date: 02.11.13
* Time: 11:35
*/
public class Tab... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.view;
import android.graphics.Canvas;
import android.graphics.Paint;
/**
* User: mike
* Date: 23.11.13
* Time: 22:03
*/
public interface DrawTask {
public void drawCanvas(Canvas canvas, Paint paint);
}
| Java |
package universe.constellation.orion.viewer.view;
/**
* User: mike
* Date: 19.10.13
* Time: 20:27
*/
public interface ViewDimensionAware {
void onDimensionChanged(int newWidth, int newHeight);
}
| Java |
package universe.constellation.orion.viewer.view;
import universe.constellation.orion.viewer.LayoutPosition;
/**
* User: mike
* Date: 19.10.13
* Time: 20:38
*/
public interface Renderer {
void invalidateCache();
void cleanCache();
void stopRenderer();
void onPause();
void onResume();
... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.util;
import android.graphics.RectF;
import java.util.List;
/**
* User: mike
* Date: 23.11.13
* Time: 20:00
*/
public class Util {
public static void scale(RectF rect, double scale) {
rect.left *= scale;
rect.top *= scale;
rect.right *= sca... | Java |
package universe.constellation.orion.viewer;
/**
* User: mike
* Date: 24.02.13
* Time: 11:36
*/
/*Logger*/
public class L {
public static final void log(String msg) {
Common.d(msg);
}
public static final void info(String msg) {
Common.d(msg);
}
}
| Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.device;
/**
* User: mike
* Date: 16.03.13
* Time: 11:36
*/
public interface KeyEventProducer {
void nextPage();
void prevPage();
}
| Java |
/**
*
*/
package universe.constellation.orion.viewer.device;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
/**
* @author vldmr
*
*/
public class EdgeKbdThread extends Thread {
private KeyEventProducer producer;
private volatile boolean isAlive;
... | Java |
package universe.constellation.orion.viewer.device;
/**
* Nook Touch EPD controller interface wrapper.
* @author DairyKnight <dairyknight@gmail.com>
* http://forum.xda-developers.com/showthread.php?t=1183173
*/
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import universe.constellation.o... | Java |
///*
// * Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
// *
// * Copyright (C) 2011-2013 Michael Bogdanov & Co
// *
// * 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 Foundat... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.device;
import android.content.Context;
import android.content.SharedPreferences;
import android.text.format.Time;
import android.util.Log;
import android.widget.Toast;
import universe.constellation.orion.viewer.LastPageInfo;
import universe.constellation.orion.viewer.OrionB... | Java |
package universe.constellation.orion.viewer.device;
import android.view.KeyEvent;
import android.view.View;
import universe.constellation.orion.viewer.Common;
import universe.constellation.orion.viewer.OperationHolder;
import java.lang.reflect.Method;
/**
*
*/
public class TexetTb138Device extends AndroidDevice {
... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer.dialog;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
im... | Java |
package universe.constellation.orion.viewer.dialog;
import android.app.Dialog;
import android.graphics.Rect;
import android.view.Gravity;
import android.view.WindowManager;
import universe.constellation.orion.viewer.OrionView;
import universe.constellation.orion.viewer.OrionViewerActivity;
/**
* User: mike
* Date: ... | Java |
package universe.constellation.orion.viewer.dialog;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.view.View;
import android.view.ViewGroup;
import android.widget.*;
import universe.constellation.orion.viewer.Action;
import universe.constellation.orion.viewer.Orio... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
/*
* Orion Viewer - pdf, djvu, xps and cbz file viewer for android devices
*
* Copyright (C) 2011-2013 Michael Bogdanov & Co
*
* 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 vers... | Java |
package universe.constellation.orion.viewer;
import android.graphics.Bitmap;
import java.util.concurrent.CountDownLatch;
/**
* User: mike
* Date: 20.10.13
* Time: 9:21
*/
public interface OrionImageView {
void onNewImage(Bitmap bitmap, LayoutPosition info, CountDownLatch latch);
void onNewBook(String t... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.