X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=libdocument%2Fev-link-action.h;h=43d167305fe723db269ed1666745769eb6e6e886;hb=439c5070022eab6cef7266aab47f978058012c72;hp=19656796fbcdeaae1216aece19a403a146665891;hpb=4912987303aefef0d02a45726b75e5fdae043982;p=evince.git diff --git a/libdocument/ev-link-action.h b/libdocument/ev-link-action.h index 19656796..43d16730 100644 --- a/libdocument/ev-link-action.h +++ b/libdocument/ev-link-action.h @@ -15,7 +15,7 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #if !defined (__EV_EVINCE_DOCUMENT_H_INSIDE__) && !defined (EVINCE_COMPILATION) @@ -46,7 +46,8 @@ typedef enum { EV_LINK_ACTION_TYPE_GOTO_REMOTE, EV_LINK_ACTION_TYPE_EXTERNAL_URI, EV_LINK_ACTION_TYPE_LAUNCH, - EV_LINK_ACTION_TYPE_NAMED + EV_LINK_ACTION_TYPE_NAMED, + EV_LINK_ACTION_TYPE_LAYERS_STATE /* We'll probably fill this in more as we support the other types of * actions */ } EvLinkActionType; @@ -59,6 +60,9 @@ const gchar *ev_link_action_get_uri (EvLinkAction *self); const gchar *ev_link_action_get_filename (EvLinkAction *self); const gchar *ev_link_action_get_params (EvLinkAction *self); const gchar *ev_link_action_get_name (EvLinkAction *self); +GList *ev_link_action_get_show_list (EvLinkAction *self); +GList *ev_link_action_get_hide_list (EvLinkAction *self); +GList *ev_link_action_get_toggle_list (EvLinkAction *self); EvLinkAction *ev_link_action_new_dest (EvLinkDest *dest); EvLinkAction *ev_link_action_new_remote (EvLinkDest *dest, @@ -67,6 +71,9 @@ EvLinkAction *ev_link_action_new_external_uri (const gchar *uri); EvLinkAction *ev_link_action_new_launch (const gchar *filename, const gchar *params); EvLinkAction *ev_link_action_new_named (const gchar *name); +EvLinkAction *ev_link_action_new_layers_state (GList *show_list, + GList *hide_list, + GList *toggle_list); G_END_DECLS