pango-tabs.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* Pango
  2. * pango-tabs.h: Tab-related stuff
  3. *
  4. * Copyright (C) 2000 Red Hat Software
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library 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. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library 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. #ifndef __PANGO_TABS_H__
  22. #define __PANGO_TABS_H__
  23. #include <pango/pango-types.h>
  24. G_BEGIN_DECLS
  25. typedef struct _PangoTabArray PangoTabArray;
  26. /**
  27. * PangoTabAlign:
  28. * @PANGO_TAB_LEFT: the tab stop appears to the left of the text.
  29. *
  30. * A #PangoTabAlign specifies where a tab stop appears relative to the text.
  31. */
  32. typedef enum
  33. {
  34. PANGO_TAB_LEFT
  35. /* These are not supported now, but may be in the
  36. * future.
  37. *
  38. * PANGO_TAB_RIGHT,
  39. * PANGO_TAB_CENTER,
  40. * PANGO_TAB_NUMERIC
  41. */
  42. } PangoTabAlign;
  43. /**
  44. * PANGO_TYPE_TAB_ARRAY:
  45. *
  46. * The #GObject type for #PangoTabArray.
  47. */
  48. #define PANGO_TYPE_TAB_ARRAY (pango_tab_array_get_type ())
  49. PangoTabArray *pango_tab_array_new (gint initial_size,
  50. gboolean positions_in_pixels);
  51. PangoTabArray *pango_tab_array_new_with_positions (gint size,
  52. gboolean positions_in_pixels,
  53. PangoTabAlign first_alignment,
  54. gint first_position,
  55. ...);
  56. GType pango_tab_array_get_type (void) G_GNUC_CONST;
  57. PangoTabArray *pango_tab_array_copy (PangoTabArray *src);
  58. void pango_tab_array_free (PangoTabArray *tab_array);
  59. gint pango_tab_array_get_size (PangoTabArray *tab_array);
  60. void pango_tab_array_resize (PangoTabArray *tab_array,
  61. gint new_size);
  62. void pango_tab_array_set_tab (PangoTabArray *tab_array,
  63. gint tab_index,
  64. PangoTabAlign alignment,
  65. gint location);
  66. void pango_tab_array_get_tab (PangoTabArray *tab_array,
  67. gint tab_index,
  68. PangoTabAlign *alignment,
  69. gint *location);
  70. void pango_tab_array_get_tabs (PangoTabArray *tab_array,
  71. PangoTabAlign **alignments,
  72. gint **locations);
  73. gboolean pango_tab_array_get_positions_in_pixels (PangoTabArray *tab_array);
  74. G_END_DECLS
  75. #endif /* __PANGO_TABS_H__ */