File: pps-form-overlay.h

package info (click to toggle)
papers 49.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,140 kB
  • sloc: ansic: 37,721; sh: 197; xml: 127; makefile: 112
file content (30 lines) | stat: -rw-r--r-- 784 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// SPDX-License-Identifier: GPL-2.0-or-later
/* pps-form-overlay.h
 * this file is part of papers, a gnome document viewer
 *
 * Copyright (C) 2025 Lucas Baudin <lbaudin@gnome.org>
 */

#pragma once

#include <gtk/gtk.h>

#include "pps-document-model.h"
#include "pps-page-cache.h"
#include "pps-pixbuf-cache.h"

G_BEGIN_DECLS

#define PPS_TYPE_OVERLAY_FORM (pps_overlay_form_get_type ())
G_DECLARE_DERIVABLE_TYPE (PpsOverlayForm, pps_overlay_form, PPS, OVERLAY_FORM, GtkBox)

struct _PpsOverlayFormClass {
	GtkBoxClass base_class;
};

GtkWidget *pps_overlay_form_new (PpsFormField *field,
                                 PpsDocumentModel *model,
                                 PpsPageCache *page_cache,
                                 PpsPixbufCache *pixbuf_cache);

G_END_DECLS