/* * Copyright (C) 2010-2015 FBReader.ORG Limited <contact@fbreader.org> * * 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ package org.geometerplus.android.fbreader; import android.app.Activity; import android.view.ViewGroup; import android.widget.RelativeLayout; import org.geometerplus.zlibrary.core.application.ZLApplication; import org.geometerplus.zlibrary.text.view.ZLTextWordCursor; import org.geometerplus.fbreader.fbreader.FBReaderApp; abstract class PopupPanel extends ZLApplication.PopupPanel { public ZLTextWordCursor StartPosition; protected volatile SimplePopupWindow myWindow; private volatile FBReader myActivity; private volatile RelativeLayout myRoot; PopupPanel(FBReaderApp fbReader) { super(fbReader); } protected final FBReaderApp getReader() { return (FBReaderApp)Application; } @Override protected void show_() { if (myActivity != null) { createControlPanel(myActivity, myRoot); } if (myWindow != null) { myWindow.show(); } } @Override protected void hide_() { if (myWindow != null) { myWindow.hide(); } } private final void removeWindow(Activity activity) { if (myWindow != null && activity == myWindow.getContext()) { final ViewGroup root = (ViewGroup)myWindow.getParent(); myWindow.hide(); root.removeView(myWindow); myWindow = null; } } public static void removeAllWindows(ZLApplication application, Activity activity) { for (ZLApplication.PopupPanel popup : application.popupPanels()) { if (popup instanceof PopupPanel) { ((PopupPanel)popup).removeWindow(activity); } else if (popup instanceof NavigationPopup) { ((NavigationPopup)popup).removeWindow(activity); } } } public static void restoreVisibilities(ZLApplication application) { final ZLApplication.PopupPanel popup = application.getActivePopup(); if (popup instanceof PopupPanel) { ((PopupPanel)popup).show_(); } else if (popup instanceof NavigationPopup) { ((NavigationPopup)popup).show_(); } } public final void initPosition() { if (StartPosition == null) { StartPosition = new ZLTextWordCursor(getReader().getTextView().getStartCursor()); } } public final void storePosition() { if (StartPosition == null) { return; } final FBReaderApp reader = getReader(); if (!StartPosition.equals(reader.getTextView().getStartCursor())) { reader.addInvisibleBookmark(StartPosition); reader.storePosition(); } } public void setPanelInfo(FBReader activity, RelativeLayout root) { myActivity = activity; myRoot = root; } public abstract void createControlPanel(FBReader activity, RelativeLayout root); }