mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Add regions to CUESheet.cs
This commit is contained in:
@@ -21,6 +21,8 @@ namespace CUETools.Processor
|
|||||||
{
|
{
|
||||||
public class CUESheet
|
public class CUESheet
|
||||||
{
|
{
|
||||||
|
#region Fields
|
||||||
|
|
||||||
private bool _stop, _pause;
|
private bool _stop, _pause;
|
||||||
private List<CUELine> _attributes;
|
private List<CUELine> _attributes;
|
||||||
private List<TrackInfo> _tracks;
|
private List<TrackInfo> _tracks;
|
||||||
@@ -74,10 +76,18 @@ namespace CUETools.Processor
|
|||||||
private bool _useLocalDB;
|
private bool _useLocalDB;
|
||||||
private CUEToolsLocalDB _localDB;
|
private CUEToolsLocalDB _localDB;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Events
|
||||||
|
|
||||||
public event EventHandler<CompressionPasswordRequiredEventArgs> PasswordRequired;
|
public event EventHandler<CompressionPasswordRequiredEventArgs> PasswordRequired;
|
||||||
public event EventHandler<CUEToolsProgressEventArgs> CUEToolsProgress;
|
public event EventHandler<CUEToolsProgressEventArgs> CUEToolsProgress;
|
||||||
public event EventHandler<CUEToolsSelectionEventArgs> CUEToolsSelection;
|
public event EventHandler<CUEToolsSelectionEventArgs> CUEToolsSelection;
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
|
||||||
public CUESheet(CUEConfig config)
|
public CUESheet(CUEConfig config)
|
||||||
{
|
{
|
||||||
_config = config;
|
_config = config;
|
||||||
@@ -106,6 +116,10 @@ namespace CUETools.Processor
|
|||||||
proxy = _config.GetProxy();
|
proxy = _config.GetProxy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Methods
|
||||||
|
|
||||||
public void OpenCD(ICDRipper ripper)
|
public void OpenCD(ICDRipper ripper)
|
||||||
{
|
{
|
||||||
_ripper = ripper;
|
_ripper = ripper;
|
||||||
@@ -4492,5 +4506,7 @@ namespace CUETools.Processor
|
|||||||
AsmHelper helper = CompileScript(script);
|
AsmHelper helper = CompileScript(script);
|
||||||
return helper != null;
|
return helper != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user