Compare commits
4 Commits
eekboard-0
...
eekboard-0
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a0540627 | |||
| 878a1c73fd | |||
| b465cbc5de | |||
| 2622e4eb59 |
@ -20,7 +20,7 @@ AC_PREREQ(2.63)
|
|||||||
dnl AC_CONFIG_SRCDIR([configure.ac])
|
dnl AC_CONFIG_SRCDIR([configure.ac])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
||||||
AC_INIT([eekboard], [0.90.6], [ueno@unixuser.org])
|
AC_INIT([eekboard], [0.90.5], [ueno@unixuser.org])
|
||||||
|
|
||||||
dnl Init automake
|
dnl Init automake
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
|
|||||||
@ -2,8 +2,5 @@ SUBDIRS = icons themes keyboards
|
|||||||
|
|
||||||
desktopdir = $(datadir)/applications
|
desktopdir = $(datadir)/applications
|
||||||
desktop_in_files = eekboard.desktop.in
|
desktop_in_files = eekboard.desktop.in
|
||||||
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
dist_desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
||||||
@INTLTOOL_DESKTOP_RULE@
|
@INTLTOOL_DESKTOP_RULE@
|
||||||
|
|
||||||
CLEANFILES = $(desktop_DATA)
|
|
||||||
EXTRA_DIST = $(desktop_in_files)
|
|
||||||
|
|||||||
@ -249,7 +249,7 @@ eek_container_init (EekContainer *self)
|
|||||||
/**
|
/**
|
||||||
* eek_container_foreach_child:
|
* eek_container_foreach_child:
|
||||||
* @container: an #EekContainer
|
* @container: an #EekContainer
|
||||||
* @callback: (scope call): an #EekCallback
|
* @callback: an #EekCallback
|
||||||
* @user_data: additional data passed to @callback
|
* @user_data: additional data passed to @callback
|
||||||
*
|
*
|
||||||
* Enumerate children of @container and run @callback with each child.
|
* Enumerate children of @container and run @callback with each child.
|
||||||
|
|||||||
@ -34,14 +34,6 @@ G_BEGIN_DECLS
|
|||||||
typedef struct _EekContainerClass EekContainerClass;
|
typedef struct _EekContainerClass EekContainerClass;
|
||||||
typedef struct _EekContainerPrivate EekContainerPrivate;
|
typedef struct _EekContainerPrivate EekContainerPrivate;
|
||||||
|
|
||||||
/**
|
|
||||||
* EekCallback:
|
|
||||||
* @element: an #EekElement
|
|
||||||
* @user_data: user-supplied data
|
|
||||||
*
|
|
||||||
* The type of the callback function used for iterating over the
|
|
||||||
* children of a container, see eek_container_foreach_child().
|
|
||||||
*/
|
|
||||||
typedef void (*EekCallback) (EekElement *element, gpointer user_data);
|
typedef void (*EekCallback) (EekElement *element, gpointer user_data);
|
||||||
typedef gint (*EekCompareFunc) (EekElement *element, gpointer user_data);
|
typedef gint (*EekCompareFunc) (EekElement *element, gpointer user_data);
|
||||||
|
|
||||||
|
|||||||
@ -18,8 +18,7 @@
|
|||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||||
# 02110-1301 USA
|
# 02110-1301 USA
|
||||||
|
|
||||||
import eekboard
|
import gobject, gtk, eekboard, virtkey
|
||||||
import gobject, gtk, virtkey
|
|
||||||
import sys, os.path, re
|
import sys, os.path, re
|
||||||
|
|
||||||
KEYCODE_TABLE = {
|
KEYCODE_TABLE = {
|
||||||
|
|||||||
Reference in New Issue
Block a user