Search in sources :

Example 1 with OnClickWrapper

use of com.github.johnpersano.supertoasts.util.OnClickWrapper in project FBReaderJ by geometer.

the class ProcessHyperlinkAction method run.

@Override
protected void run(Object... params) {
    final ZLTextRegion region = Reader.getTextView().getOutlinedRegion();
    if (region == null) {
        return;
    }
    final ZLTextRegion.Soul soul = region.getSoul();
    if (soul instanceof ZLTextHyperlinkRegionSoul) {
        Reader.getTextView().hideOutline();
        Reader.getViewWidget().repaint();
        final ZLTextHyperlink hyperlink = ((ZLTextHyperlinkRegionSoul) soul).Hyperlink;
        switch(hyperlink.Type) {
            case FBHyperlinkType.EXTERNAL:
                openInBrowser(hyperlink.Id);
                break;
            case FBHyperlinkType.INTERNAL:
            case FBHyperlinkType.FOOTNOTE:
                {
                    final AutoTextSnippet snippet = Reader.getFootnoteData(hyperlink.Id);
                    if (snippet == null) {
                        break;
                    }
                    Reader.Collection.markHyperlinkAsVisited(Reader.getCurrentBook(), hyperlink.Id);
                    final boolean showToast;
                    switch(Reader.MiscOptions.ShowFootnoteToast.getValue()) {
                        default:
                        case never:
                            showToast = false;
                            break;
                        case footnotesOnly:
                            showToast = hyperlink.Type == FBHyperlinkType.FOOTNOTE;
                            break;
                        case footnotesAndSuperscripts:
                            showToast = hyperlink.Type == FBHyperlinkType.FOOTNOTE || region.isVerticallyAligned();
                            break;
                        case allInternalLinks:
                            showToast = true;
                            break;
                    }
                    if (showToast) {
                        final SuperActivityToast toast;
                        if (snippet.IsEndOfText) {
                            toast = new SuperActivityToast(BaseActivity, SuperToast.Type.STANDARD);
                        } else {
                            toast = new SuperActivityToast(BaseActivity, SuperToast.Type.BUTTON);
                            toast.setButtonIcon(android.R.drawable.ic_menu_more, ZLResource.resource("toast").getResource("more").getValue());
                            toast.setOnClickWrapper(new OnClickWrapper("ftnt", new SuperToast.OnClickListener() {

                                @Override
                                public void onClick(View view, Parcelable token) {
                                    Reader.getTextView().hideOutline();
                                    Reader.tryOpenFootnote(hyperlink.Id);
                                }
                            }));
                        }
                        toast.setText(snippet.getText());
                        toast.setDuration(Reader.MiscOptions.FootnoteToastDuration.getValue().Value);
                        toast.setOnDismissWrapper(new OnDismissWrapper("ftnt", new SuperToast.OnDismissListener() {

                            @Override
                            public void onDismiss(View view) {
                                Reader.getTextView().hideOutline();
                                Reader.getViewWidget().repaint();
                            }
                        }));
                        Reader.getTextView().outlineRegion(region);
                        BaseActivity.showToast(toast);
                    } else {
                        Reader.tryOpenFootnote(hyperlink.Id);
                    }
                    break;
                }
        }
    } else if (soul instanceof ZLTextImageRegionSoul) {
        Reader.getTextView().hideOutline();
        Reader.getViewWidget().repaint();
        final String url = ((ZLTextImageRegionSoul) soul).ImageElement.URL;
        if (url != null) {
            try {
                final Intent intent = new Intent();
                intent.setClass(BaseActivity, ImageViewActivity.class);
                intent.putExtra(ImageViewActivity.URL_KEY, url);
                intent.putExtra(ImageViewActivity.BACKGROUND_COLOR_KEY, Reader.ImageOptions.ImageViewBackground.getValue().intValue());
                OrientationUtil.startActivity(BaseActivity, intent);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    } else if (soul instanceof ZLTextWordRegionSoul) {
        DictionaryUtil.openTextInDictionary(BaseActivity, ((ZLTextWordRegionSoul) soul).Word.getString(), true, region.getTop(), region.getBottom(), new Runnable() {

            public void run() {
                BaseActivity.outlineRegion(soul);
            }
        });
    }
}
Also used : SuperToast(com.github.johnpersano.supertoasts.SuperToast) ImageViewActivity(org.geometerplus.android.fbreader.image.ImageViewActivity) SuperActivityToast(com.github.johnpersano.supertoasts.SuperActivityToast) Parcelable(android.os.Parcelable) Intent(android.content.Intent) View(android.view.View) AutoTextSnippet(org.geometerplus.fbreader.util.AutoTextSnippet) ZLNetworkException(org.geometerplus.zlibrary.core.network.ZLNetworkException) ActivityNotFoundException(android.content.ActivityNotFoundException) OnClickWrapper(com.github.johnpersano.supertoasts.util.OnClickWrapper) OnDismissWrapper(com.github.johnpersano.supertoasts.util.OnDismissWrapper)

Example 2 with OnClickWrapper

use of com.github.johnpersano.supertoasts.util.OnClickWrapper in project FBReaderJ by geometer.

the class Dictan method onActivityResult.

void onActivityResult(final FBReaderMainActivity fbreader, int resultCode, final Intent data) {
    if (data == null) {
        fbreader.hideDictionarySelection();
        return;
    }
    final int errorCode = data.getIntExtra("error.code", -1);
    if (resultCode != FBReaderMainActivity.RESULT_OK || errorCode != -1) {
        showError(fbreader, errorCode, data);
        return;
    }
    String text = data.getStringExtra("article.text");
    if (text == null) {
        showError(fbreader, -1, data);
        return;
    }
    // a hack for obsolete (before 5.0 beta) dictan versions
    final int index = text.indexOf("\000");
    if (index >= 0) {
        text = text.substring(0, index);
    }
    final boolean hasExtraData;
    if (text.length() == MAX_LENGTH_FOR_TOAST) {
        text = trimArticle(text);
        hasExtraData = true;
    } else {
        hasExtraData = data.getBooleanExtra("article.resources.contains", false);
    }
    final SuperActivityToast toast;
    if (hasExtraData) {
        toast = new SuperActivityToast(fbreader, SuperToast.Type.BUTTON);
        toast.setButtonIcon(android.R.drawable.ic_menu_more, ZLResource.resource("toast").getResource("more").getValue());
        toast.setOnClickWrapper(new OnClickWrapper("dict", new SuperToast.OnClickListener() {

            @Override
            public void onClick(View view, Parcelable token) {
                final String word = data.getStringExtra("article.word");
                final Intent intent = getActionIntent(word);
                try {
                    intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                    intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
                    fbreader.startActivity(intent);
                    fbreader.overridePendingTransition(0, 0);
                } catch (ActivityNotFoundException e) {
                // ignore
                }
            }
        }));
    } else {
        toast = new SuperActivityToast(fbreader, SuperToast.Type.STANDARD);
    }
    toast.setText(text);
    toast.setDuration(DictionaryUtil.TranslationToastDurationOption.getValue().Value);
    InternalUtil.showToast(toast, fbreader);
}
Also used : ActivityNotFoundException(android.content.ActivityNotFoundException) OnClickWrapper(com.github.johnpersano.supertoasts.util.OnClickWrapper) SuperActivityToast(com.github.johnpersano.supertoasts.SuperActivityToast) Parcelable(android.os.Parcelable) Intent(android.content.Intent) View(android.view.View)

Example 3 with OnClickWrapper

use of com.github.johnpersano.supertoasts.util.OnClickWrapper in project FBReaderJ by geometer.

the class SelectionBookmarkAction method run.

@Override
protected void run(Object... params) {
    final Bookmark bookmark;
    if (params.length != 0) {
        bookmark = (Bookmark) params[0];
    } else {
        bookmark = Reader.addSelectionBookmark();
    }
    if (bookmark == null) {
        return;
    }
    final SuperActivityToast toast = new SuperActivityToast(BaseActivity, SuperToast.Type.BUTTON);
    toast.setText(bookmark.getText());
    toast.setDuration(SuperToast.Duration.EXTRA_LONG);
    toast.setButtonIcon(android.R.drawable.ic_menu_edit, ZLResource.resource("dialog").getResource("button").getResource("edit").getValue());
    toast.setOnClickWrapper(new OnClickWrapper("bkmk", new SuperToast.OnClickListener() {

        @Override
        public void onClick(View view, Parcelable token) {
            final Intent intent = new Intent(BaseActivity.getApplicationContext(), EditBookmarkActivity.class);
            FBReaderIntents.putBookmarkExtra(intent, bookmark);
            OrientationUtil.startActivity(BaseActivity, intent);
        }
    }));
    BaseActivity.showToast(toast);
}
Also used : Bookmark(org.geometerplus.fbreader.book.Bookmark) OnClickWrapper(com.github.johnpersano.supertoasts.util.OnClickWrapper) SuperActivityToast(com.github.johnpersano.supertoasts.SuperActivityToast) Parcelable(android.os.Parcelable) Intent(android.content.Intent) View(android.view.View)

Aggregations

Intent (android.content.Intent)3 Parcelable (android.os.Parcelable)3 View (android.view.View)3 SuperActivityToast (com.github.johnpersano.supertoasts.SuperActivityToast)3 OnClickWrapper (com.github.johnpersano.supertoasts.util.OnClickWrapper)3 ActivityNotFoundException (android.content.ActivityNotFoundException)2 SuperToast (com.github.johnpersano.supertoasts.SuperToast)1 OnDismissWrapper (com.github.johnpersano.supertoasts.util.OnDismissWrapper)1 ImageViewActivity (org.geometerplus.android.fbreader.image.ImageViewActivity)1 Bookmark (org.geometerplus.fbreader.book.Bookmark)1 AutoTextSnippet (org.geometerplus.fbreader.util.AutoTextSnippet)1 ZLNetworkException (org.geometerplus.zlibrary.core.network.ZLNetworkException)1