summaryrefslogtreecommitdiffstats
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* WinGui:sr552007-07-261-2/+2
| | | | | | | - Forgot to take out a debug messagebox - Added a 3Second thread sleep before trying to rescan git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@744 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-262-18/+44
| | | | | | | - Disabled Encode progress on GUI Window. CLI now allowed to appear and standard error is no longer re-directed. (BUG: Standard error causing video distortions when used) - If scanning a Source fails, the GUI will now attempt to scan the title a 2nd time automatically. Same issue, Standard error causing hbcli to randomly fail. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@743 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-251-24/+26
| | | | | | - User is prevented from trying to launch more than 1 encode process from frmMain. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@737 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-253-47/+111
| | | | | | - Added Cancel button to frmMain. Allows one to cancel the encode on the fly. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@736 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-254-17/+38
| | | | | | | - Excluded brianmario's CLI handler until it's completed. - Enabled cancel button on frmReadDVD (yes it actually works ;)) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@735 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-258-96/+29
| | | | | | | | - Splash screen added. (Bit of a hack but will work until such time it can be done properly) - Added temporary splash screen image. - Disbaled cancel button on frmReadDVD until such time it can be coded. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@731 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-234-14/+69
| | | | | | | | | - Fixed one cross-threading bug with a dirty hack. This will need to be sorted out properly later. - Added cancel button place holder on frmReadDVD. (will be used for instances where hbcli stalls or crashes) - Fixed a few Design issues with windows appearing with the wrong dimensions. - Updated some comments about bugs that need fixed. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@723 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-235-211/+765
| | | | | | | | | - Automatically disable options which are H.264 only when a non H.264 encoder is selected. (Instead of annoying alerts) -Trimed the size of the GUI down a bit. Slight re-arrange on the Video Settings tab. - Initial Debug window. Still to be written. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@722 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-218-32/+67
| | | | | | | | | - Updated some tooltips for the main items on frmMain - Created a Debug window. - Added comments relating to a cross-thread bug with frmDvdInfo - A few other code small code tweaks git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@721 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-192-26/+35
| | | | | | | - Updated the temporary encode progress variable with fps, avg fps and time remaining. Positioned it correctly. - Added a few comments. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@718 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-198-26/+76
| | | | | | | | | updated parsing code events to not be static anymore added encode parsing to catch encode progress added OnEncodeProgress event git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@717 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-191-4/+7
| | | | | | minor update to encode process CLI call -- put it on it's own thread git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@716 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-1914-117/+149
| | | | | | | | | misc UI control placement changes updates to some FormBorderStyle's converted Parsing code to use regex instead of substrings and string splitting added a couple of additional code comments git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@715 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-187-20/+39
| | | | | | | - Many more little design tweaks. - Updated frmSelectDVD for "All Supported Files" git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@714 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-184-29/+52
| | | | | | | - Changed the progress bar on frmReadDVD to a text value. Progress bar wasn't really needed here. - Few design tweaks to the frmReadDVD window. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@713 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-181-1/+6
| | | | | | quick bugfix to progress bar git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@712 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-183-14/+33
| | | | | | | added OnScanProgress event to Parser class which is raised upon noticing "Scanning title # of #..." in the output added progress bar to frmReadDVD to give better visual notification of scan progress git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@711 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-186-0/+103
| | | | | | added some more source comments git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@710 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-181-1/+14
| | | | | | Added some additional comments git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@709 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:brianmario2007-07-1812-29/+176
| | | | | | | | continued adding to CLI manager code updated frmDvdInfo to display data parsed from STDOUT/STDERR minor updates to form constructors git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@708 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-171-17/+33
| | | | | | | | - Fixed resolution calculation bug. Mod16 res calculation now works. - Fixed hbproc issue when clicking encode video. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@707 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-172-0/+28
| | | | | | - Comments regarding bugs in the Parser. These will need fixed. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@705 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-162-5/+2
| | | | | | | - Fixed: Audio Channel drop down has no Automatic Option. - A few other small changes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@698 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-162-0/+57
| | | | | | - Files for last checkin git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@697 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-168-150/+25
| | | | | | - CLI process handling code moved into its own class. Reduces code replication. Returns hbProc git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@696 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-153-17/+26
| | | | | | | | | | - Fixed Queue not encoding the full list - Fixed Subtitle dropdown not having a "None" Option - Fixed Audio dropdown not having an "Automatic" option - Fixed Destination browse not showing files - Added Alert when queue has finished. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@693 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-154-41/+65
| | | | | | | - Fixed Queue bug where it selecting the wrong item. - changed Invalid chapter messagebox to onscreen text alert. (less irritating) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@692 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: added initial CLI call managment class (work in progress)brianmario2007-07-154-18/+34
| | | | | | | updated frmQueue window to work properly with cross-thread calls and updating proper UI elements updated ToString override in Parsing.Title to display leading zeros in duration git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@691 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: more cleanup in frmMainbrianmario2007-07-153-103/+65
| | | | | | fix to frmQueue for cross-thread UI updating git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@690 b64f7644-9d1e-0410-96f1-a4d463321fa5
* updated some ToString overrides for proper use in the UIbrianmario2007-07-154-11/+45
| | | | | | | small change to frmMain to allow for easier tracking of Handbrake CLI process (which we will code soon) cleaned up function drop_chapterStart_SelectedIndexChanged git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@689 b64f7644-9d1e-0410-96f1-a4d463321fa5
* - Audio and Subtitle down-downs now populated on DVD Title selection.sr552007-07-159-669/+61
| | | | | | | | | - Verbose bug fixed in GenerateQuery() - Setup frmDvdInfo ready to be populated with plain text output from handbrake. - Removed the EncodeOutput window. This can wait till another version. - A few other small changes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@688 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-145-6/+123
| | | | | | - Just a few small changes. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@684 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Win Gui:sr552007-07-143-13/+98
| | | | | | | | | - Fixed bug with chapter drop downs throwing errors when they shouldn't. - Chapter down down menus are now populated on title selection. (Audio and Subtitles still need to be done) - Process priority option now works. All encodes both single and queue will use the defined priority. - A few other small things. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@682 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-136-42/+140
| | | | | | | | | | - Change toString method in Parsing for timestamp return. removed h,m,s letters. - Commented out some parsing code that is not needed at this stage. - Most of the work for the Queue has now been done. Only some cross-thread UI element changes need done. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@679 b64f7644-9d1e-0410-96f1-a4d463321fa5
* forgot to check this inbrianmario2007-07-131-0/+56
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@678 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: sr552007-07-1340-12709/+0
| | | | | | Removed all old vb.net code. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@677 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-132-6/+6
| | | | | | Uncommented some code in Parsing. Awaiting Parser.cs to be checked in now. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@676 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-139-17/+42
| | | | | | - Some C# Code fixes. Parser.cs is currently missing in action. Will appear soon hopefully. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@675 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-119-53/+649
| | | | | | few other small changes + new form for hbcli's encode output git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@673 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-116-341/+192
| | | | | | - Couple bug fixes + a bit of code tidy up. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@672 b64f7644-9d1e-0410-96f1-a4d463321fa5
* updated some Form.Show calls to Form.ShowDialogbrianmario2007-07-1111-38/+69
| | | | | | | | updating frmReadDVD to throw CLI call on it's own thread to prevent UI lockup added ToString overrides in Parsing.AudioTrack, Parsing.Subtitle and Parsing.Title misc interface/notification updates to frmReadDVD upon starting the scan process git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@671 b64f7644-9d1e-0410-96f1-a4d463321fa5
* removing suo files from checkout to prevent constant conflictsbrianmario2007-07-102-0/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@670 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-106-178/+92
| | | | | | - Just some more C# getting checked in. Not far from completion now. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@669 b64f7644-9d1e-0410-96f1-a4d463321fa5
* added new parsing code to parse cli output into objectsbrianmario2007-07-099-3/+479
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@667 b64f7644-9d1e-0410-96f1-a4d463321fa5
* checking loginbrianmario2007-07-091-0/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@663 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-098-22/+235
| | | | | | - Just a few updated files. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@662 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-095-6/+267
| | | | | | - Another chunk of code ported to C# git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@661 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-085-56/+178
| | | | | | - C# Handbrake CLI output parsing code converted from vb.net project. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@660 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-082-5/+8
| | | | | | - Latest C# code git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@659 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552007-07-0843-4/+10697
| | | | | | | | | - All Supported Files (for File dialog window) - Few other minor changes. Initial C# code project which is due to replace current vb.net code. Partially functional. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@658 b64f7644-9d1e-0410-96f1-a4d463321fa5