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
f57d978c
Commit
f57d978c
authored
Nov 19, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX/VLC_app: Remove unused files.
parent
f631d60b
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
742 deletions
+0
-742
extras/MacOSX/VLC_app/VLCCategoryCell.h
extras/MacOSX/VLC_app/VLCCategoryCell.h
+0
-63
extras/MacOSX/VLC_app/VLCCategoryCell.m
extras/MacOSX/VLC_app/VLCCategoryCell.m
+0
-387
extras/MacOSX/VLC_app/VLCCategoryListDataSource.h
extras/MacOSX/VLC_app/VLCCategoryListDataSource.h
+0
-31
extras/MacOSX/VLC_app/VLCCategoryListDataSource.m
extras/MacOSX/VLC_app/VLCCategoryListDataSource.m
+0
-152
extras/MacOSX/VLC_app/VLCCategoryOutlineView.h
extras/MacOSX/VLC_app/VLCCategoryOutlineView.h
+0
-37
extras/MacOSX/VLC_app/VLCCategoryOutlineView.m
extras/MacOSX/VLC_app/VLCCategoryOutlineView.m
+0
-72
No files found.
extras/MacOSX/VLC_app/VLCCategoryCell.h
deleted
100644 → 0
View file @
f631d60b
/*****************************************************************************
* VLCCategoryCell.h: VLC.app custom cell
* Most of the code here from Colloquy (GPL v2)
*****************************************************************************
* Copyright (C) 2007 Pierre d'Herbemont
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
@interface
VLCCategoryCell
:
NSImageCell
{
@private
NSImage
*
_statusImage
;
NSImage
*
_altImage
;
NSString
*
_mainText
;
NSString
*
_infoText
;
NSLineBreakMode
_lineBreakMode
;
unsigned
_statusNumber
;
unsigned
_importantStatusNumber
;
BOOL
_boldAndWhiteOnHighlight
;
BOOL
_selectable
;
}
-
(
void
)
setStatusImage
:(
NSImage
*
)
image
;
-
(
NSImage
*
)
statusImage
;
-
(
void
)
setHighlightedImage
:(
NSImage
*
)
image
;
-
(
NSImage
*
)
highlightedImage
;
-
(
void
)
setMainText
:(
NSString
*
)
text
;
-
(
NSString
*
)
mainText
;
-
(
void
)
setInformationText
:(
NSString
*
)
text
;
-
(
NSString
*
)
informationText
;
-
(
void
)
setLineBreakMode
:(
NSLineBreakMode
)
mode
;
-
(
NSLineBreakMode
)
lineBreakMode
;
-
(
void
)
setBoldAndWhiteOnHighlight
:(
BOOL
)
boldAndWhite
;
-
(
BOOL
)
boldAndWhiteOnHighlight
;
-
(
void
)
setStatusNumber
:(
unsigned
)
number
;
-
(
unsigned
)
statusNumber
;
-
(
void
)
setImportantStatusNumber
:(
unsigned
)
number
;
-
(
unsigned
)
importantStatusNumber
;
@end
extras/MacOSX/VLC_app/VLCCategoryCell.m
deleted
100644 → 0
View file @
f631d60b
This diff is collapsed.
Click to expand it.
extras/MacOSX/VLC_app/VLCCategoryListDataSource.h
deleted
100644 → 0
View file @
f631d60b
/*****************************************************************************
* VLCCategoryListDataSource.h: VLC.app custom outline view
*****************************************************************************
* Copyright (C) 2007 Pierre d'Herbemont
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
@interface
VLCCategoryListDataSource
:
NSObject
{
NSArray
*
mainCategories
;
}
@end
extras/MacOSX/VLC_app/VLCCategoryListDataSource.m
deleted
100644 → 0
View file @
f631d60b
/*****************************************************************************
* VLCCategoryListDataSource.h: VLC.app custom outline view
*****************************************************************************
* Copyright (C) 2007 Pierre d'Herbemont
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <VLC/VLC.h>
#import "VLCCategoryListDataSource.h"
@implementation
VLCCategoryListDataSource
-
(
id
)
init
{
if
(
self
=
[
super
init
]
)
{
/* No need to release, cause we keep it around forever */
mainCategories
=
[[
NSArray
arrayWithObjects
:
[
VLCMediaLibrary
sharedMediaLibrary
],
@"Services Discovery"
,
@"Playlists"
,
nil
]
retain
];
}
return
self
;
}
-
(
id
)
outlineView
:(
NSOutlineView
*
)
aOutlineView
child
:(
int
)
index
ofItem
:(
id
)
item
{
if
(
!
item
)
{
return
[
mainCategories
objectAtIndex
:
index
];
}
if
([
item
isKindOfClass
:
[
NSString
class
]])
{
if
([
item
isEqualToString
:
@"Services Discovery"
])
return
[[[
VLCServicesDiscoverer
sharedDiscoverer
]
services
]
objectAtIndex
:
index
];
if
([
item
isEqualToString
:
@"Playlists"
])
return
[[[[
VLCMediaLibrary
sharedMediaLibrary
]
playlists
]
objectAtIndex
:
index
]
retain
];
/* XXX: this is a leak, but this code needs rework */
}
if
([
item
isKindOfClass
:
[
VLCMediaLibrary
class
]])
return
nil
;
#if 0
if ([item isKindOfClass: [VLCMediaDiscoverer class]])
{
return nil;
}
#endif
if
([
item
isKindOfClass
:
[
VLCPlaylist
class
]])
{
return
[[[
item
sublists
]
objectAtIndex
:
index
]
retain
];
/* XXX: this is a leak, but this code needs rework */
}
return
nil
;
}
-
(
BOOL
)
outlineView
:(
NSOutlineView
*
)
aOutlineView
isItemExpandable
:(
id
)
item
{
if
(
!
item
)
return
YES
;
if
([
item
isKindOfClass
:
[
NSString
class
]])
{
if
([
item
isEqualToString
:
@"Services Discovery"
])
return
YES
;
if
([
item
isEqualToString
:
@"Playlists"
])
return
YES
;
}
if
([
item
isKindOfClass
:
[
VLCMediaLibrary
class
]])
return
NO
;
if
([
item
isKindOfClass
:
[
VLCPlaylist
class
]])
{
return
[[
item
sublists
]
count
]
>
0
;
}
return
NO
;
}
-
(
int
)
outlineView
:(
NSOutlineView
*
)
aOutlineView
numberOfChildrenOfItem
:(
id
)
item
{
if
(
!
item
)
return
[
mainCategories
count
];
if
([
item
isKindOfClass
:
[
NSString
class
]])
{
if
([
item
isEqualToString
:
@"Playlists"
])
return
[[[
VLCMediaLibrary
sharedMediaLibrary
]
playlists
]
count
];
if
([
item
isEqualToString
:
@"Services Discovery"
])
return
[[[
VLCServicesDiscoverer
sharedDiscoverer
]
services
]
count
];
}
if
([
item
isKindOfClass
:
[
VLCPlaylist
class
]])
return
[[
item
playlists
]
count
];
return
0
;
}
-
(
id
)
outlineView
:(
NSOutlineView
*
)
aOutlineView
objectValueForTableColumn
:(
NSTableColumn
*
)
tableColumn
byItem
:(
id
)
item
{
if
(
!
item
)
return
nil
;
if
(
[[
tableColumn
identifier
]
isEqualToString
:
@"name"
]
)
{
if
(
[
item
isKindOfClass
:
[
NSString
class
]]
)
return
item
;
if
(
[
item
isKindOfClass
:
[
VLCPlaylist
class
]])
return
[[[
item
providerMedia
]
metaInformation
]
objectForKey
:
VLCMetaInformationTitle
];
if
(
[
item
isKindOfClass
:
[
VLCMediaDiscoverer
class
]])
return
[
item
localizedName
];
if
(
[
item
isKindOfClass
:
[
VLCMediaLibrary
class
]])
return
@"Library"
;
}
else
if
(
[
item
isKindOfClass
:
[
NSString
class
]]
&&
[[
tableColumn
identifier
]
isEqualToString
:
@"icon"
])
return
nil
;
return
nil
;
}
@end
@implementation
VLCCategoryListDataSource
(
OutlineViewDelegating
)
-
(
BOOL
)
outlineView
:(
NSOutlineView
*
)
outlineView
shouldSelectItem
:(
id
)
item
{
if
([
item
isKindOfClass
:
[
NSString
class
]])
{
if
([
item
isEqualToString
:
@"Library"
])
return
YES
;
if
([
item
isEqualToString
:
@"Services Discovery"
])
return
NO
;
if
([
item
isEqualToString
:
@"Playlists"
])
return
NO
;
}
return
YES
;
}
-
(
void
)
outlineView
:(
NSOutlineView
*
)
outlineView
willDisplayCell
:(
id
)
cell
forTableColumn
:(
NSTableColumn
*
)
tableColumn
item
:(
id
)
item
{
if
([
item
isKindOfClass
:
[
VLCMediaDiscoverer
class
]])
[
cell
setImage
:
[
NSImage
imageNamed
:
@"vlc_stream_16px"
]];
else
[
cell
setImage
:
nil
];
}
@end
extras/MacOSX/VLC_app/VLCCategoryOutlineView.h
deleted
100644 → 0
View file @
f631d60b
/*****************************************************************************
* VLCCategoryOutlineView.h: VLC.app custom outline view
*****************************************************************************
* Copyright (C) 2007 Pierre d'Herbemont
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
@interface
VLCCategoryOutlineView
:
NSOutlineView
{
BOOL
enableAnimation
;
NSMutableDictionary
*
allAnimatingItemsDict
;
int
animations
;
NSSize
animationHedgeFactor
;
BOOL
disableExpansionAnimation
;
}
@end
extras/MacOSX/VLC_app/VLCCategoryOutlineView.m
deleted
100644 → 0
View file @
f631d60b
/*****************************************************************************
* VLCCategoryOutlineView.h: VLC.app custom outline view
* Most of the code here from Colloquy (GPL v2)
*****************************************************************************
* Copyright (C) 2007 Colloquy team (no copyright on original file)
* Copyright (C) 2007 the VideoLAN team
* $Id$
*
* Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCCategoryOutlineView.h"
/* Taken from colloquy (GPL v2) */
static
void
gradientInterpolate
(
void
*
info
,
float
const
*
inData
,
float
*
outData
)
{
static
float
light
[
4
]
=
{
0
.
67843137
,
0
.
73333333
,
0
.
81568627
,
1
.
};
static
float
dark
[
4
]
=
{
0
.
59607843
,
0
.
66666667
,
0
.
76862745
,
1
.
};
float
a
=
inData
[
0
];
int
i
=
0
;
for
(
i
=
0
;
i
<
4
;
i
++
)
outData
[
i
]
=
(
1
.
-
a
)
*
dark
[
i
]
+
a
*
light
[
i
];
}
@implementation
VLCCategoryOutlineView
-
(
NSColor
*
)
_highlightColorForCell
:(
NSCell
*
)
aCell
{
/* return nil to prevent normal selection drawing*/
return
nil
;
}
-
(
void
)
_highlightRow
:(
int
)
row
clipRect
:
(
NSRect
)
clipRect
{
NSRect
highlight
=
[
self
rectOfRow
:
row
];
struct
CGFunctionCallbacks
callbacks
=
{
0
,
gradientInterpolate
,
NULL
};
CGFunctionRef
function
=
CGFunctionCreate
(
NULL
,
1
,
NULL
,
4
,
NULL
,
&
callbacks
);
CGColorSpaceRef
cspace
=
CGColorSpaceCreateDeviceRGB
();
CGShadingRef
shading
=
CGShadingCreateAxial
(
cspace
,
CGPointMake
(
NSMinX
(
highlight
),
NSMaxY
(
highlight
)
),
CGPointMake
(
NSMinX
(
highlight
),
NSMinY
(
highlight
)
),
function
,
false
,
false
);
CGContextDrawShading
(
[[
NSGraphicsContext
currentContext
]
graphicsPort
],
shading
);
CGShadingRelease
(
shading
);
CGColorSpaceRelease
(
cspace
);
CGFunctionRelease
(
function
);
static
NSColor
*
rowBottomLine
=
nil
;
if
(
!
rowBottomLine
)
rowBottomLine
=
[[
NSColor
colorWithCalibratedRed
:(
140
.
/
255
.
)
green
:(
152
.
/
255
.
)
blue
:(
176
.
/
255
.
)
alpha
:
1
.]
retain
];
[
rowBottomLine
set
];
NSRect
bottomLine
=
NSMakeRect
(
NSMinX
(
highlight
),
NSMaxY
(
highlight
)
-
1
.,
NSWidth
(
highlight
),
1
.
);
NSRectFill
(
bottomLine
);
}
@end
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