Padraig O'Briain [Mon, 20 Aug 2001 08:35:46 +0000 (08:35 +0000)]
Swap height and width arguments to atk_image_get_image_size Swap height
* docs/tmpl/atkimage.sgml atk/atkimage.h:
Swap height and width arguments to atk_image_get_image_size
* atk/atkimage.c:
Swap height and height arguments to atk_image_get_image_size
Do not crash if NULL pointers are passed for return values
Padraig O'Briain [Fri, 17 Aug 2001 14:56:55 +0000 (14:56 +0000)]
Swap height and width arguments to atk_image_get_image_size Swap height
* docs/tmpl/atkimage.sgml atk/atktext.h:
Swap height and width arguments to atk_image_get_image_size
* atk/atktext.c:
Swap height and height arguments to atk_image_get_image_size
Do not crash if NULL pointers are passed for return values
Padraig O'Briain [Fri, 17 Aug 2001 14:34:21 +0000 (14:34 +0000)]
Change parameter names *offset to *_offset Do not crash if NULL pointers
* docs/tmpl/atktext.sgml atk/atktext.h:
Change parameter names *offset to *_offset
* atk/atkcomponent.c:
Do not crash if NULL pointers are passed for return values
* atk/atktext.c:
Change parameter names *offset to *_offset
Do not crash if NULL pointers are passed for return values
Bill Haneman [Thu, 16 Aug 2001 21:47:42 +0000 (21:47 +0000)]
Changed atk_util_add_global_event_listener to ensure that
ATK_UTIL class has been registered before the call.
Padraig O'Briain [Thu, 16 Aug 2001 11:51:51 +0000 (11:51 +0000)]
Ensure that atk_attribute_set_free is in the documentation.
* docs/atk-sections.txt, docs/tmpl/atktext.sgml:
Ensure that atk_attribute_set_free is in the documentation.
Padraig O'Briain [Thu, 16 Aug 2001 11:36:03 +0000 (11:36 +0000)]
Swapped order of width and height arguments to
* atk/atktext.[c|h], docs/tmpl/atktext.sgml:
Swapped order of width and height arguments to
atk_text_get_character_extents()
Changed AtkAttrributeSet_free to atk_attribute_set_free
Padraig O'Briain [Wed, 15 Aug 2001 16:54:52 +0000 (16:54 +0000)]
Changed "length" argument of atk_text_get_character_extents() to "height".
* atk/atktext.[c|h], docs/tmpl/atktext.sgml:
Changed "length" argument of atk_text_get_character_extents() to
"height".
Jens Finke [Tue, 14 Aug 2001 22:32:17 +0000 (22:32 +0000)]
Added atk.spec and atk.spec.in files. Moved GLIB_REQUIRED_VERSION to top
2001-08-15 Jens Finke <jens@gnome.org>
* Makefile.am (EXTRA_DIST): Added atk.spec and atk.spec.in files.
* configure.in: Moved GLIB_REQUIRED_VERSION to top of file and
added a AC_SUBST for it. This is needed for the spec.in file.
Added atk.spec to output list.
* atk.spec.in: New file.
Padraig O'Briain [Mon, 13 Aug 2001 16:02:44 +0000 (16:02 +0000)]
atk/atkcomponent.[c|h] docs/atk-sections.txt, docs/tmpl/atkcomponent.sgml
* atk/atkcomponent.[c|h]
* docs/atk-sections.txt, docs/tmpl/atkcomponent.sgml
Change atk_component_get_accessible_at_point to
atk_component_ref_accessible_at_point so it will work for flyweights
Owen Taylor [Sun, 12 Aug 2001 14:35:04 +0000 (14:35 +0000)]
Set GPATH to fix srcdir != builddir problems with GNU make.
Sun Aug 12 10:33:02 2001 Owen Taylor <otaylor@redhat.com>
* docs/Makefile.am: Set GPATH to fix srcdir != builddir problems
with GNU make.
Brian Cameron [Thu, 9 Aug 2001 11:28:15 +0000 (11:28 +0000)]
Updated docs
Padraig O'Briain [Thu, 9 Aug 2001 10:58:07 +0000 (10:58 +0000)]
atk/atkaction.c, atk/atkcomponent.c Remove all instances of
* atk/atkaction.c, atk/atkcomponent.c
Remove all instances of g_return_if_fail (foo != NULL); that are
immediately before a g_return_if_fail (ATK_IS_FOO (foo));
since the second check catches the NULL.
* atk/atkcomponent.c
Add functions atk_component_real_contains(),
atk_component_real_get_position(), atkcomponent_real_get_size()
as default implementations for atk_component_contains(),
atk_component_get_position(), atk_component_get_size()
Brian Cameron [Tue, 7 Aug 2001 15:26:38 +0000 (15:26 +0000)]
Updated AtkImage get_position to get_image_position
so the naming is consistant. Now get_image_position
and get_image_size return -1 for x/y/height/width
if AtkImage implementations of these functions is
not found.
Padraig O'Briain [Tue, 31 Jul 2001 09:19:49 +0000 (09:19 +0000)]
atk/atkobject.c Create an object relation set when the object is created.
* atk/atkobject.c
Create an object relation set when the object is created.
Brian Cameron [Mon, 30 Jul 2001 17:42:46 +0000 (17:42 +0000)]
Changed first argument of atk_add_global_event_listener
so the callback function is of type GSignalEmissionHook
instead of AtkEventListener. AtkEventListener is
appropriate for Focus event callbacks, but not generic
ones.
Padraig O'Briain [Fri, 27 Jul 2001 14:12:01 +0000 (14:12 +0000)]
Add function atk_object_real_ref_state_set() which creates the state set
* atk/atkobject.c:
Add function atk_object_real_ref_state_set() which creates the
state set and adds states ATK_STATE_SELECTABLE and ATK_STATE_SELECTED
if appropriate
Padraig O'Briain [Fri, 27 Jul 2001 08:33:35 +0000 (08:33 +0000)]
Remove all instances of g_return_if_fail (foo != NULL); that are
* atk/*.c:
Remove all instances of g_return_if_fail (foo != NULL); that are
immediately before a g_return_if_fail (ATK_IS_FOO (foo));
since the second check catches the NULL.
Bill Haneman [Thu, 26 Jul 2001 09:40:36 +0000 (09:40 +0000)]
Updated ChangeLog entries which had gotten misplaced.
Padraig O'Briain [Thu, 26 Jul 2001 08:42:16 +0000 (08:42 +0000)]
add extra files to MAINTAINERCLEANFILES
* atk/Makefile.am
Fix problem with ATK not building after running make maintainer-clean
and autogen.sh: add extra files to MAINTAINERCLEANFILES
Bill Haneman [Wed, 25 Jul 2001 18:14:33 +0000 (18:14 +0000)]
Modified Files: atk-uninstalled.pc.in atk.pc.in configure.in
Modified Files:
atk-uninstalled.pc.in atk.pc.in configure.in
atk/atkeditabletext.h atk/atktext.h atk/makefile.msc
Removed last of pango dependencies in ATK: removed (unused) #includes,
and removed dependencies from makefile.msc and configure.in
Padraig O'Briain [Tue, 24 Jul 2001 10:24:59 +0000 (10:24 +0000)]
Default implementations for some some functions atk_object_real_get_name,
* atk/atkobject.[c|h]
Move some implementation from GAIL:
Default implementations for some some functions
atk_object_real_get_name, atk_object_real_set_name,
atk_object_real_get_description, atk_object_real_set_description,
atk_object_real_get_parent, atk_object_real_set_parent,
atk_object_real_get_role,
atk_object_real_connect_property_change_handler,
atk_object_real_remove_property_change_handler,
atk_object_notify,
definition of property-changed signal.
Initialize pointers to NULL in atk_object_init().
Initialize uninitialized function pointers to NULL in
atk_object_class_init().
Brian Cameron [Mon, 23 Jul 2001 14:46:29 +0000 (14:46 +0000)]
Changed children_changed signal to allow NULL pointers
for the 2nd argument to the signal handler.
Hans Breuer [Fri, 20 Jul 2001 17:25:03 +0000 (17:25 +0000)]
added more exports updated win32 build
2001-07-20 Hans Breuer <hans@breuer.org>
* atk/atk.def : added more exports
* atk/makefile.msc : updated win32 build
Padraig O'Briain [Fri, 20 Jul 2001 09:01:43 +0000 (09:01 +0000)]
atk/atkaction.[c|h], docs/atk-sections.txt, docs/tmpl/atkaction.sgml Add
* atk/atkaction.[c|h], docs/atk-sections.txt,
docs/tmpl/atkaction.sgml
Add atk_action_get_name() and atk_action_set_description()
Brian Cameron [Thu, 19 Jul 2001 09:13:21 +0000 (09:13 +0000)]
Updated docs/tmpl/atkstate.sgml to reflect recent changes in AtkState.
Padraig O'Briain [Wed, 18 Jul 2001 15:56:36 +0000 (15:56 +0000)]
atk/atkstate.[c|h] Add ATK_STATE_ENABLED so we can distinguish between a
* atk/atkstate.[c|h]
Add ATK_STATE_ENABLED so we can distinguish between a consistent
and inconsistent GtkToggleButton
Brian Cameron [Mon, 16 Jul 2001 16:55:23 +0000 (16:55 +0000)]
atk/atkeditabletext.c atk/atktext.c atk/atktext.h atk/atkutil.h
* atk/atkeditabletext.c atk/atktext.c atk/atktext.h atk/atkutil.h
docs/atk-sections.txt docs/tmpl/atktext.sgml docs/tmpl/atkutil.sgml
gail_textattributes_update.pat is for gail/gail and integrates the
ATK_ATTRIBUTE_* macros in the gail implementations.
atk_docs_textattributes_update.pat is for atk/docs and patches
atk-sections.txt etc. for improved docs
atk_atk_textattributes_update.pat is for atk/atk and included the
new ATK_ATTRIBUTE_* macros and updated gtk-doc comments.
Darin Adler [Fri, 13 Jul 2001 23:58:49 +0000 (23:58 +0000)]
Add missing <string.h> include. Add missing <string.h> include
* atk/atkstate.c: Add missing <string.h> include.
* tests/teststateset.c: Add missing <string.h> include
Darin Adler [Fri, 13 Jul 2001 16:26:35 +0000 (16:26 +0000)]
Ignore some generated files. Get rid of call to autoheader since the
* .cvsignore: Ignore some generated files.
* autogen.sh: Get rid of call to autoheader since the
configure file doesn't include AM_CONFIG_HEADER.
Padraig O'Briain [Wed, 11 Jul 2001 16:04:14 +0000 (16:04 +0000)]
Changes to build with FORTE compiler
Brian Cameron [Wed, 11 Jul 2001 15:29:35 +0000 (15:29 +0000)]
Added new atkdocument.sgml file.
Padraig O'Briain [Wed, 11 Jul 2001 13:15:50 +0000 (13:15 +0000)]
atk/atkimage.c atk/atkutil.c Changes to build with Sun's FORTE compiler.
* atk/atkimage.c atk/atkutil.c
Changes to build with Sun's FORTE compiler.
Brian Cameron [Tue, 10 Jul 2001 12:44:02 +0000 (12:44 +0000)]
Updated docs.
Tim Janik [Mon, 2 Jul 2001 04:34:26 +0000 (04:34 +0000)]
s/signal_newc/signal_new/ to adapt to recent GSignal changes.
Mon Jul 2 06:37:09 2001 Tim Janik <timj@gtk.org>
* atk/atktext.c (atk_text_base_init):
* atk/atktable.c (atk_table_base_init):
* atk/atkobject.c (atk_object_init): s/signal_newc/signal_new/
to adapt to recent GSignal changes.
Brian Cameron [Fri, 29 Jun 2001 16:56:29 +0000 (16:56 +0000)]
Added new functions to AtkUtil.
Brian Cameron [Fri, 29 Jun 2001 14:06:36 +0000 (14:06 +0000)]
Added new atk document interface.
Brian Cameron [Thu, 28 Jun 2001 15:17:36 +0000 (15:17 +0000)]
Updated image docs
Brian Cameron [Thu, 28 Jun 2001 15:17:27 +0000 (15:17 +0000)]
Updated image docs.
Brian Cameron [Thu, 28 Jun 2001 15:08:52 +0000 (15:08 +0000)]
Minor fixes to docs.
Brian Cameron [Thu, 28 Jun 2001 15:03:40 +0000 (15:03 +0000)]
Updated docs files.
Brian Cameron [Thu, 28 Jun 2001 14:59:07 +0000 (14:59 +0000)]
Updated so that functions that take screen coords as
input/output also take an enum specifying whether
the coords are screen or top-level window based.
Brian Cameron [Thu, 28 Jun 2001 10:47:13 +0000 (10:47 +0000)]
Removed period.
Brian Cameron [Thu, 28 Jun 2001 10:45:34 +0000 (10:45 +0000)]
dded atkstreamablecontent.sgml
Brian Cameron [Thu, 28 Jun 2001 10:28:12 +0000 (10:28 +0000)]
Cleaned up docs.
Brian Cameron [Thu, 28 Jun 2001 10:11:00 +0000 (10:11 +0000)]
added comment.
Brian Cameron [Thu, 28 Jun 2001 10:08:42 +0000 (10:08 +0000)]
Updated atktable.c to work with the new signal definitions.
Brian Cameron [Thu, 28 Jun 2001 10:01:46 +0000 (10:01 +0000)]
Updated signal handler definitions.
Brian Cameron [Wed, 27 Jun 2001 16:30:33 +0000 (16:30 +0000)]
Updated AtkXYCoords enum.
Brian Cameron [Wed, 27 Jun 2001 16:20:01 +0000 (16:20 +0000)]
Updated gtk-docs fixing spelling errors and making minor
changes to the API.
Louise Miller [Wed, 27 Jun 2001 12:31:48 +0000 (12:31 +0000)]
changed docs for atk_selection_select_all_selection so that it returns
a gboolean
Louise Miller [Wed, 27 Jun 2001 11:52:34 +0000 (11:52 +0000)]
*atk/atkselection.h, atk/atkselection.c changed return type to gboolean
2001-06-27 Louise Miller <lousie.miller@sun.com>
*atk/atkselection.h, atk/atkselection.c
changed return type to gboolean for
atk_selection_select_all_selection
Brian Cameron [Tue, 26 Jun 2001 12:33:27 +0000 (12:33 +0000)]
Added ATK_STATE_STALE. Updated docs.
Lucy Brophy [Fri, 22 Jun 2001 13:57:41 +0000 (13:57 +0000)]
Removed the macro ATK_TEXT_BOUNDARY_CURSOR_POS from atk/atktext.h
Brian Cameron [Thu, 21 Jun 2001 15:59:44 +0000 (15:59 +0000)]
Here is a patch for
atkeditabletext.h
atkobject.h
atktext.c
atktext.h
in atk/atk. There is a new convenience function in atktext.[ch] called
AtkAttributeSet_free() which frees an AtkAttributeSet. I have also removed the
definitions of AtkAttribute and AtkAttributeSet from atkobject.h and moved them
to atktext.h. atkeditabletext.h now #includes atktext.h so it has access to
these definitions. I have discussed these changes with Bill.
Louise Miller [Thu, 21 Jun 2001 13:19:59 +0000 (13:19 +0000)]
Updated the docs to include 4 new functions that were added to atktable.
add_row_selection,remove_row_selection,add_column_selection,remove_column_selection
Brian Cameron [Thu, 21 Jun 2001 12:55:08 +0000 (12:55 +0000)]
Changed the obj argument in many functions to table so it matches the
atk docs.
Brian Cameron [Wed, 20 Jun 2001 15:43:14 +0000 (15:43 +0000)]
atk_no_op_object_get_type. Change #ifdef __cplusplus mess to nicer
G_{BEGIN,END}_DECLS.
Brian Cameron [Wed, 20 Jun 2001 13:51:27 +0000 (13:51 +0000)]
Updated atkmarshal.list removing needless marshaller and updated signal
in atktable.c
Louise Miller [Wed, 20 Jun 2001 13:41:52 +0000 (13:41 +0000)]
*atk/atktable.h, atk/table.c, docs/tmpl/atktable.sgml Changed parameters
2001-06-20 Louise Miller <louise.miller@sun.com>
*atk/atktable.h, atk/table.c, docs/tmpl/atktable.sgml
Changed parameters for get_selected_rows/get_selected_columns
Added 4 new functions, add_row_selection, remove_row_selection,
add_column_selection, remove_column_selection
Brian Cameron [Tue, 19 Jun 2001 15:03:29 +0000 (15:03 +0000)]
Fixed changelog comment.
Brian Cameron [Tue, 19 Jun 2001 15:02:57 +0000 (15:02 +0000)]
Fixed minor bug with signals.
Brian Cameron [Mon, 18 Jun 2001 16:51:04 +0000 (16:51 +0000)]
Added signals
Brian Cameron [Fri, 15 Jun 2001 16:16:35 +0000 (16:16 +0000)]
Made docs more clear.
Brian Cameron [Fri, 15 Jun 2001 13:44:32 +0000 (13:44 +0000)]
Updated docs.
Brian Cameron [Fri, 15 Jun 2001 13:20:49 +0000 (13:20 +0000)]
Now atkselection returns a boolean for add_selection, clear_selection
and remove_selection to indiate if the operation was successful or not.
Brian Cameron [Fri, 15 Jun 2001 09:39:31 +0000 (09:39 +0000)]
Updated docs.
Brian Cameron [Thu, 14 Jun 2001 16:42:32 +0000 (16:42 +0000)]
Updated the atktext.c docs.
Lucy Brophy [Thu, 14 Jun 2001 16:16:03 +0000 (16:16 +0000)]
Changes to the atk_text_get_text[at/before/after]_offset interfaces
Padraig O'Briain [Thu, 14 Jun 2001 12:08:18 +0000 (12:08 +0000)]
install atknoopobject.h and atknoopobjectfactory.h
* atk/Makefile.am: install atknoopobject.h and atknoopobjectfactory.h
Havoc Pennington [Wed, 13 Jun 2001 19:27:15 +0000 (19:27 +0000)]
updated
2001-06-11 Havoc Pennington <hp@redhat.com>
* NEWS: updated
* configure.in: bump version to 0.2 and add infrastructure for
libtool version info. Assumes GTK versioning scheme (major.minor
is binary compatible)
* atk/Makefile.am (LDFLAGS): set version info
(stamp-atkmarshal.h): glib-genmarshal already includes top_builddir
Brian Cameron [Wed, 13 Jun 2001 11:28:24 +0000 (11:28 +0000)]
Now get/set row_description, column_description, caption use gchar *
rather than AtkObject *
Brian Cameron [Wed, 13 Jun 2001 11:14:32 +0000 (11:14 +0000)]
Updated so that get/set row/column header functions
work with AtkObjects rather than AtkTables. Organized
the header file a little more cleanly.
Padraig O'Briain [Tue, 12 Jun 2001 12:57:12 +0000 (12:57 +0000)]
Add signal model-changed.
* atk/atkmarshal.list, atk/atktable.h atk/atktable.c:
Add signal model-changed.
* atk/atkobject.c: Add properties
accessible-role, accessible-table-caption,
accessible-table-column-header, accessible-table-column_description.
accessible-table-row-header, accessible-table-row_description.
accessible-table-summary, accessible-model
Brian Cameron [Tue, 12 Jun 2001 12:13:20 +0000 (12:13 +0000)]
The changes include:
- moved function atk_text_set_run_attributes() to
atk_editable_text_set_run_attributes()
- defined an enum AtkXYCoords in Atktext.h
- moved definitions of AtkAttribute and AtkAttributeSet from atktext.h to
atkobject.h (temporary solution until we decide a better place to define them).
- Added extra param to atk_text_get_character_extents() and
atk_text_get_offset_at_point() of type AtkXYCoords.
I decided to make AtkAttributeSet a singly-linked list (a GSList) instead of a
doubley-linked list (a GList). There is no need for it to be doubley-linked
which is less efficient.
Owen Taylor [Sat, 9 Jun 2001 19:20:04 +0000 (19:20 +0000)]
Only include gthread-2.0 in CFLAGS, not in LIBS. (Always linking with
Sat Jun 9 15:17:00 2001 Owen Taylor <otaylor@redhat.com>
* configure.in (DEP_CFLAGS): Only include gthread-2.0 in
CFLAGS, not in LIBS. (Always linking with -lpthread
is a noticeable speed hit.)
Owen Taylor [Thu, 7 Jun 2001 21:08:05 +0000 (21:08 +0000)]
add cvsignores
Owen Taylor [Thu, 7 Jun 2001 21:04:46 +0000 (21:04 +0000)]
Really fix marshal generation.
Thu Jun 7 17:03:37 2001 Owen Taylor <otaylor@redhat.com>
* atk/Makefile.am: Really fix marshal generation.
Havoc Pennington [Thu, 7 Jun 2001 20:38:07 +0000 (20:38 +0000)]
fix up the glib-genmarshal stuff
2001-06-07 Havoc Pennington <hp@redhat.com>
* atk/Makefile.am ($(srcdir)/atkmarshal.c): fix up the
glib-genmarshal stuff
Havoc Pennington [Thu, 7 Jun 2001 16:39:50 +0000 (16:39 +0000)]
subst GLIB_GENMARSHAL, GOBJECT_QUERY, GLIB_MKENUMS variables
2001-06-07 Havoc Pennington <hp@redhat.com>
* m4macros/glib-2.0.m4: subst GLIB_GENMARSHAL, GOBJECT_QUERY,
GLIB_MKENUMS variables
* gmodule-2.0.pc.in: add gmodule_supported variable
* glib-2.0.pc.in: add glib_genmarshal, gobject_query,
glib_mkenums variables
* configure.in: put G_MODULE_SUPPORTED value into
.pc files
* autogen.sh: support AUTOGEN_SUBDIR_MODE
* Makefile.am: add -uninstalled.pc.in to EXTRA_DIST
2001-06-07 Havoc Pennington <hp@redhat.com>
* pango/Makefile.am: add libpango.la to _DEPENDENCIES for the
other libs
* configure.in: use AM_PATH_GLIB_2_0
* autogen.sh: support AUTOGEN_SUBDIR_MODE
* Makefile.am: dist the .pc.in files
2001-06-07 Havoc Pennington <hp@redhat.com>
* atk/Makefile.am: use @GLIB_GENMARSHAL@ so we can use uninstalled
glib-genmarshal
* configure.in: rearrange the library checks to support
uninstalled linking
* autogen.sh: add support for AUTOGEN_SUBDIR_MODE
* atk-uninstalled.pc.in: new file, allows linking to uninstalled
ATK in giant GTK tarball
2001-06-07 Havoc Pennington <hp@redhat.com>
* tests/Makefile.am: add missing -I flag
* gtk/Makefile.am: use @GLIB_MKENUMS@, @GLIB_GENMARSHAL@, etc.
* configure.in: use pkg-config to see if GModule is
supported; fix to properly turn on included loaders
when GModule isn't supported; don't use AC_CHECK_LIB
when libs are not installed yet
* autogen.sh: add support for AUTOGEN_SUBDIR_MODE
* Makefile.am (SUBDIRS): add m4macros subdir
* gtk/Makefile.am: $(srcdir)/foo targets must be $(srcdir)/foo in
dependencies also.
Brian Cameron [Thu, 7 Jun 2001 16:27:50 +0000 (16:27 +0000)]
Updated docs to reflect recent changes to atkeditabletext and atktext
interfaces
Brian Cameron [Thu, 7 Jun 2001 15:46:29 +0000 (15:46 +0000)]
Remvoed atk-api.sgml since it isn't used.
Brian Cameron [Wed, 6 Jun 2001 13:42:10 +0000 (13:42 +0000)]
Added atk_text_ref_run_attributes() and atk_text_set_run_attributes().
Removed atk_text_get_range_attributes()
Padraig O'Briain [Wed, 6 Jun 2001 08:38:01 +0000 (08:38 +0000)]
atk/Makefile.am, atk/atk.h Updated comments
* New files atk/atkstreamablecontent.[ch]
Updated files: atk/Makefile.am, atk/atk.h
* atk/atkvalue.c: Updated comments
Padraig O'Briain [Wed, 6 Jun 2001 07:21:01 +0000 (07:21 +0000)]
Add declaration for atk_registry_get_type()
* atk/atkregistry.h: Add declaration for atk_registry_get_type()
Padraig O'Briain [Tue, 5 Jun 2001 12:10:13 +0000 (12:10 +0000)]
*atk/atkobject.c: Correct typos in previous commit
Brian Cameron [Tue, 5 Jun 2001 10:05:50 +0000 (10:05 +0000)]
Slightly improved docs in atktext.c
Padraig O'Briain [Tue, 5 Jun 2001 08:24:20 +0000 (08:24 +0000)]
Add property accessible-visible-data
* atk/atkobject.c: Add property accessible-visible-data
Brian Cameron [Fri, 1 Jun 2001 16:57:28 +0000 (16:57 +0000)]
Removed get_row_col_at_offset from atktext.[ch]
Padraig O'Briain [Fri, 1 Jun 2001 15:22:33 +0000 (15:22 +0000)]
Add support for setting and getting accessible-value property.
* atk/atkobject.c: Add support for setting and getting
accessible-value property.
* atk/atkvalue.[ch] Make GValue in atk_value_set_current_value const
Brian Cameron [Fri, 1 Jun 2001 13:37:26 +0000 (13:37 +0000)]
Updated
Brian Cameron [Fri, 1 Jun 2001 13:37:06 +0000 (13:37 +0000)]
Fixed Makefile.am so that it includes the atk-overrides.txt as a DIST file.
Brian Cameron [Fri, 1 Jun 2001 13:36:33 +0000 (13:36 +0000)]
Added new logic for handling multiple select regions to atktext.[ch].
Removed redundant logic from atkeditabletext.[ch].
Brian Cameron [Fri, 1 Jun 2001 13:25:25 +0000 (13:25 +0000)]
Added atk-overrides.txt file.
Brian Cameron [Thu, 31 May 2001 15:01:15 +0000 (15:01 +0000)]
Updated docs/Makefile.am so that make install works.
Brian Cameron [Thu, 31 May 2001 14:16:21 +0000 (14:16 +0000)]
Added atkmarshal.list
Brian Cameron [Thu, 31 May 2001 14:15:06 +0000 (14:15 +0000)]
Added atk_marshal_VOID__INT_INT marshaller. Updated the Makefiles so the
proper marshall files get included in the dist. Updated the Makefiles
and configure.in so that the docs get included in the dist.
Owen Taylor [Tue, 29 May 2001 22:19:19 +0000 (22:19 +0000)]
Fix GNU sedism (#55430)
Tue May 29 18:17:11 2001 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Fix GNU sedism (#55430)
Padraig O'Briain [Tue, 29 May 2001 16:19:26 +0000 (16:19 +0000)]
Define new properties accessible-text, accessible-caret,
* atk/atkobject.c: Define new properties accessible-text,
accessible-caret, accessible-selection and accessible-value
Lucy Brophy [Tue, 29 May 2001 14:30:48 +0000 (14:30 +0000)]
Updated comments for gtk-doc by Oisin Boydell
Brian Cameron [Tue, 29 May 2001 11:41:05 +0000 (11:41 +0000)]
Improved atk docs for atktext.c