diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-06 17:30:26 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-06 17:30:26 +0200 |
commit | f72c61e0a3afc364ab6f60e42f2d7e0ff5574a3c (patch) | |
tree | 8bc2ff56000ff611a23489255e6b16e4eb05b38d /configure.ac | |
parent | 3874830ea6c953fc29ef6286c1808b0e29b552aa (diff) | |
download | gtk-vlc-player-f72c61e0a3afc364ab6f60e42f2d7e0ff5574a3c.tar.gz |
adjustment support for the gtk-vlc-player plugin
gtk-vlc-player may be connected to scale widgets (and later on the transcript widget) using GtkAdjustments
* the main program has been updated accordingly
* the main program also updates the "play" button now
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f2e7c4e..bc0498a 100644 --- a/configure.ac +++ b/configure.ac @@ -147,6 +147,10 @@ esac AC_SUBST(GTKAPP_CFLAGS) AC_SUBST(GTKAPP_LDFLAGS) +# Some constants +AC_DEFINE(GTK_VLC_PLAYER_ADJ_STEP, [1000.], [VLC Player time adjustment step increment]) +AC_DEFINE(GTK_VLC_PLAYER_ADJ_PAGE, [30000.], [VLC Player time adjustment page increment]) + AC_CONFIG_FILES([Makefile \ lib/Makefile lib/gtk-vlc-player/Makefile \ src/Makefile \ |