File: pps-view-cursor.h

package info (click to toggle)
papers 49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 21,044 kB
  • sloc: ansic: 37,728; sh: 197; xml: 127; makefile: 113
file content (29 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (2)
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
// SPDX-License-Identifier: GPL-2.0-or-later
/* this file is part of papers, a gnome document viewer
 *
 *  Copyright (C) 2004 Red Hat, Inc
 */

#pragma once

#if !defined(PAPERS_COMPILATION)
#error "This is a private header."
#endif

#include <gtk/gtk.h>

G_BEGIN_DECLS

typedef enum {
	PPS_VIEW_CURSOR_NORMAL,
	PPS_VIEW_CURSOR_IBEAM,
	PPS_VIEW_CURSOR_LINK,
	PPS_VIEW_CURSOR_WAIT,
	PPS_VIEW_CURSOR_HIDDEN,
	PPS_VIEW_CURSOR_DRAG,
	PPS_VIEW_CURSOR_ADD
} PpsViewCursor;

const gchar *pps_view_cursor_name (PpsViewCursor cursor);

G_END_DECLS