1
0
mirror of https://gitlab.gnome.org/GNOME/evince synced 2024-07-05 00:59:07 +00:00
evince/shell/ev-toolbar.h
Pablo Correa Gómez 873dd589cc shell: Derive EvToolbar from GtkBin instead of HdyHeaderBar
This simplifies the porting to GTK4, since AdwHeaderBar is no longer
a derivable type as GTK4 prioritized subclassing. In libadwaita AdwBin
is created exactly for this purpose, so the transition would be
as simple as replacing the GtkBin subclassing by AdwBin.
2022-10-27 20:28:17 -03:00

62 lines
2.3 KiB
C

/* 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.
*/
#pragma once
#include <gtk/gtk.h>
#include "ev-window.h"
G_BEGIN_DECLS
typedef enum {
EV_TOOLBAR_MODE_NORMAL,
EV_TOOLBAR_MODE_FULLSCREEN,
EV_TOOLBAR_MODE_RECENT_VIEW
} EvToolbarMode;
#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;
struct _EvToolbar {
GtkBin base_instance;
};
struct _EvToolbarClass {
GtkBinClass base_class;
};
GType ev_toolbar_get_type (void);
GtkWidget *ev_toolbar_new (EvWindow *window);
void ev_toolbar_action_menu_toggle (EvToolbar *ev_toolbar);
GtkWidget *ev_toolbar_get_page_selector (EvToolbar *ev_toolbar);
HdyHeaderBar *ev_toolbar_get_header_bar (EvToolbar *ev_toolbar);
void ev_toolbar_set_mode (EvToolbar *ev_toolbar,
EvToolbarMode mode);
EvToolbarMode ev_toolbar_get_mode (EvToolbar *ev_toolbar);
G_END_DECLS