]> 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 32211fe21bf494c1ea19cd8e2432e61f30ddd4dc..43d167305fe723db269ed1666745769eb6e6e886 100644 (file)
  *
  * 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)
+#error "Only <evince-document.h> can be included directly."
+#endif
+
 #ifndef EV_LINK_ACTION_H
 #define EV_LINK_ACTION_H
 
@@ -37,19 +41,17 @@ typedef struct _EvLinkActionPrivate EvLinkActionPrivate;
 #define EV_IS_LINK_ACTION_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_LINK_ACTION))
 #define EV_LINK_ACTION_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_LINK_ACTION, EvLinkActionClass))
 
-#define EV_TYPE_LINK_ACTION_TYPE         (ev_link_action_type_get_type ())
-
 typedef enum {
        EV_LINK_ACTION_TYPE_GOTO_DEST,
        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;
 
-GType            ev_link_action_type_get_type    (void) G_GNUC_CONST;
 GType            ev_link_action_get_type         (void) G_GNUC_CONST;
 
 EvLinkActionType ev_link_action_get_action_type  (EvLinkAction *self);
@@ -58,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,
@@ -66,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