Blame gtk/gtktrayicon.h.icon-padding

Packit 601145
/* gtktrayicon.h
Packit 601145
 * Copyright (C) 2002 Anders Carlsson <andersca@gnu.org>
Packit 601145
 *
Packit 601145
 * This library is free software; you can redistribute it and/or
Packit 601145
 * modify it under the terms of the GNU Lesser General Public
Packit 601145
 * License as published by the Free Software Foundation; either
Packit 601145
 * version 2 of the License, or (at your option) any later version.
Packit 601145
 *
Packit 601145
 * This library is distributed in the hope that it will be useful,
Packit 601145
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 601145
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 601145
 * Lesser General Public License for more details.
Packit 601145
 *
Packit 601145
 * You should have received a copy of the GNU Lesser General Public
Packit 601145
 * License along with this library; if not, write to the
Packit 601145
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit 601145
 * Boston, MA 02111-1307, USA.
Packit 601145
 */
Packit 601145
Packit 601145
#ifndef __GTK_TRAY_ICON_H__
Packit 601145
#define __GTK_TRAY_ICON_H__
Packit 601145
Packit 601145
#include "gtkplug.h"
Packit 601145
Packit 601145
G_BEGIN_DECLS
Packit 601145
Packit 601145
#define GTK_TYPE_TRAY_ICON		(gtk_tray_icon_get_type ())
Packit 601145
#define GTK_TRAY_ICON(obj)		(G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TRAY_ICON, GtkTrayIcon))
Packit 601145
#define GTK_TRAY_ICON_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TRAY_ICON, GtkTrayIconClass))
Packit 601145
#define GTK_IS_TRAY_ICON(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TRAY_ICON))
Packit 601145
#define GTK_IS_TRAY_ICON_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TRAY_ICON))
Packit 601145
#define GTK_TRAY_ICON_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TRAY_ICON, GtkTrayIconClass))
Packit 601145
	
Packit 601145
typedef struct _GtkTrayIcon	   GtkTrayIcon;
Packit 601145
typedef struct _GtkTrayIconPrivate GtkTrayIconPrivate;
Packit 601145
typedef struct _GtkTrayIconClass   GtkTrayIconClass;
Packit 601145
Packit 601145
struct _GtkTrayIcon
Packit 601145
{
Packit 601145
  GtkPlug parent_instance;
Packit 601145
Packit 601145
  GtkTrayIconPrivate *priv;
Packit 601145
};
Packit 601145
Packit 601145
struct _GtkTrayIconClass
Packit 601145
{
Packit 601145
  GtkPlugClass parent_class;
Packit 601145
Packit 601145
  void (*__gtk_reserved1);
Packit 601145
  void (*__gtk_reserved2);
Packit 601145
  void (*__gtk_reserved3);
Packit 601145
  void (*__gtk_reserved4);
Packit 601145
  void (*__gtk_reserved5);
Packit 601145
  void (*__gtk_reserved6);
Packit 601145
};
Packit 601145
Packit 601145
GType          gtk_tray_icon_get_type         (void) G_GNUC_CONST;
Packit 601145
Packit 601145
GtkTrayIcon   *_gtk_tray_icon_new_for_screen  (GdkScreen   *screen,
Packit 601145
					       const gchar *name);
Packit 601145
Packit 601145
GtkTrayIcon   *_gtk_tray_icon_new             (const gchar *name);
Packit 601145
Packit 601145
guint          _gtk_tray_icon_send_message    (GtkTrayIcon *icon,
Packit 601145
					       gint         timeout,
Packit 601145
					       const gchar *message,
Packit 601145
					       gint         len);
Packit 601145
void           _gtk_tray_icon_cancel_message  (GtkTrayIcon *icon,
Packit 601145
					       guint        id);
Packit 601145
Packit 601145
GtkOrientation _gtk_tray_icon_get_orientation (GtkTrayIcon *icon);
Packit 601145
					    
Packit 601145
G_END_DECLS
Packit 601145
Packit 601145
#endif /* __GTK_TRAY_ICON_H__ */