A
download gitkrglobal.c
Language: C
LOC: 30
Project Info
GITK - Generalized Interface Toolkit(gitk)
Server: SourceForge
Type: cvs
...k\gitk\gitk‑renderer‑phone\
   autogen.sh
   config.h.in
   configure.in
   gitkr-phoneConf.sh.in
   gitkrdefines.h
   gitkrdone.c
   gitkrdone.h
   gitkreventloop.c
   gitkreventloop.h
   gitkrglobal.c
   gitkrglobal.h
   gitkrhideshow.c
   gitkrhideshow.h
   gitkrincludes.h
   gitkrinfo.c
   gitkrinfo.h
   gitkrinit.c
   gitkrinit.h
   gitkrlayout.c
   gitkrlayout.h
   gitkrrenderer.c
   gitkrrenderer.h
   gitkrtools.c
   gitkrtools.h
   Makefile.am

/** $Id: gitkrglobal.c,v 1.5 2004/06/08 10:30:49 sast Exp $
 *
 * @file   gitk-renderer-phone/gitkrglobal.c
 * @author Steffen Ast <sast@users.sf.net>
 * @date   Sun Feb 29 14:42:00 2004
 * 
 * @brief  gitk renderer global vars
 * @ingroup gitkrendererphone
 * 
 * 
 */

#define GITK_RENDERER_C
#define GITKR_GLOBAL_C

#include "gitkrincludes.h"

/** @brief set to FALSE to stop the event-loop
 * @see #gitkr_event_loop_end()
 */
gboolean run=FALSE;

/** @brief is used to restart the event-loop when doing re-layouting
 * @see #gitkr_event_loop_restart()
 */
gboolean restart_event_loop=FALSE;

/** @brief context selection dialog, used for selecting one of the non modal dialogs
 */
GitkDialogPtr context_selection_dialog=NULL;

/** @brief commandline codeset 
 */
gchar *code_set = NULL;

/** @brief text to say has focus 
 */
gchar *selected = NULL;
gchar *welcome = NULL;
gchar *TextOn = NULL;
gchar *TextOff = NULL;

gchar *IconApplication = NULL;
gchar *IconPagename = NULL;
gchar *IconLabel = NULL;
gchar *IconEdit = NULL;
gchar *IconOptionChoice = NULL;
gchar *IconControl = NULL;
gchar *IconAction = NULL;
gchar *IconProgress = NULL;

//-- speech module
#ifdef HAVE_SPEECH
/** @brief parameters of the speech module
 * @internal
 */
FT_Info *ftinfo=NULL;
/** @brief name of the speech module
 * @internal
 */
gchar *gitkr_phone_speech_name=NULL;

gint gitkr_phone_festival_port=-1;

gchar *gitkr_phone_festival_host=NULL;
#endif

//-- capi20
//#ifdef HAVE_CAPI20
/** @brief parameters of the capi20 module
 * @internal
 */
CAPI_Info *capiinfo = NULL;
/** @brief name of the capi20 module
 * @internal
 */
gint gitkr_phone_capi_datalength=0;

gint gitkr_phone_capi_datablocks=0;

gint gitkr_phone_capi_logicalconnections=0;

gint gitkr_phone_capi_betweendigits=3;

//#endif

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us