Commit 802b24bc authored by Jean-Paul Saman's avatar Jean-Paul Saman

Gtk2 port of the familiar Linux interface. The name is also changed to PDA so...

Gtk2 port of the familiar Linux interface. The name is also changed to PDA so it reflects that it is targeted at handhelds.

The familiar interface itself is deprecreated and will be removed after the next stable version of VLC Media Player.
parent 1ec7da49
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.43 2003/07/27 12:31:50 ipkiss Exp $
dnl $Id: configure.ac,v 1.44 2003/07/27 21:35:50 jpsaman Exp $
AC_INIT(vlc,0.6.1-test1)
......@@ -2537,10 +2537,14 @@ then
AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
AX_ADD_LDFLAGS([pda],[${GTK2_LDFLAGS} ${LDFLAGS_pda}])
AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
AX_ADD_PLUGINS([pda])
if test "${SYS}" != "mingw32"; then
NEED_GTK2_MAIN=yes
fi
fi
dnl
dnl Familiar module uses Gtk+ library
dnl
......
......@@ -2,7 +2,7 @@
* pda.c : PDA Gtk2 plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: pda.c,v 1.1 2003/07/23 22:02:56 jpsaman Exp $
* $Id: pda.c,v 1.2 2003/07/27 21:35:51 jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* Marc Ariberti <marcari@videolan.org>
......@@ -92,7 +92,7 @@ static int Open( vlc_object_t *p_this )
#ifdef NEED_GTK_MAIN
msg_Dbg( p_intf, "Using gui-helper" );
p_intf->p_sys->p_gtk_main = module_Need( p_this, "gui-helper", "gtk" );
p_intf->p_sys->p_gtk_main = module_Need( p_this, "gui-helper", "gtk2" );
if( p_intf->p_sys->p_gtk_main == NULL )
{
free( p_intf->p_sys );
......
......@@ -5,6 +5,7 @@
<name>Pda</name>
<program_name>pda</program_name>
<pixmaps_directory>../../../share</pixmaps_directory>
<use_widget_names>TRUE</use_widget_names>
<output_main_file>FALSE</output_main_file>
<output_build_files>FALSE</output_build_files>
</glade-project>
/* XPM */
static char * familiar_forwardb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" .. ... ",
" ... ... ",
" .... ... ",
" ..... ... ",
" ......... ",
" ......... ",
" ......... ",
" ..... ... ",
" .... ... ",
" ... ... ",
" .. ... ",
" ",
" ",
" "};
/* XPM */
static char * familiar_openb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" .. ",
" .... ",
" ...... ",
" ........ ",
" .......... ",
" ............ ",
" ............ ",
" ",
" ............ ",
" ............ ",
" ............ ",
" ............ ",
" ",
" "};
/* XPM */
static char * familiar_pauseb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" .... .... ",
" ",
" "};
/* XPM */
static char * familiar_playb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" .. ",
" .... ",
" ...... ",
" ........ ",
" .......... ",
" ........... ",
" ........... ",
" .......... ",
" ........ ",
" ...... ",
" .... ",
" .. ",
" ",
" "};
/* XPM */
static char * familiar_playlistb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ............ ",
" ............ ",
" .. .. ",
" .. .. ",
" ............ ",
" ............ ",
" .. .. ",
" .. .. ",
" ............ ",
" ............ ",
" .. .. ",
" .. .. ",
" ............ ",
" ............ ",
" "};
/* XPM */
static char * familiar_preferencesb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" ....... ",
" ......... ",
" ........... ",
" ..... ..... ",
" ..... ..... ",
" ..... ..... ",
" ..... ..... ",
" ..... ..... ",
" ..... ..... ",
" ..... ..... ",
" ........... ",
" ......... ",
" ....... ",
" "};
/* XPM */
static char * familiar_rewindb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" ... .. ",
" ... ... ",
" ... .... ",
" ... ..... ",
" ......... ",
" ......... ",
" ......... ",
" ... ..... ",
" ... .... ",
" ... ... ",
" ... .. ",
" ",
" ",
" "};
/* XPM */
static char * familiar_stopb16x16_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" ",
" ",
" ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ........ ",
" ",
" ",
" "};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment