diff options
author | Havoc Pennington <hp@redhat.com> | 2001-10-24 23:14:18 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-10-24 23:14:18 +0000 |
commit | 1b33f9f46721f82a42d99cd4cd2947e95b3f8f50 (patch) | |
tree | 5682d207372228c76ebe302ab878aeb896236556 /libwnck/pager.h | |
parent | bd2798a0d5ade9f73bba408ae2353348a2858a74 (diff) | |
download | libwnck-1b33f9f46721f82a42d99cd4cd2947e95b3f8f50.tar.gz |
hack to work with slightly older GTK as well as HEAD
2001-10-24 Havoc Pennington <hp@redhat.com>
* configure.in: hack to work with slightly older GTK as well as
HEAD
* libwnck/screen.c (wnck_screen_force_update): add function to
force immediate reading of screen state, instead of queueing it
* libwnck/window.c: add geometry reporting
* libwnck/pager.c: pager widget skeleton
Diffstat (limited to 'libwnck/pager.h')
-rw-r--r-- | libwnck/pager.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libwnck/pager.h b/libwnck/pager.h new file mode 100644 index 0000000..098fd98 --- /dev/null +++ b/libwnck/pager.h @@ -0,0 +1,64 @@ +/* pager object */ + +/* + * Copyright (C) 2001 Havoc Pennington + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef WNCK_PAGER_H +#define WNCK_PAGER_H + +#include <gtk/gtk.h> +#include <libwnck/screen.h> + +G_BEGIN_DECLS + +#define WNCK_TYPE_PAGER (wnck_pager_get_type ()) +#define WNCK_PAGER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), WNCK_TYPE_PAGER, WnckPager)) +#define WNCK_PAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), WNCK_TYPE_PAGER, WnckPagerClass)) +#define WNCK_IS_PAGER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), WNCK_TYPE_PAGER)) +#define WNCK_IS_PAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), WNCK_TYPE_PAGER)) +#define WNCK_PAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), WNCK_TYPE_PAGER, WnckPagerClass)) + +typedef struct _WnckPager WnckPager; +typedef struct _WnckPagerClass WnckPagerClass; +typedef struct _WnckPagerPrivate WnckPagerPrivate; + +struct _WnckPager +{ + GtkContainer parent_instance; + + WnckPagerPrivate *priv; +}; + +struct _WnckPagerClass +{ + GtkContainerClass parent_class; +}; + +GType wnck_pager_get_type (void) G_GNUC_CONST; + +GtkWidget* wnck_pager_new (WnckScreen *screen); + +void wnck_pager_set_orientation (WnckPager *pager, + GtkOrientation orientation); + +G_END_DECLS + +#endif /* WNCK_PAGER_H */ + + |