Changeset f3bcd927cd924fc64418b5dbf5cce31f8b483553
- Timestamp:
- 04/12/03 23:43:27
(5 years ago)
- Author:
- Cyril Deguet <asmax@videolan.org>
- git-committer:
- Cyril Deguet <asmax@videolan.org> 1050183807 +0000
- git-parent:
[84b3b12b3b04a939abac1e8c0221bfafe928cb09]
- git-author:
- Cyril Deguet <asmax@videolan.org> 1050183807 +0000
- Message:
* at last made the skin module compile under linux !
It does absolutely nothing, but it compiles ;)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5023130 |
rf3bcd92 |
|
| 16 | 16 | bool 'GTK2 support' CONFIG_GTK2 |
|---|
| 17 | 17 | dep_bool ' Gnome2 support' CONFIG_GNOME2 $CONFIG_GTK2 |
|---|
| 18 | | bool 'Win32 skins module' CONFIG_SKINS |
|---|
| | 18 | bool 'Skins module' CONFIG_SKINS |
|---|
| 19 | 19 | bool 'Familiar GTK+ support' CONFIG_FAMILIAR |
|---|
| 20 | 20 | bool 'wxWindows support' CONFIG_WXWINDOWS |
|---|
| rbbebf15 |
rf3bcd92 |
|
| 2306 | 2306 | CPPFLAGS_skins="${CPPFLAGS_skins} -O2 -fno-rtti -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/win32 -Imodules/gui/skins/controls" |
|---|
| 2307 | 2307 | LDFLAGS_skins="${LDFLAGS_skins} -lstdc++ -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32 -lmsimg32" |
|---|
| | 2308 | else |
|---|
| | 2309 | PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0]) |
|---|
| | 2310 | PLUGINS="${PLUGINS} skins" |
|---|
| | 2311 | CPPFLAGS_skins="${CPPFLAGS_skins} -O2 -fno-rtti -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/gtk2 -Imodules/gui/skins/controls -Imodules/gui/skins/parser ${GTK2_CFLAGS}" |
|---|
| | 2312 | LDFLAGS_skins="${LDFLAGS_skins} -lstdc++ ${GTK2_LIBS}" |
|---|
| 2308 | 2313 | fi |
|---|
| 2309 | 2314 | fi |
|---|
| rf6982bd |
rf3bcd92 |
|
| 78 | 78 | modules/gui/skins/win32/win32_window.cpp \ |
|---|
| 79 | 79 | modules/gui/skins/win32/win32_window.h \ |
|---|
| | 80 | \ |
|---|
| | 81 | modules/gui/skins/gtk2/gtk2_api.cpp \ |
|---|
| | 82 | modules/gui/skins/gtk2/gtk2_bitmap.cpp \ |
|---|
| | 83 | modules/gui/skins/gtk2/gtk2_bitmap.h \ |
|---|
| | 84 | modules/gui/skins/gtk2/gtk2_dialog.cpp \ |
|---|
| | 85 | modules/gui/skins/gtk2/gtk2_dialog.h \ |
|---|
| | 86 | modules/gui/skins/gtk2/gtk2_dragdrop.cpp \ |
|---|
| | 87 | modules/gui/skins/gtk2/gtk2_dragdrop.h \ |
|---|
| | 88 | modules/gui/skins/gtk2/gtk2_event.cpp \ |
|---|
| | 89 | modules/gui/skins/gtk2/gtk2_event.h \ |
|---|
| | 90 | modules/gui/skins/gtk2/gtk2_font.cpp \ |
|---|
| | 91 | modules/gui/skins/gtk2/gtk2_font.h \ |
|---|
| | 92 | modules/gui/skins/gtk2/gtk2_graphics.cpp \ |
|---|
| | 93 | modules/gui/skins/gtk2/gtk2_graphics.h \ |
|---|
| | 94 | modules/gui/skins/gtk2/gtk2_run.cpp \ |
|---|
| | 95 | modules/gui/skins/gtk2/gtk2_theme.cpp \ |
|---|
| | 96 | modules/gui/skins/gtk2/gtk2_theme.h \ |
|---|
| | 97 | modules/gui/skins/gtk2/gtk2_window.cpp \ |
|---|
| | 98 | modules/gui/skins/gtk2/gtk2_window.h \ |
|---|
| 80 | 99 | $(NULL) |
|---|
| 81 | 100 | |
|---|
| rce066e7 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: slider.cpp,v 1.2 2003/03/21 00:17:00 karibu Exp $ |
|---|
| | 5 | * $Id: slider.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 79 | 79 | delete[] CursorX; |
|---|
| 80 | 80 | delete[] CursorY; |
|---|
| | 81 | /* FIXME: kludge */ |
|---|
| | 82 | #ifdef WIN32 |
|---|
| 81 | 83 | DeleteObject( HitRgn ); |
|---|
| | 84 | #else |
|---|
| | 85 | fprintf(stderr, "WARNING: fixme in slider.cpp!!!!!"); |
|---|
| | 86 | #endif |
|---|
| 82 | 87 | } |
|---|
| 83 | 88 | //--------------------------------------------------------------------------- |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_api.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_api.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 30 | 30 | #if defined( WIN32 ) |
|---|
| 31 | 31 | #define DIRECTORY_SEPARATOR '\\' |
|---|
| | 32 | #else |
|---|
| | 33 | #define DIRECTORY_SEPARATOR '/' |
|---|
| 32 | 34 | #endif |
|---|
| 33 | 35 | |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_bitmap.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_bitmap.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 28 | 28 | #include "win32_bitmap.h" |
|---|
| 29 | 29 | #define OSBitmap Win32Bitmap |
|---|
| | 30 | #else |
|---|
| | 31 | #include "gtk2_bitmap.h" |
|---|
| | 32 | #define OSBitmap GTK2Bitmap |
|---|
| 30 | 33 | #endif |
|---|
| 31 | 34 | |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_dialog.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_dialog.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 29 | 29 | #define OSOpenFileDialog Win32OpenFileDialog |
|---|
| 30 | 30 | #define OSLogWindow Win32LogWindow |
|---|
| | 31 | #else |
|---|
| | 32 | #include "gtk2_dialog.h" |
|---|
| | 33 | #define OSOpenFileDialog GTK2OpenFileDialog |
|---|
| | 34 | #define OSLogWindow GTK2LogWindow |
|---|
| 31 | 35 | #endif |
|---|
| 32 | 36 | |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_event.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_event.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 28 | 28 | #include "win32_event.h" |
|---|
| 29 | 29 | #define OSEvent Win32Event |
|---|
| | 30 | #else |
|---|
| | 31 | #include "gtk2_event.h" |
|---|
| | 32 | #define OSEvent GTK2Event |
|---|
| 30 | 33 | #endif |
|---|
| 31 | 34 | |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 28 | 28 | #include "win32_font.h" |
|---|
| 29 | 29 | #define OSFont Win32Font |
|---|
| | 30 | #else |
|---|
| | 31 | #include "gtk2_font.h" |
|---|
| | 32 | #define OSFont GTK2Font |
|---|
| 30 | 33 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_graphics.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_graphics.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 27 | 27 | #if defined( WIN32 ) |
|---|
| 28 | 28 | #include "win32_graphics.h" |
|---|
| 29 | | |
|---|
| 30 | 29 | #define SRC_COPY SRCCOPY |
|---|
| 31 | 30 | #define SRC_AND SRCAND |
|---|
| 32 | 31 | #define OSGraphics Win32Graphics |
|---|
| 33 | 32 | #define OSRegion Win32Region |
|---|
| 34 | | |
|---|
| | 33 | #else |
|---|
| | 34 | #include "gtk2_graphics.h" |
|---|
| | 35 | #define SRC_COPY SRCCOPY |
|---|
| | 36 | #define SRC_AND SRCAND |
|---|
| | 37 | #define OSGraphics GTK2Graphics |
|---|
| | 38 | #define OSRegion GTK2Region |
|---|
| 35 | 39 | #endif |
|---|
| 36 | 40 | |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_theme.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_theme.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 28 | 28 | #include "win32_theme.h" |
|---|
| 29 | 29 | #define OSTheme Win32Theme |
|---|
| | 30 | #else |
|---|
| | 31 | #include "gtk2_theme.h" |
|---|
| | 32 | #define OSTheme GTK2Theme |
|---|
| 30 | 33 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: os_window.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: os_window.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 29 | 29 | #include "win32_window.h" |
|---|
| 30 | 30 | #define OSWindow Win32Window |
|---|
| | 31 | #else |
|---|
| | 32 | #include "gtk2_dragdrop.h" |
|---|
| | 33 | #include "gtk2_window.h" |
|---|
| | 34 | #define OSWindow GTK2Window |
|---|
| 31 | 35 | #endif |
|---|
| rfff2958 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: wrappers.cpp,v 1.4 2003/03/19 17:14:50 karibu Exp $ |
|---|
| | 5 | * $Id: wrappers.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 38 | 38 | #include "banks.h" |
|---|
| 39 | 39 | #include "controls.h" |
|---|
| | 40 | #include "font.h" |
|---|
| 40 | 41 | #include "window.h" |
|---|
| 41 | 42 | #include "theme.h" |
|---|
| r8558137 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: dialog.cpp,v 1.2 2003/03/20 09:29:07 karibu Exp $ |
|---|
| | 5 | * $Id: dialog.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 88 | 88 | |
|---|
| 89 | 89 | |
|---|
| | 90 | /* FIXME: kludge */ |
|---|
| | 91 | #ifdef WIN32 |
|---|
| 90 | 92 | // Append all messages to log window |
|---|
| 91 | 93 | switch( Sub->p_msg[i_start].i_type ) |
|---|
| … | … | |
| 100 | 102 | ChangeColor( RGB( 128, 128, 128 ) ); |
|---|
| 101 | 103 | break; |
|---|
| | 104 | #else |
|---|
| | 105 | fprintf(stderr, "WARNING: FIXME in dialog.cpp"); |
|---|
| | 106 | // Append all messages to log window |
|---|
| | 107 | switch( Sub->p_msg[i_start].i_type ) |
|---|
| | 108 | { |
|---|
| | 109 | case VLC_MSG_ERR: |
|---|
| | 110 | // ChangeColor( RGB( 255, 0, 0 ), true ); |
|---|
| | 111 | break; |
|---|
| | 112 | case VLC_MSG_WARN: |
|---|
| | 113 | // ChangeColor( RGB( 255, 128, 0 ), true ); |
|---|
| | 114 | break; |
|---|
| | 115 | default: |
|---|
| | 116 | // ChangeColor( RGB( 128, 128, 128 ) ); |
|---|
| | 117 | break; |
|---|
| | 118 | #endif |
|---|
| 102 | 119 | } |
|---|
| 103 | 120 | |
|---|
| r44c1d4c |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: event.h,v 1.4 2003/04/11 22:08:06 videolan Exp $ |
|---|
| | 5 | * $Id: event.h,v 1.5 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 41 | 41 | #define MAX_EVENT_SIZE 30 |
|---|
| 42 | 42 | #define MAX_PARAM_SIZE 20 |
|---|
| | 43 | |
|---|
| | 44 | #if !defined _WIN32 |
|---|
| | 45 | #define WM_APP 0x8000 |
|---|
| | 46 | #endif |
|---|
| 43 | 47 | |
|---|
| 44 | 48 | #define VLC_MESSAGE (WM_APP) |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 31 | 31 | #include <string> |
|---|
| 32 | 32 | using namespace std; |
|---|
| | 33 | |
|---|
| | 34 | /* FIXME :kludge */ |
|---|
| | 35 | #define DT_TOP 0 // 0x0000 |
|---|
| | 36 | #define DT_LEFT 0 // 0x0000 |
|---|
| | 37 | #define DT_CENTER 1 // 0x0001 |
|---|
| | 38 | #define DT_RIGHT 2 // 0x0002 |
|---|
| 33 | 39 | |
|---|
| 34 | 40 | //--------------------------------------------------------------------------- |
|---|
| r158bb3e |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: skin_main.cpp,v 1.5 2003/04/06 17:57:11 ipkiss Exp $ |
|---|
| | 5 | * $Id: skin_main.cpp,v 1.6 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 54 | 54 | // Exported interface functions. |
|---|
| 55 | 55 | //--------------------------------------------------------------------------- |
|---|
| | 56 | #ifdef WIN32 |
|---|
| 56 | 57 | extern "C" __declspec( dllexport ) |
|---|
| 57 | 58 | int __VLC_SYMBOL( vlc_entry ) ( module_t *p_module ); |
|---|
| | 59 | #endif |
|---|
| 58 | 60 | |
|---|
| 59 | 61 | //--------------------------------------------------------------------------- |
|---|
| … | … | |
| 156 | 158 | if( ! Loader->Load( DEFAULT_SKIN_FILE ) ) |
|---|
| 157 | 159 | #else |
|---|
| | 160 | #ifdef WIN32 |
|---|
| 158 | 161 | string default_dir = (string)p_intf->p_libvlc->psz_vlcpath + |
|---|
| 159 | 162 | DIRECTORY_SEPARATOR + "skins" + |
|---|
| 160 | 163 | DIRECTORY_SEPARATOR + "default" + |
|---|
| 161 | 164 | DIRECTORY_SEPARATOR + "theme.xml"; |
|---|
| | 165 | #else |
|---|
| | 166 | /* FIXME: find VLC directory */ |
|---|
| | 167 | string default_dir = (string)"." + |
|---|
| | 168 | DIRECTORY_SEPARATOR + "skins" + |
|---|
| | 169 | DIRECTORY_SEPARATOR + "default" + |
|---|
| | 170 | DIRECTORY_SEPARATOR + "theme.xml"; |
|---|
| | 171 | #endif |
|---|
| 162 | 172 | if( ! Loader->Load( default_dir ) ) |
|---|
| 163 | 173 | #endif |
|---|
| … | … | |
| 327 | 337 | vlc_mutex_unlock( &p_intf->change_lock ); |
|---|
| 328 | 338 | |
|---|
| 329 | | return( TRUE ); |
|---|
| | 339 | return( VLC_TRUE ); |
|---|
| 330 | 340 | } |
|---|
| 331 | 341 | //--------------------------------------------------------------------------- |
|---|
| r1b92f4a |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: themeloader.cpp,v 1.3 2003/03/19 03:11:14 karibu Exp $ |
|---|
| | 5 | * $Id: themeloader.cpp,v 1.4 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 28 | 28 | #include <string> |
|---|
| 29 | 29 | #include <fcntl.h> |
|---|
| | 30 | #if !defined WIN32 |
|---|
| | 31 | #include <unistd.h> |
|---|
| | 32 | #endif |
|---|
| 30 | 33 | |
|---|
| 31 | 34 | //--- VLC ------------------------------------------------------------------- |
|---|
| … | … | |
| 181 | 184 | |
|---|
| 182 | 185 | // Save current working directory |
|---|
| | 186 | #ifdef WIN32 |
|---|
| 183 | 187 | char *cwd = new char[MAX_PATH]; |
|---|
| 184 | 188 | getcwd( cwd, MAX_PATH ); |
|---|
| | 189 | #else |
|---|
| | 190 | char *cwd = new char[PATH_MAX]; |
|---|
| | 191 | getcwd( cwd, PATH_MAX ); |
|---|
| | 192 | #endif |
|---|
| 185 | 193 | |
|---|
| 186 | 194 | // Directory separator is different in each OS ! |
|---|
| r44c1d4c |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: vlcproc.cpp,v 1.4 2003/04/11 22:08:06 videolan Exp $ |
|---|
| | 5 | * $Id: vlcproc.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 582 | 582 | aout_VolumeGet( p_intf, &volume ); |
|---|
| 583 | 583 | |
|---|
| | 584 | /* FIXME: kludge */ |
|---|
| | 585 | #ifdef WIN32 |
|---|
| 584 | 586 | PostMessage( NULL, CTRL_SET_SLIDER, |
|---|
| 585 | 587 | (unsigned int) |
|---|
| 586 | 588 | p_intf->p_sys->p_theme->EvtBank->Get( "volume_refresh" ), |
|---|
| 587 | 589 | (int)( volume * SLIDER_RANGE / AOUT_VOLUME_MAX ) ); |
|---|
| | 590 | #else |
|---|
| | 591 | fprintf(stderr, "WARNING: FIXME in vlcproc.cpp !!!"); |
|---|
| | 592 | #endif |
|---|
| 588 | 593 | } |
|---|
| 589 | 594 | //--------------------------------------------------------------------------- |
|---|
| … | … | |
| 595 | 600 | void VlcProc::AddNetworkUDP( int port ) |
|---|
| 596 | 601 | { |
|---|
| 597 | | config_PutInt( p_intf, "network-channel", FALSE ); |
|---|
| | 602 | config_PutInt( p_intf, "network-channel", VLC_FALSE ); |
|---|
| 598 | 603 | |
|---|
| 599 | 604 | // Build source name |
|---|
| r8558137 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: window.cpp,v 1.4 2003/03/20 09:29:07 karibu Exp $ |
|---|
| | 5 | * $Id: window.cpp,v 1.5 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 279 | 279 | |
|---|
| 280 | 280 | // Copy buffer in Image |
|---|
| | 281 | /* FIXME: kludge */ |
|---|
| | 282 | #ifdef WIN32 |
|---|
| 281 | 283 | Image->CopyFrom( x, y, w, h, Buffer, 0, 0, SRC_COPY ); |
|---|
| | 284 | #else |
|---|
| | 285 | fprintf(stderr, "WARNING: FIXME in window.cpp !!!!"); |
|---|
| | 286 | #endif |
|---|
| 282 | 287 | |
|---|
| 283 | 288 | // Free memory |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_api.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_api.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 160 | 161 | //--------------------------------------------------------------------------- |
|---|
| 161 | 162 | |
|---|
| | 163 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_bitmap.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_bitmap.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 174 | 175 | //--------------------------------------------------------------------------- |
|---|
| 175 | 176 | |
|---|
| | 177 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_bitmap.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_bitmap.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_WIN32_BITMAP |
|---|
| … | … | |
| 68 | 69 | |
|---|
| 69 | 70 | #endif |
|---|
| | 71 | |
|---|
| | 72 | #endif |
|---|
| r8558137 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_dialog.cpp,v 1.2 2003/03/20 09:29:07 karibu Exp $ |
|---|
| | 5 | * $Id: win32_dialog.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- VLC ------------------------------------------------------------------- |
|---|
| … | … | |
| 360 | 361 | //--------------------------------------------------------------------------- |
|---|
| 361 | 362 | |
|---|
| | 363 | #endif |
|---|
| r8558137 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_dialog.h,v 1.2 2003/03/20 09:29:07 karibu Exp $ |
|---|
| | 5 | * $Id: win32_dialog.h,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_SKIN_WIN32_DIALOG |
|---|
| … | … | |
| 82 | 83 | #endif |
|---|
| 83 | 84 | |
|---|
| | 85 | #endif |
|---|
| r9674a22 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_dragdrop.cpp,v 1.2 2003/03/18 04:56:58 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_dragdrop.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 165 | 166 | } |
|---|
| 166 | 167 | |
|---|
| | 168 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_dragdrop.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_dragdrop.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_SKIN_WIN32_DRAGDROP |
|---|
| … | … | |
| 61 | 62 | //--------------------------------------------------------------------------- |
|---|
| 62 | 63 | #endif |
|---|
| | 64 | |
|---|
| | 65 | #endif |
|---|
| rfff2958 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_event.cpp,v 1.2 2003/03/19 17:14:50 karibu Exp $ |
|---|
| | 5 | * $Id: win32_event.cpp,v 1.3 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 120 | 121 | //--------------------------------------------------------------------------- |
|---|
| 121 | 122 | |
|---|
| | 123 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_event.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_event.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_SKIN_WIN32_EVENT |
|---|
| … | … | |
| 66 | 67 | |
|---|
| 67 | 68 | #endif |
|---|
| | 69 | |
|---|
| | 70 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_font.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_font.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 148 | 149 | |
|---|
| 149 | 150 | |
|---|
| | 151 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_font.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_font.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_SKIN_WIN32_FONT |
|---|
| … | … | |
| 70 | 71 | |
|---|
| 71 | 72 | #endif |
|---|
| | 73 | |
|---|
| | 74 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_graphics.cpp,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_graphics.cpp,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | //--- WIN32 ----------------------------------------------------------------- |
|---|
| … | … | |
| 147 | 148 | } |
|---|
| 148 | 149 | //--------------------------------------------------------------------------- |
|---|
| | 150 | |
|---|
| | 151 | #endif |
|---|
| ra64501f |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_graphics.h,v 1.1 2003/03/18 02:21:47 ipkiss Exp $ |
|---|
| | 5 | * $Id: win32_graphics.h,v 1.2 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #ifdef WIN32 |
|---|
| 26 | 27 | |
|---|
| 27 | 28 | #ifndef VLC_SKIN_WIN32_GRAPHICS |
|---|
| … | … | |
| 82 | 83 | |
|---|
| 83 | 84 | #endif |
|---|
| | 85 | |
|---|
| | 86 | #endif |
|---|
| r8558137 |
rf3bcd92 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2003 VideoLAN |
|---|
| 5 | | * $Id: win32_run.cpp,v 1.3 2003/03/20 09:29:07 karibu Exp $ |
|---|
| | 5 | * $Id: win32_run.cpp,v 1.4 2003/04/12 21:43:27 asmax Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Teuli� <ipkiss@via.ecp.fr> |
|---|
| … | … | |
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
|