summaryrefslogtreecommitdiffstats
path: root/macosx/HBVideoController.m
Commit message (Collapse)AuthorAgeFilesLines
* MacGui: rework the way the encoder options views are swapped.Damiano Galassi2019-10-061-44/+35
|
* MacGui: refactor the preferences keys and autonaming methods; fix the queue ↵Damiano Galassi2019-07-291-2/+3
| | | | when running multiple HandBrake instances; fixed a number of bugs.
* MacGui: fix quality slider granularity prefs when the app is localized.Damiano Galassi2019-03-061-4/+4
|
* MacGui: remove the old advanced x264 options view.Damiano Galassi2019-01-301-55/+1
|
* MacGui: try to fix an hang on Sierra.Damiano Galassi2019-01-051-4/+5
|
* MacGui: move the advanced x264 panel to the 'Additional options' text field ↵Damiano Galassi2018-10-271-74/+49
| | | | contextual menu.
* MacGui: do not use NSMatrix for radio buttons, fix some layout issues.Damiano Galassi2018-06-111-3/+3
|
* MacGui: improve NSLocalizedString comments.Damiano Galassi2018-06-091-4/+4
|
* MacGui: set the minimum deployment target to 10.10. Remove Growl and use ↵Damiano Galassi2018-06-081-17/+9
| | | | macOS standard notifications. Remove deprecated API usage and code that doesn't compile anymore (QTKit).
* MacGui: use accessibilityValueDescription for the slider value description, ↵Damiano Galassi2016-10-211-1/+12
| | | | and check if the method is available so it doesn't crash on 10.9-10.7.
* MacGui: give VoiceOver the right accessibility value for the video quality ↵Damiano Galassi2016-10-211-0/+5
| | | | slider.
* MacGui: made the framerate radio button strings localizable.Damiano Galassi2016-07-211-2/+2
|
* MacGui: allow negative value in the quality slider.Damiano Galassi2016-03-301-0/+2
|
* MacGui: move the objc libhb wrapper to a separate framework.Damiano Galassi2016-03-111-2/+2
|
* x264: add multilib support (a.k.a. 10-bit)John Stebbins2015-11-121-3/+3
| | | | | This adds the structure to load an libx264 10-bit shared library. The user must install this library themselves to an appropriate place.
* MacGui: move the picture and filters settings to the main window.ritsuka2015-07-271-6/+4
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7379 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: add nullability annotations to the headers and use weak where is ↵ritsuka2015-05-301-1/+1
| | | | | | possible. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7244 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: don't hardcode which encoders support the preset system.Rodeo2015-05-291-1/+1
| | | | | | | Just ask libhb instead. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7243 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: convert the mac gui to Objective-C ARC.ritsuka2015-03-171-6/+6
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6996 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: do not apply the same preset to a job two times.ritsuka2015-01-311-4/+4
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6838 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: enable and fix more compiler warnings in the Xcode project.ritsuka2015-01-191-2/+2
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6772 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix a bunch of regressions (various crash when in some textfields, ↵ritsuka2014-12-301-4/+7
| | | | | | encode log going to the wrong directory). git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6676 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: remove redundant "enabled" property in a few view controller. ↵ritsuka2014-12-271-7/+7
| | | | | | Cosmetics in HBController. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6660 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: remove unneeded init.ritsuka2014-12-271-4/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6656 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: remove some unused #import. Move again more things in HBController ↵ritsuka2014-12-231-16/+1
| | | | | | to HBJob. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6644 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: use HBJob when possible.ritsuka2014-12-211-2/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6633 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: separate the video settings logic from the view controller. There ↵ritsuka2014-12-181-1308/+156
| | | | | | are a number of small regression ("Custom" preset and auto naming not updating) that will be fixed in the next commits. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6606 b64f7644-9d1e-0410-96f1-a4d463321fa5
* json: add json APIsjstebbins2014-12-161-2/+2
| | | | | | | | | | There are several changes to job and title structs that break current windows interop code. The interop code should be changed such that it only uses json APIs. So if there is any missing features (or bugs) in these APIs, please let me know. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6602 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix the constant quality / avg bitrate radio button selection when ↵ritsuka2014-11-011-1/+1
| | | | | | reloading a job from the queue. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6491 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: update the file name when the bitrate is changed and auto naming is ↵ritsuka2014-10-241-0/+5
| | | | | | enabled. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6462 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: hide the “Use advanced options panel” checkbox too when the ↵ritsuka2014-09-171-13/+59
| | | | | | advanced panel is disabled. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6411 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: disable/enable the encoder options label when needed and fix the ↵ritsuka2014-08-251-3/+6
| | | | | | encoder preset options when loading a queue item back to the main window. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6354 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fixed two small leaks.ritsuka2014-08-231-0/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6351 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: load the old lavcOption format too is preset in the preset.ritsuka2014-08-211-2/+9
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6338 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: remapped lavcOption to VideoOptionExtra.ritsuka2014-08-211-14/+22
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6337 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: load the lavcOption from preset and fixed the encoder selection when ↵ritsuka2014-08-211-0/+10
| | | | | | the container is changed. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6336 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: generalize video preset/tune/profile/level handling to make it works ↵ritsuka2014-08-211-335/+374
| | | | | | with the x265 encoder. Moved the lavc encoder options textfield to the video tab. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6334 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: implemented the HBViewValidation protocol in each of the main window ↵ritsuka2014-08-101-7/+7
| | | | | | view controllers. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6285 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGUI: Refactored the controller code for the ↵ritsuka2014-07-151-0/+1339
video/audio/subtitles/chapters view: Added a xib file and a NSViewController subclass for each tab of the main HandBrake window. Each view controller now to responds to the HBContainerChangedNotification and HBTitleChangedNotification notifications instead of using a custom way to notify changes. Converted the modified .xibs to the Xcode 5.1 format. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6231 b64f7644-9d1e-0410-96f1-a4d463321fa5