blob: f0ea37f12d32e6063c061e36e86a5f85468c280c [file] [log] [blame]
/*
* Copyright (C) 2009, Pino Toscano <pino@kde.org>
* Copyright (C) 2018, 2020, Albert Astals Cid <aacid@kde.org>
* Copyright (C) 2020, Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
*
* 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, 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.
*/
#ifndef POPPLER_PAGE_PRIVATE_H
#define POPPLER_PAGE_PRIVATE_H
#include "poppler-page.h"
class Page;
namespace poppler {
class document_private;
class page_transition;
class font_info;
class page_private
{
public:
page_private(document_private *doc, int index);
~page_private();
page_private(const page_private &) = delete;
page_private &operator=(const page_private &) = delete;
document_private *doc;
Page *page;
int index;
page_transition *transition;
static inline page_private *get(const poppler::page *p) { return const_cast<poppler::page *>(p)->d; }
std::vector<font_info> font_info_cache;
bool font_info_cache_initialized;
void init_font_info_cache();
};
}
#endif