Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
donald
/
evince
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
48ef495
backend
cut-n-paste
data
help
libdocument
libmisc
libview
po
previewer
properties
shell
Makefile.am
eggfindbar.c
eggfindbar.h
ev-annotation-properties-dialog.c
ev-annotation-properties-dialog.h
ev-application.c
ev-application.h
ev-bookmark-action.c
ev-bookmark-action.h
ev-bookmarks.c
ev-bookmarks.h
ev-daemon-gdbus.xml
ev-daemon.c
ev-file-monitor.c
ev-file-monitor.h
ev-find-sidebar.c
ev-find-sidebar.h
ev-gdbus.xml
ev-history-action-widget.c
ev-history-action-widget.h
ev-history-action.c
ev-history-action.h
ev-history.c
ev-history.h
ev-keyring.c
ev-keyring.h
ev-loading-message.c
ev-loading-message.h
ev-media-player-keys.c
ev-media-player-keys.h
ev-message-area.c
ev-message-area.h
ev-metadata.c
ev-metadata.h
ev-open-recent-action.c
ev-open-recent-action.h
ev-password-view.c
ev-password-view.h
ev-progress-message-area.c
ev-progress-message-area.h
ev-properties-dialog.c
ev-properties-dialog.h
ev-properties-fonts.c
ev-properties-fonts.h
ev-properties-license.c
ev-properties-license.h
ev-recent-view.c
ev-recent-view.h
ev-sidebar-annotations.c
ev-sidebar-annotations.h
ev-sidebar-attachments.c
ev-sidebar-attachments.h
ev-sidebar-bookmarks.c
ev-sidebar-bookmarks.h
ev-sidebar-layers.c
ev-sidebar-layers.h
ev-sidebar-links.c
ev-sidebar-links.h
ev-sidebar-page.c
ev-sidebar-page.h
ev-sidebar-thumbnails.c
ev-sidebar-thumbnails.h
ev-sidebar.c
ev-sidebar.h
ev-toolbar.c
ev-toolbar.h
ev-utils.c
ev-utils.h
ev-window-title.c
ev-window-title.h
ev-window.c
ev-window.h
ev-zoom-action-widget.c
ev-zoom-action-widget.h
ev-zoom-action.c
ev-zoom-action.h
evince-appmenu.ui
evince-icon.rc
evince-ui.xml
evince.css
evince.gresource.xml
main.c
thumbnail-frame.png
test
thumbnailer
AUTHORS
COPYING
ChangeLog.pre-git
MAINTAINERS
Makefile.am
NEWS
NOTES
README
README.commits
TODO
acinclude.m4
autogen.sh
configure.ac
evince-document.h
evince-document.pc.in
evince-view.h
evince-view.pc.in
evince.doap
git.mk
Breadcrumbs
evince
/
shell
/
ev-toolbar.h
Blame
Blame
Latest commit
History
History
57 lines (46 loc) · 2.06 KB
Breadcrumbs
evince
/
shell
/
ev-toolbar.h
Top
File metadata and controls
Code
Blame
57 lines (46 loc) · 2.06 KB
Raw
/* ev-toolbar.h * this file is part of evince, a gnome document viewer * * Copyright (C) 2012 Carlos Garcia Campos <carlosgc@gnome.org> * * Evince 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. * * Evince 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 __EV_TOOLBAR_H__ #define __EV_TOOLBAR_H__ #include <gtk/gtk.h> #include "ev-window.h" G_BEGIN_DECLS #define EV_TYPE_TOOLBAR (ev_toolbar_get_type()) #define EV_TOOLBAR(object) (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_TOOLBAR, EvToolbar)) #define EV_IS_TOOLBAR(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_TOOLBAR)) #define EV_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_TOOLBAR, EvToolbarClass)) #define EV_IS_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_TOOLBAR)) #define EV_TOOLBAR_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_TOOLBAR, EvToolbarClass)) typedef struct _EvToolbar EvToolbar; typedef struct _EvToolbarClass EvToolbarClass; typedef struct _EvToolbarPrivate EvToolbarPrivate; struct _EvToolbar { GtkToolbar base_instance; EvToolbarPrivate *priv; }; struct _EvToolbarClass { GtkToolbarClass base_class; }; GType ev_toolbar_get_type (void); GtkWidget *ev_toolbar_new (EvWindow *window); gboolean ev_toolbar_has_visible_popups (EvToolbar *ev_toolbar); void ev_toolbar_action_menu_popup (EvToolbar *ev_toolbar); G_END_DECLS #endif /* __EV_TOOLBAR_H__ */
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
You can’t perform that action at this time.