Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

66 рядки
2.2 KiB

  1. /* GTK - The GIMP Toolkit
  2. *
  3. * Copyright (C) 2007 John Stowers, Neil Jagdish Patel.
  4. * Copyright (C) 2009 Bastien Nocera, David Zeuthen
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 02111-1307, USA.
  20. *
  21. * Code adapted from egg-spinner
  22. * by Christian Hergert <christian.hergert@gmail.com>
  23. */
  24. #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  25. #error "Only <gtk/gtk.h> can be included directly."
  26. #endif
  27. #ifndef __GTK_SPINNER_H__
  28. #define __GTK_SPINNER_H__
  29. #include <gtk/gtkdrawingarea.h>
  30. G_BEGIN_DECLS
  31. #define GTK_TYPE_SPINNER (gtk_spinner_get_type ())
  32. #define GTK_SPINNER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SPINNER, GtkSpinner))
  33. #define GTK_SPINNER_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GTK_SPINNER, GtkSpinnerClass))
  34. #define GTK_IS_SPINNER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SPINNER))
  35. #define GTK_IS_SPINNER_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), GTK_TYPE_SPINNER))
  36. #define GTK_SPINNER_GET_CLASS (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SPINNER, GtkSpinnerClass))
  37. typedef struct _GtkSpinner GtkSpinner;
  38. typedef struct _GtkSpinnerClass GtkSpinnerClass;
  39. typedef struct _GtkSpinnerPrivate GtkSpinnerPrivate;
  40. struct _GtkSpinner
  41. {
  42. GtkDrawingArea parent;
  43. GtkSpinnerPrivate *priv;
  44. };
  45. struct _GtkSpinnerClass
  46. {
  47. GtkDrawingAreaClass parent_class;
  48. };
  49. GType gtk_spinner_get_type (void) G_GNUC_CONST;
  50. GtkWidget *gtk_spinner_new (void);
  51. void gtk_spinner_start (GtkSpinner *spinner);
  52. void gtk_spinner_stop (GtkSpinner *spinner);
  53. G_END_DECLS
  54. #endif /* __GTK_SPINNER_H__ */