Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
1bab4d17
Commit
1bab4d17
authored
Apr 13, 2003
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* should have repaired win32 skins
parent
db008d07
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
34 additions
and
15 deletions
+34
-15
modules/gui/skins/gtk2/gtk2_api.cpp
modules/gui/skins/gtk2/gtk2_api.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_bitmap.cpp
modules/gui/skins/gtk2/gtk2_bitmap.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_dialog.cpp
modules/gui/skins/gtk2/gtk2_dialog.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_dragdrop.cpp
modules/gui/skins/gtk2/gtk2_dragdrop.cpp
+4
-1
modules/gui/skins/gtk2/gtk2_event.cpp
modules/gui/skins/gtk2/gtk2_event.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_font.cpp
modules/gui/skins/gtk2/gtk2_font.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_graphics.cpp
modules/gui/skins/gtk2/gtk2_graphics.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_run.cpp
modules/gui/skins/gtk2/gtk2_run.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_theme.cpp
modules/gui/skins/gtk2/gtk2_theme.cpp
+3
-1
modules/gui/skins/gtk2/gtk2_window.cpp
modules/gui/skins/gtk2/gtk2_window.cpp
+3
-1
modules/gui/skins/src/theme.cpp
modules/gui/skins/src/theme.cpp
+3
-5
No files found.
modules/gui/skins/gtk2/gtk2_api.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_api.cpp: Various gtk2-specific functions
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_api.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_api.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 ------------------------------------------------------------------
#include <gdk/gdk.h>
...
...
@@ -159,3 +160,4 @@ bool OSAPI_RmDir( string path )
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_bitmap.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_bitmap.cpp: GTK2 implementation of the Bitmap class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_bitmap.cpp,v 1.
1 2003/04/12 21:43:27
asmax Exp $
* $Id: gtk2_bitmap.cpp,v 1.
2 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
//#define WINVER 0x0500
...
...
@@ -171,3 +172,4 @@ void GTK2Bitmap::SetBmpPixel( int x, int y, int color )
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_dialog.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_dialog.cpp: GTK2 implementation of some dialog boxes
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_dialog.cpp,v 1.
2 2003/04/12 22:50:42
asmax Exp $
* $Id: gtk2_dialog.cpp,v 1.
3 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- VLC -------------------------------------------------------------------
#include <vlc/intf.h>
...
...
@@ -358,3 +359,4 @@ void GTK2LogWindow::Hide()
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_dragdrop.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_dragdrop.cpp: GTK2 implementation of the drag & drop
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_dragdrop.cpp,v 1.
1 2003/04/12 21:43:27
asmax Exp $
* $Id: gtk2_dragdrop.cpp,v 1.
2 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
//#include <windows.h>
...
...
@@ -163,3 +164,5 @@ STDMETHODIMP GTK2DropObject::Drop( LPDATAOBJECT pDataObj, DWORD grfKeyState,
return S_OK;
}
*/
#endif
modules/gui/skins/gtk2/gtk2_event.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_event.cpp: GTK2 implementation of the Event class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_event.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_event.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
#include <gdk/gdk.h>
...
...
@@ -118,3 +119,4 @@ GdkWindow *GTK2Event::GetWindowFromName( string name )
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_font.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_font.cpp: GTK2 implementation of the Font class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_font.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_font.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
#include <gdk/gdk.h>
...
...
@@ -158,3 +159,4 @@ void GTK2Font::PrintColor( Graphics *dest, string text, int x, int y, int w,
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_graphics.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_graphics.cpp: GTK2 implementation of the Graphics and Region classes
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_graphics.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_graphics.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
#include <gdk/gdk.h>
...
...
@@ -141,3 +142,4 @@ bool GTK2Region::Hit( int x, int y )
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_run.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_run.cpp:
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_run.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_run.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 ------------------------------------------------------------------
#include <glib.h>
...
...
@@ -186,3 +187,4 @@ bool IsVLCEvent( unsigned int msg )
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_theme.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_theme.cpp: GTK2 implementation of the Theme class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_theme.cpp,v 1.
2 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_theme.cpp,v 1.
3 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GTK2 -----------------------------------------------------------------
#include <gdk/gdk.h>
...
...
@@ -380,3 +381,4 @@ void GTK2Theme::ChangeTaskbar()
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/gtk2/gtk2_window.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* gtk2_window.cpp: GTK2 implementation of the Window class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_window.cpp,v 1.
3 2003/04/13 17:46:22
asmax Exp $
* $Id: gtk2_window.cpp,v 1.
4 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -22,6 +22,7 @@
* USA.
*****************************************************************************/
#if !defined WIN32
//--- GENERAL ---------------------------------------------------------------
//#include <math.h>
...
...
@@ -302,3 +303,4 @@ void GTK2Window::ChangeToolTipText( string text )
}
//---------------------------------------------------------------------------
#endif
modules/gui/skins/src/theme.cpp
View file @
1bab4d17
...
...
@@ -2,7 +2,7 @@
* theme.cpp: Theme class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: theme.cpp,v 1.
6 2003/04/13 17:46:23
asmax Exp $
* $Id: theme.cpp,v 1.
7 2003/04/13 19:09:59
asmax Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr>
...
...
@@ -195,15 +195,13 @@ void Theme::StartTheme( bool log, int magnet )
void
Theme
::
InitTheme
()
{
// Initialize the events
/* FIXME */
fprintf
(
stderr
,
"FIXME in theme.cpp !
\n
"
);
// EvtBank->Init();
EvtBank
->
Init
();
// Initialize the controls
InitControls
();
// Initialize the windows
//
InitWindows();
InitWindows
();
}
//---------------------------------------------------------------------------
void
Theme
::
InitWindows
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment