1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
* Copyright (C) 2009 - 2011 Vivien Malerba <malerba@gnome-db.org>
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __GDAUI_BAR_H__
#define __GDAUI_BAR_H__
#include <gtk/gtk.h>
G_BEGIN_DECLS
/*
* Type checking and casting macros
*/
#define GDAUI_TYPE_BAR (gdaui_bar_get_type())
#define GDAUI_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GDAUI_TYPE_BAR, GdauiBar))
#define GDAUI_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GDAUI_TYPE_BAR, GdauiBarClass))
#define GDAUI_IS_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GDAUI_TYPE_BAR))
#define GDAUI_IS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDAUI_TYPE_BAR))
#define GDAUI_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GDAUI_TYPE_BAR, GdauiBarClass))
typedef struct _GdauiBarPrivate GdauiBarPrivate;
typedef struct _GdauiBarClass GdauiBarClass;
typedef struct _GdauiBar GdauiBar;
struct _GdauiBar
{
GtkBox parent;
/*< private > */
GdauiBarPrivate *priv;
};
struct _GdauiBarClass
{
GtkBoxClass parent_class;
};
GType gdaui_bar_get_type (void) G_GNUC_CONST;
GtkWidget *gdaui_bar_new (const gchar *text);
const gchar *gdaui_bar_get_text (GdauiBar *bar);
void gdaui_bar_set_text (GdauiBar *bar, const gchar *text);
void gdaui_bar_set_icon_from_pixbuf (GdauiBar *bar, GdkPixbuf *pixbuf);
void gdaui_bar_set_icon_from_file (GdauiBar *bar, const gchar *file);
void gdaui_bar_set_icon_from_stock (GdauiBar *bar, const gchar *stock_id, GtkIconSize size);
void gdaui_bar_set_show_icon (GdauiBar *bar, gboolean show);
gboolean gdaui_bar_get_show_icon (GdauiBar *bar);
GtkWidget *gdaui_bar_add_button_from_stock (GdauiBar *bar, const gchar *stock_id);
GtkWidget *gdaui_bar_add_search_entry (GdauiBar *bar);
G_END_DECLS
#endif
|