X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=libdocument%2Fev-document-thumbnails.c;h=9482e09eb85fd9d98e2126a4e4f787c5933bbdb4;hb=5e1b11aee0641f6075f2d6eabfcfabece5e2f409;hp=c560cec10efa34e65ecd09fb4dde9f1c11ff1b24;hpb=13a06349251874bd35d2f03c3fc93217cee749a2;p=evince.git diff --git a/libdocument/ev-document-thumbnails.c b/libdocument/ev-document-thumbnails.c index c560cec1..9482e09e 100644 --- a/libdocument/ev-document-thumbnails.c +++ b/libdocument/ev-document-thumbnails.c @@ -14,66 +14,50 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ -#include "config.h" - +#include #include "ev-document-thumbnails.h" +#include "ev-document.h" -GType -ev_document_thumbnails_get_type (void) -{ - static GType type = 0; - - if (G_UNLIKELY (type == 0)) - { - const GTypeInfo our_info = - { - sizeof (EvDocumentThumbnailsIface), - NULL, - NULL, - }; +G_DEFINE_INTERFACE (EvDocumentThumbnails, ev_document_thumbnails, 0) - type = g_type_register_static (G_TYPE_INTERFACE, - "EvDocumentThumbnails", - &our_info, (GTypeFlags)0); - } - - return type; +static void +ev_document_thumbnails_default_init (EvDocumentThumbnailsInterface *klass) +{ } GdkPixbuf * -ev_document_thumbnails_get_thumbnail (EvDocumentThumbnails *document, - gint page, - int rotation, - gint size, - gboolean border) +ev_document_thumbnails_get_thumbnail (EvDocumentThumbnails *document, + EvRenderContext *rc, + gboolean border) { - EvDocumentThumbnailsIface *iface; + EvDocumentThumbnailsInterface *iface; g_return_val_if_fail (EV_IS_DOCUMENT_THUMBNAILS (document), NULL); + g_return_val_if_fail (EV_IS_RENDER_CONTEXT (rc), NULL); iface = EV_DOCUMENT_THUMBNAILS_GET_IFACE (document); - return iface->get_thumbnail (document, page, rotation, size, border); + return iface->get_thumbnail (document, rc, border); } void ev_document_thumbnails_get_dimensions (EvDocumentThumbnails *document, - gint page, - gint suggested_width, + EvRenderContext *rc, gint *width, gint *height) { - EvDocumentThumbnailsIface *iface; + EvDocumentThumbnailsInterface *iface; g_return_if_fail (EV_IS_DOCUMENT_THUMBNAILS (document)); + g_return_if_fail (EV_IS_RENDER_CONTEXT (rc)); g_return_if_fail (width != NULL); g_return_if_fail (height != NULL); iface = EV_DOCUMENT_THUMBNAILS_GET_IFACE (document); - iface->get_dimensions (document, page, suggested_width, width, height); + iface->get_dimensions (document, rc, width, height); }