You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by Pavel Janík <Pa...@Janik.cz> on 2012/12/18 11:49:13 UTC

Presenter Screen/Console?

Hi,

how is the extension named?

configure.in contains:

AC_ARG_ENABLE(presenter-console,
[  --enable-presenter-console          enables the build of the Presenter Console extension
],,)

...

AC_MSG_CHECKING([whether to build the Presenter Screen extension])
if test -n "$enable_presenter_console" -a "$enable_presenter_screen" != "no"; then
   AC_MSG_RESULT([yes])
   ENABLE_PRESENTER_SCREEN=YES
else
   AC_MSG_RESULT([no])
   ENABLE_PRESENTER_SCREEN=NO
fi
AC_SUBST(ENABLE_PRESENTER_SCREEN)

ie. mixed Screen and Console.
-- 
Pavel Janík




Re: Presenter Screen/Console?

Posted by Rory O'Farrell <of...@iol.ie>.
On Fri, 18 Jan 2013 18:03:09 +0100
Pavel Janík <Pa...@Janik.cz> wrote:

> > It should be Presenter Screen.  Presenter Console was an early working title.
> 
> So we need something like this:
> 
> Index: configure.in
> ===================================================================
> --- configure.in	(revision 1435113)
> +++ configure.in	(working copy)
> @@ -516,8 +516,8 @@
>  AC_ARG_ENABLE(minimizer,
>  [  --enable-minimizer          enables the build of the Presentation Minimizer extension
>  ],,)
> -AC_ARG_ENABLE(presenter-console,
> -[  --enable-presenter-console          enables the build of the Presenter Console extension
> +AC_ARG_ENABLE(presenter-screen,
> +[  --enable-presenter-screen           enables the build of the Presenter Screen extension
>  ],,)
>  AC_ARG_ENABLE(pdfimport,
>  [  --enable-pdfimport          enables the build of the PDF Import extension
> @@ -6392,7 +6392,7 @@
>  AC_SUBST(ENABLE_MINIMIZER)
>  
>  AC_MSG_CHECKING([whether to build the Presenter Screen extension])
> -if test -n "$enable_presenter_console" -a "$enable_presenter_screen" != "no"; then
> +if test -n "$enable_presenter_screen" -a "$enable_presenter_screen" != "no"; then
>     AC_MSG_RESULT([yes])
>     ENABLE_PRESENTER_SCREEN=YES
>  else
> 
If work is being done on Presenter Screen/Console, it would be good to kill the sound from the Console or give an optional switch whereby it might be killed, when a video is being displayed. 

At present, if a video is playing in a slide on the main screen, the same video shows on the Console screen, which is as it should be.  Both use the soundtrack of the video, mixed together into the sound system of the presenting computer with a small delay, giving an irritating "echo".  As far as I remember the sound from the console is the delayed element; it could usefully be switched off, or perhaps not enabled at all.  


-- 
Rory O'Farrell <of...@iol.ie>

Re: Presenter Screen/Console?

Posted by Pavel Janík <Pa...@Janik.cz>.
> It should be Presenter Screen.  Presenter Console was an early working title.

So we need something like this:

Index: configure.in
===================================================================
--- configure.in	(revision 1435113)
+++ configure.in	(working copy)
@@ -516,8 +516,8 @@
 AC_ARG_ENABLE(minimizer,
 [  --enable-minimizer          enables the build of the Presentation Minimizer extension
 ],,)
-AC_ARG_ENABLE(presenter-console,
-[  --enable-presenter-console          enables the build of the Presenter Console extension
+AC_ARG_ENABLE(presenter-screen,
+[  --enable-presenter-screen           enables the build of the Presenter Screen extension
 ],,)
 AC_ARG_ENABLE(pdfimport,
 [  --enable-pdfimport          enables the build of the PDF Import extension
@@ -6392,7 +6392,7 @@
 AC_SUBST(ENABLE_MINIMIZER)
 
 AC_MSG_CHECKING([whether to build the Presenter Screen extension])
-if test -n "$enable_presenter_console" -a "$enable_presenter_screen" != "no"; then
+if test -n "$enable_presenter_screen" -a "$enable_presenter_screen" != "no"; then
    AC_MSG_RESULT([yes])
    ENABLE_PRESENTER_SCREEN=YES
 else


-- 
Pavel Janík




Re: Presenter Screen/Console?

Posted by Andre Fischer <aw...@gmail.com>.
On 18.12.2012 11:49, Pavel Janík wrote:
> Hi,
>
> how is the extension named?
>
> configure.in contains:
>
> AC_ARG_ENABLE(presenter-console,
> [  --enable-presenter-console          enables the build of the Presenter Console extension
> ],,)
>
> ...
>
> AC_MSG_CHECKING([whether to build the Presenter Screen extension])
> if test -n "$enable_presenter_console" -a "$enable_presenter_screen" != "no"; then
>     AC_MSG_RESULT([yes])
>     ENABLE_PRESENTER_SCREEN=YES
> else
>     AC_MSG_RESULT([no])
>     ENABLE_PRESENTER_SCREEN=NO
> fi
> AC_SUBST(ENABLE_PRESENTER_SCREEN)
>
> ie. mixed Screen and Console.

It should be Presenter Screen.  Presenter Console was an early working 
title.

-Andre