Allow editing subtitles and comments from PlayMovie
also resolve a TODO in regards to TasMovie disposing
This commit is contained in:
parent
efc6674215
commit
0165b5f286
|
@ -109,6 +109,7 @@
|
|||
this.Name = "EditCommentsForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Edit Comments";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnClosed);
|
||||
this.Load += new System.EventHandler(this.EditCommentsForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.CommentGrid)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
|
|
@ -12,13 +12,15 @@ namespace BizHawk.Client.EmuHawk
|
|||
private readonly bool _readOnly;
|
||||
private string _lastHeaderClicked;
|
||||
private bool _sortReverse;
|
||||
private readonly bool _dispose;
|
||||
|
||||
public EditCommentsForm(IMovie movie, bool readOnly)
|
||||
public EditCommentsForm(IMovie movie, bool readOnly, bool disposeOnClose = false)
|
||||
{
|
||||
_movie = movie;
|
||||
_readOnly = readOnly;
|
||||
_lastHeaderClicked = "";
|
||||
_sortReverse = false;
|
||||
_dispose = disposeOnClose;
|
||||
|
||||
InitializeComponent();
|
||||
Icon = Properties.Resources.TAStudioIcon;
|
||||
|
@ -99,5 +101,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
_sortReverse = !_sortReverse;
|
||||
CommentGrid.Refresh();
|
||||
}
|
||||
|
||||
private void OnClosed(object sender, FormClosedEventArgs e)
|
||||
{
|
||||
if (_dispose && _movie is ITasMovie tasMovie)
|
||||
{
|
||||
tasMovie.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,6 +199,7 @@
|
|||
this.Name = "EditSubtitlesForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Edit Subtitles";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnClosed);
|
||||
this.Load += new System.EventHandler(this.EditSubtitlesForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.SubGrid)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
|
|
@ -17,14 +17,16 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private readonly IMovie _selectedMovie;
|
||||
private readonly bool _readOnly;
|
||||
private readonly bool _dispose;
|
||||
|
||||
public IDialogController DialogController { get; }
|
||||
|
||||
public EditSubtitlesForm(IDialogController dialogController, IMovie movie, PathEntryCollection pathEntries, bool readOnly)
|
||||
public EditSubtitlesForm(IDialogController dialogController, IMovie movie, PathEntryCollection pathEntries, bool readOnly, bool disposeOnClose = false)
|
||||
{
|
||||
_pathEntries = pathEntries;
|
||||
_selectedMovie = movie;
|
||||
_readOnly = readOnly;
|
||||
_dispose = disposeOnClose;
|
||||
DialogController = dialogController;
|
||||
InitializeComponent();
|
||||
Icon = Properties.Resources.TAStudioIcon;
|
||||
|
@ -271,5 +273,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void OnClosed(object sender, FormClosedEventArgs e)
|
||||
{
|
||||
if (_dispose && _selectedMovie is ITasMovie tasMovie)
|
||||
{
|
||||
tasMovie.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -525,8 +525,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
// TODO this will allocate unnecessary memory when this movie is a TasMovie due to TasStateManager
|
||||
var movie = _movieSession.Get(_movieList[MovieView.SelectedIndices[0]].Filename);
|
||||
movie.Load();
|
||||
// TODO movie should be disposed if movie is ITasMovie
|
||||
var form = new EditCommentsForm(movie, _movieSession.ReadOnly);
|
||||
var form = new EditCommentsForm(movie, readOnly: false, disposeOnClose: true);
|
||||
form.Show();
|
||||
}
|
||||
}
|
||||
|
@ -539,8 +538,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
// TODO this will allocate unnecessary memory when this movie is a TasMovie due to TasStateManager
|
||||
var movie = _movieSession.Get(_movieList[MovieView.SelectedIndices[0]].Filename);
|
||||
movie.Load();
|
||||
// TODO movie should be disposed if movie is ITasMovie
|
||||
var form = new EditSubtitlesForm(DialogController, movie, _config.PathEntries, readOnly: true);
|
||||
var form = new EditSubtitlesForm(DialogController, movie, _config.PathEntries, readOnly: false, disposeOnClose: true);
|
||||
form.Show();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue