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
8861bc52
Commit
8861bc52
authored
Jul 15, 2015
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx/bookmarks: remove object from xib file
parent
1ca35e8e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
249 additions
and
270 deletions
+249
-270
extras/package/macosx/Resources/English.lproj/Bookmarks.xib
extras/package/macosx/Resources/English.lproj/Bookmarks.xib
+167
-185
modules/gui/macosx/bookmarks.h
modules/gui/macosx/bookmarks.h
+19
-19
modules/gui/macosx/bookmarks.m
modules/gui/macosx/bookmarks.m
+62
-65
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-1
No files found.
extras/package/macosx/Resources/English.lproj/Bookmarks.xib
View file @
8861bc52
This diff is collapsed.
Click to expand it.
modules/gui/macosx/bookmarks.h
View file @
8861bc52
/*****************************************************************************
* bookmarks.h: MacOS X Bookmarks window
*****************************************************************************
* Copyright (C) 2005, 2007 VLC authors and VideoLAN
* Copyright (C) 2005, 2007
, 2015
VLC authors and VideoLAN
* $Id$
*
* Authors: Felix Kühne <fkuehne at videolan dot org>
...
...
@@ -26,27 +26,27 @@
#import <vlc_common.h>
@interface
VLCBookmarks
:
NSObject
{
/* main window */
IBOutlet
id
o_bookmarks_window
;
IBOutlet
id
o_btn_add
;
IBOutlet
id
o_btn_clear
;
IBOutlet
id
o_btn_edit
;
IBOutlet
id
o_btn_extract
;
IBOutlet
id
o_btn_rm
;
IBOutlet
id
o_tbl_dataTable
;
/* edit window */
IBOutlet
id
o_edit_window
;
IBOutlet
id
o_edit_btn_ok
;
IBOutlet
id
o_edit_btn_cancel
;
IBOutlet
id
o_edit_lbl_name
;
IBOutlet
id
o_edit_lbl_time
;
IBOutlet
id
o_edit_fld_name
;
IBOutlet
id
o_edit_fld_time
;
}
+
(
VLCBookmarks
*
)
sharedInstance
;
/* main window */
@property
(
readwrite
,
weak
)
IBOutlet
NSWindow
*
bookmarksWindow
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
addButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
clearButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
editButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
extractButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
removeButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSTableView
*
dataTable
;
/* edit window */
@property
(
readwrite
,
weak
)
IBOutlet
NSWindow
*
editBookmarksWindow
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
editOKButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSButton
*
editCancelButton
;
@property
(
readwrite
,
weak
)
IBOutlet
NSTextField
*
editNameLabel
;
@property
(
readwrite
,
weak
)
IBOutlet
NSTextField
*
editTimeLabel
;
@property
(
readwrite
,
weak
)
IBOutlet
NSTextField
*
editNameTextField
;
@property
(
readwrite
,
weak
)
IBOutlet
NSTextField
*
editTimeTextField
;
-
(
void
)
updateCocoaWindowLevel
:(
NSInteger
)
i_level
;
-
(
IBAction
)
add
:(
id
)
sender
;
...
...
modules/gui/macosx/bookmarks.m
View file @
8861bc52
This diff is collapsed.
Click to expand it.
modules/gui/macosx/intf.m
View file @
8861bc52
...
...
@@ -1276,7 +1276,7 @@ audio_output_t *getAout(void)
o_bookmarks
=
[[
VLCBookmarks
alloc
]
init
];
if
(
!
nib_bookmarks_loaded
)
nib_bookmarks_loaded
=
[
NSBundle
loadNibNamed
:
@"Bookmarks"
owner
:
NSApp
];
nib_bookmarks_loaded
=
[
NSBundle
loadNibNamed
:
@"Bookmarks"
owner
:
o_bookmarks
];
return
o_bookmarks
;
}
...
...
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