You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

105 lines
4.8 KiB

  1. /* ATK - Accessibility Toolkit
  2. * Copyright 2001 Sun Microsystems Inc.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. * Boston, MA 02111-1307, USA.
  18. */
  19. #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
  20. #error "Only <atk/atk.h> can be included directly."
  21. #endif
  22. #ifndef __ATK_EDITABLE_TEXT_H__
  23. #define __ATK_EDITABLE_TEXT_H__
  24. #include <atk/atkobject.h>
  25. #include <atk/atktext.h>
  26. G_BEGIN_DECLS
  27. /*
  28. * AtkEditableText is used to support access in an "accessibility" context
  29. * to editing features of editable text widgets.
  30. */
  31. #define ATK_TYPE_EDITABLE_TEXT (atk_editable_text_get_type ())
  32. #define ATK_IS_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_EDITABLE_TEXT)
  33. #define ATK_EDITABLE_TEXT(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_EDITABLE_TEXT, AtkEditableText)
  34. #define ATK_EDITABLE_TEXT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATK_TYPE_EDITABLE_TEXT, AtkEditableTextIface))
  35. #ifndef _TYPEDEF_ATK_EDITABLE_TEXT_
  36. #define _TYPEDEF_ATK_EDITABLE_TEXT_
  37. typedef struct _AtkEditableText AtkEditableText;
  38. #endif
  39. typedef struct _AtkEditableTextIface AtkEditableTextIface;
  40. struct _AtkEditableTextIface
  41. {
  42. GTypeInterface parent_interface;
  43. gboolean (* set_run_attributes) (AtkEditableText *text,
  44. AtkAttributeSet *attrib_set,
  45. gint start_offset,
  46. gint end_offset);
  47. void (* set_text_contents) (AtkEditableText *text,
  48. const gchar *string);
  49. void (* insert_text) (AtkEditableText *text,
  50. const gchar *string,
  51. gint length,
  52. gint *position);
  53. void (* copy_text) (AtkEditableText *text,
  54. gint start_pos,
  55. gint end_pos);
  56. void (* cut_text) (AtkEditableText *text,
  57. gint start_pos,
  58. gint end_pos);
  59. void (* delete_text) (AtkEditableText *text,
  60. gint start_pos,
  61. gint end_pos);
  62. void (* paste_text) (AtkEditableText *text,
  63. gint position);
  64. AtkFunction pad1;
  65. AtkFunction pad2;
  66. };
  67. GType atk_editable_text_get_type (void);
  68. gboolean atk_editable_text_set_run_attributes (AtkEditableText *text,
  69. AtkAttributeSet *attrib_set,
  70. gint start_offset,
  71. gint end_offset);
  72. void atk_editable_text_set_text_contents (AtkEditableText *text,
  73. const gchar *string);
  74. void atk_editable_text_insert_text (AtkEditableText *text,
  75. const gchar *string,
  76. gint length,
  77. gint *position);
  78. void atk_editable_text_copy_text (AtkEditableText *text,
  79. gint start_pos,
  80. gint end_pos);
  81. void atk_editable_text_cut_text (AtkEditableText *text,
  82. gint start_pos,
  83. gint end_pos);
  84. void atk_editable_text_delete_text (AtkEditableText *text,
  85. gint start_pos,
  86. gint end_pos);
  87. void atk_editable_text_paste_text (AtkEditableText *text,
  88. gint position);
  89. G_END_DECLS
  90. #endif /* __ATK_EDITABLE_TEXT_H__ */