Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-history-action.h File Reference
#include <gtk/gtk.h>
#include "ev-history.h"
+ Include dependency graph for ev-history-action.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _EvHistoryAction
 
struct  _EvHistoryActionClass
 

Macros

#define EV_TYPE_HISTORY_ACTION   (ev_history_action_get_type ())
 
#define EV_HISTORY_ACTION(obj)   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_HISTORY_ACTION, EvHistoryAction))
 
#define EV_IS_HISTORY_ACTION(obj)   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_HISTORY_ACTION))
 
#define EV_HISTORY_ACTION_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_HISTORY_ACTION, EvHistoryActionClass))
 
#define EV_IS_HISTORY_ACTION_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_HISTORY_ACTION))
 
#define EV_HISTORY_ACTION_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_HISTORY_ACTION, EvHistoryActionClass))
 

Typedefs

typedef struct _EvHistoryAction EvHistoryAction
 
typedef struct
_EvHistoryActionClass 
EvHistoryActionClass
 
typedef struct
_EvHistoryActionPrivate 
EvHistoryActionPrivate
 

Functions

GType ev_history_action_get_type (void)
 
GtkWidget * ev_history_action_new (EvHistory *history)
 
gboolean ev_history_action_get_popup_shown (EvHistoryAction *action)
 

Macro Definition Documentation

#define EV_HISTORY_ACTION (   obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_HISTORY_ACTION, EvHistoryAction))

Definition at line 31 of file ev-history-action.h.

#define EV_HISTORY_ACTION_CLASS (   klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_HISTORY_ACTION, EvHistoryActionClass))

Definition at line 33 of file ev-history-action.h.

#define EV_HISTORY_ACTION_GET_CLASS (   obj)    (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_HISTORY_ACTION, EvHistoryActionClass))

Definition at line 35 of file ev-history-action.h.

#define EV_IS_HISTORY_ACTION (   obj)    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_HISTORY_ACTION))

Definition at line 32 of file ev-history-action.h.

#define EV_IS_HISTORY_ACTION_CLASS (   klass)    (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_HISTORY_ACTION))

Definition at line 34 of file ev-history-action.h.

#define EV_TYPE_HISTORY_ACTION   (ev_history_action_get_type ())

Definition at line 30 of file ev-history-action.h.

Typedef Documentation

Definition at line 37 of file ev-history-action.h.

Definition at line 38 of file ev-history-action.h.

Definition at line 39 of file ev-history-action.h.

Function Documentation

gboolean ev_history_action_get_popup_shown ( EvHistoryAction action)

Definition at line 276 of file ev-history-action.c.

277 {
278  g_return_val_if_fail (EV_IS_HISTORY_ACTION (action), FALSE);
279 
280  return action->priv->popup_shown;
281 }

+ Here is the caller graph for this function:

GType ev_history_action_get_type ( void  )
GtkWidget* ev_history_action_new ( EvHistory history)

Definition at line 268 of file ev-history-action.c.

269 {
270  g_return_val_if_fail (EV_IS_HISTORY (history), NULL);
271 
272  return GTK_WIDGET (g_object_new (EV_TYPE_HISTORY_ACTION, "history", history, NULL));
273 }

+ Here is the caller graph for this function: