~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to libdocument/ev-link-action.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya, Josselin Mouette, Rodrigo Moya
  • Date: 2011-05-19 12:12:42 UTC
  • mfrom: (1.1.65 upstream) (1.3.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20110519121242-967hbn2nh2hunp4y
Tags: 3.0.0-4ubuntu1
[ Josselin Mouette ]
* bug-presubj: please document where to report rendering bugs.
* evince.mime: dropped. We have desktop files to handle MIME 
  associations, no need to maintain an alternate system by hand.
  Closes: #619564, #627027, #551734, #581441.

[ Rodrigo Moya ]
* Rebase from Debian and GNOME3 PPA (thanks to Rico Tzschichholz).
  Remaining Ubuntu changes:
* debian/apparmor-profile:
* debian/apparmor-profile.abstraction:
* debian/evince.apport:
* debian/evince-common.dirs:
* debian/evince-common.postinst:
* debian/evince-common.postrm:
  - Add apparmor profile
* debian/control:
  - Build-Depend on debhelper (>= 7.4.20ubuntu5), gnome-common,
    hardening-includes and liblaunchpad-integration-3.0-dev
  - Standards-Version is 3.9.1
  - Depend on apparmor
* debian/rules:
  - Include hardening.make
  - Add rule to install apparmor files
* debian/watch:
  - Watch unstable series
* debian/patches/01_lpi.patch:
  - Launchpad integration patch
* debian/patches/04_gold.patch:
  - Link against libz
* debian/patches/05_library-path.patch:
  - Fix library path for g-ir-scanner

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        EV_LINK_ACTION_TYPE_GOTO_REMOTE,
47
47
        EV_LINK_ACTION_TYPE_EXTERNAL_URI,
48
48
        EV_LINK_ACTION_TYPE_LAUNCH,
49
 
        EV_LINK_ACTION_TYPE_NAMED
 
49
        EV_LINK_ACTION_TYPE_NAMED,
 
50
        EV_LINK_ACTION_TYPE_LAYERS_STATE
50
51
        /* We'll probably fill this in more as we support the other types of
51
52
         * actions */
52
53
} EvLinkActionType;
59
60
const gchar     *ev_link_action_get_filename     (EvLinkAction *self);
60
61
const gchar     *ev_link_action_get_params       (EvLinkAction *self);
61
62
const gchar     *ev_link_action_get_name         (EvLinkAction *self);
 
63
GList           *ev_link_action_get_show_list    (EvLinkAction *self);
 
64
GList           *ev_link_action_get_hide_list    (EvLinkAction *self);
 
65
GList           *ev_link_action_get_toggle_list  (EvLinkAction *self);
62
66
 
63
67
EvLinkAction    *ev_link_action_new_dest         (EvLinkDest   *dest);
64
68
EvLinkAction    *ev_link_action_new_remote       (EvLinkDest   *dest,
67
71
EvLinkAction    *ev_link_action_new_launch       (const gchar  *filename,
68
72
                                                  const gchar  *params);
69
73
EvLinkAction    *ev_link_action_new_named        (const gchar  *name);
 
74
EvLinkAction    *ev_link_action_new_layers_state (GList        *show_list,
 
75
                                                  GList        *hide_list,
 
76
                                                  GList        *toggle_list);
70
77
 
71
78
G_END_DECLS
72
79