]> www.fi.muni.cz Git - evince.git/blobdiff - libdocument/ev-link-action.h
[dualscreen] fix crash on ctrl+w and fix control window closing
[evince.git] / libdocument / ev-link-action.h
index 19656796fbcdeaae1216aece19a403a146665891..43d167305fe723db269ed1666745769eb6e6e886 100644 (file)
@@ -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