]> git.sur5r.net Git - glabels/blobdiff - src/wdgt-media-select.h
Imported Upstream version 3.0.0
[glabels] / src / wdgt-media-select.h
diff --git a/src/wdgt-media-select.h b/src/wdgt-media-select.h
deleted file mode 100644 (file)
index c8e95fc..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
-
-/*
- *  (GLABELS) Label and Business Card Creation program for GNOME
- *
- *  wdgt_media_select.h:  media selection widget module header file
- *
- *  Copyright (C) 2001-2006  Jim Evins <evins@snaught.com>.
- *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
- *  (at your option) any later version.
- *
- *  This program 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 General Public License for more details.
- *
- *  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
- */
-
-#ifndef __WDGT_MEDIA_SELECT_H__
-#define __WDGT_MEDIA_SELECT_H__
-
-#include <gtk/gtkvbox.h>
-
-G_BEGIN_DECLS
-
-#define GL_TYPE_WDGT_MEDIA_SELECT (gl_wdgt_media_select_get_type ())
-#define GL_WDGT_MEDIA_SELECT(obj) \
-        (GTK_CHECK_CAST((obj), GL_TYPE_WDGT_MEDIA_SELECT, glWdgtMediaSelect ))
-#define GL_WDGT_MEDIA_SELECT_CLASS(klass) \
-        (GTK_CHECK_CLASS_CAST ((klass), GL_TYPE_WDGT_MEDIA_SELECT, glWdgtMediaSelectClass))
-#define GL_IS_WDGT_MEDIA_SELECT(obj) \
-        (GTK_CHECK_TYPE ((obj), GL_TYPE_WDGT_MEDIA_SELECT))
-#define GL_IS_WDGT_MEDIA_SELECT_CLASS(klass) \
-        (GTK_CHECK_CLASS_TYPE ((klass), GL_TYPE_WDGT_MEDIA_SELECT))
-
-typedef struct _glWdgtMediaSelect         glWdgtMediaSelect;
-typedef struct _glWdgtMediaSelectClass    glWdgtMediaSelectClass;
-
-typedef struct _glWdgtMediaSelectPrivate  glWdgtMediaSelectPrivate;
-
-struct _glWdgtMediaSelect {
-        GtkVBox                    parent_widget;
-
-        glWdgtMediaSelectPrivate  *priv;
-};
-
-struct _glWdgtMediaSelectClass {
-        GtkVBoxClass               parent_class;
-
-        void (*changed) (glWdgtMediaSelect * media_select, gpointer user_data);
-};
-
-GType      gl_wdgt_media_select_get_type      (void) G_GNUC_CONST;
-
-GtkWidget *gl_wdgt_media_select_new           (void);
-
-gchar     *gl_wdgt_media_select_get_name      (glWdgtMediaSelect *media_select);
-
-void       gl_wdgt_media_select_set_name      (glWdgtMediaSelect *media_select,
-                                               gchar             *name);
-
-void       gl_wdgt_media_select_get_filter_parameters (glWdgtMediaSelect *media_select,
-                                                       gchar            **page_size_id,
-                                                       gchar            **category_id);
-
-void       gl_wdgt_media_select_set_filter_parameters (glWdgtMediaSelect *media_select,
-                                                       const gchar       *page_size_id,
-                                                       const gchar       *category_id);
-
-G_END_DECLS
-
-#endif