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
e92df3eb
Commit
e92df3eb
authored
Mar 28, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* New menu-items referencing forum
parent
cdce7f85
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
7 deletions
+22
-7
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+2
-0
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+4
-7
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+2
-0
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+14
-0
No files found.
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
View file @
e92df3eb
...
...
@@ -106,6 +106,8 @@
intfOpenNet = id;
openCrashLog = id;
openDocumentation = id;
openDonate = id;
openForum = id;
openLicense = id;
openReadMe = id;
openRecentItem = id;
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
e92df3eb
...
...
@@ -3,17 +3,17 @@
<plist
version=
"1.0"
>
<dict>
<key>
IBDocumentLocation
</key>
<string>
186 61 505 517 0 0 800 578
</string>
<string>
-2 60 496 270 0 0 1024 746
</string>
<key>
IBEditorPositions
</key>
<dict>
<key>
1617
</key>
<string>
542 480 104 149 0 0 1024 746
</string>
<key>
2197
</key>
<string>
342 573 596 143 0 0 1280 938
</string>
<string>
214 442 596 144 0 0 1024 746
</string>
<key>
29
</key>
<string>
102 894 419 44 0 0 1280 938
</string>
<string>
72 702 419 44 0 0 1024 746
</string>
<key>
915
</key>
<string>
951 565 178 211 0 0 1280 938
</string>
<string>
730 416 178 211 0 0 1024 746
</string>
</dict>
<key>
IBFramework Version
</key>
<string>
364.0
</string>
...
...
@@ -22,9 +22,6 @@
<key>
IBOpenObjects
</key>
<array>
<integer>
21
</integer>
<integer>
2197
</integer>
<integer>
29
</integer>
<integer>
915
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
7U16
</string>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
e92df3eb
No preview for this file type
modules/gui/macosx/intf.h
View file @
e92df3eb
...
...
@@ -284,6 +284,8 @@ struct intf_sys_t
-
(
IBAction
)
reportABug
:(
id
)
sender
;
-
(
IBAction
)
openWebsite
:(
id
)
sender
;
-
(
IBAction
)
openLicense
:(
id
)
sender
;
-
(
IBAction
)
openForum
:(
id
)
sender
;
-
(
IBAction
)
openDonate
:(
id
)
sender
;
-
(
IBAction
)
openCrashLog
:(
id
)
sender
;
-
(
IBAction
)
togglePlaylist
:(
id
)
sender
;
...
...
modules/gui/macosx/intf.m
View file @
e92df3eb
...
...
@@ -1452,6 +1452,20 @@ static VLCMain *_o_sharedMainInstance = nil;
withApplication:
@"TextEdit"
];
}
-
(
IBAction
)
openForum
:(
id
)
sender
{
NSURL
*
o_url
=
[
NSURL
URLWithString
:
@"http://forum.videolan.org/"
];
[[
NSWorkspace
sharedWorkspace
]
openURL
:
o_url
];
}
-
(
IBAction
)
openDonate
:(
id
)
sender
{
NSURL
*
o_url
=
[
NSURL
URLWithString
:
@"http://www.videolan.org/contribute.html#paypal"
];
[[
NSWorkspace
sharedWorkspace
]
openURL
:
o_url
];
}
-
(
IBAction
)
openCrashLog
:(
id
)
sender
{
NSString
*
o_path
=
[
@"~/Library/Logs/CrashReporter/VLC.crash.log"
...
...
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