~ubuntu-branches/ubuntu/maverick/ldtp/maverick

« back to all changes in this revision

Viewing changes to src/remap.h

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2010-02-04 10:36:08 UTC
  • mfrom: (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20100204103608-dhqdo7jk10ygwt40
Tags: 2.0.2-1
* New upstream release:
  + Packaging is based on Ubuntu packages, Thanks Ubuntu!
  + LDTPv2 is a complete rewrite of LDTPv1 in Python
  + LTFX is completely removed in LDTP v2 in favor of wnck
* debian/control:
  + Updated to Standards-Version 3.8.4 (no changes needed)
  + Fixed typo in description python->Python
  + ldtp is now arch: all package
* debian/rules:
  + Using dh to make it simple
* Removed unused manpages
* Updated package to use new source format 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
 
/*
3
 
 * Linux Desktop Testing Project http://ldtp.freedesktop.org
4
 
 *
5
 
 * Author:
6
 
 *    Premkumar J <jpremkumar@novell.com>
7
 
 *
8
 
 * Copyright 2004 - 2006 Novell, Inc.
9
 
 *
10
 
 * This program is free software; you can redistribute it and/or
11
 
 * modify it under the terms of the GNU Lesser General Public
12
 
 * License as published by the Free Software Foundation; either
13
 
 * version 2 of the License, or (at your option) any later version.
14
 
 *
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
 
 * Lesser General Public License for more details.
19
 
 *
20
 
 * You should have received a copy of the GNU Lesser General Public
21
 
 * License along with this program; if not, write to the
22
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23
 
 * Boston, MA 02110, USA.
24
 
 */
25
 
 
26
 
#ifndef __REMAP_H__
27
 
#define __REMAP_H__
28
 
 
29
 
gchar *strip_delim (const gchar *text, gchar ch);
30
 
GHashTable *do_remap (Accessible *accessible, char *name, GHashTable *context,
31
 
                      GHashTable *context_attributes, gboolean locale_flag,
32
 
                      gboolean overloadedWindowName, gboolean remap_context,
33
 
                      gchar *curr_context_name); 
34
 
char *get_window_name_in_appmap_format (char *window_name, AccessibleRole role);
35
 
 
36
 
#endif