2007-04-16 06:26:42 +02:00
// Copyright (c) 2007, Rodrigo Braz Monteiro
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of the Aegisub Group nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
2009-07-29 07:43:02 +02:00
// Aegisub Project http://www.aegisub.org/
2007-04-16 06:26:42 +02:00
//
2009-07-29 07:43:02 +02:00
// $Id$
/// @file subs_preview.cpp
/// @brief Preview control using a dummy video provider and subtitles provider to render a preview
/// @ingroup custom_control
///
2007-04-16 06:26:42 +02:00
////////////
// Includes
2009-01-04 07:31:48 +01:00
# include "config.h"
2007-09-12 01:22:26 +02:00
# include <wx/msgdlg.h>
# include <wx/dcclient.h>
# include <wx/dcmemory.h>
2007-04-17 01:41:06 +02:00
# include "ass_style.h"
2007-04-16 06:26:42 +02:00
# include "subs_preview.h"
# include "video_provider_dummy.h"
2008-03-07 22:00:20 +01:00
# include "subtitles_provider_manager.h"
2007-04-16 06:26:42 +02:00
# include "ass_file.h"
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Constructor
/// @param parent
/// @param id
/// @param pos
/// @param size
/// @param winStyle
/// @param col
///
2007-05-21 06:53:14 +02:00
SubtitlesPreview : : SubtitlesPreview ( wxWindow * parent , int id , wxPoint pos , wxSize size , int winStyle , wxColour col )
2007-04-17 01:41:06 +02:00
: wxWindow ( parent , id , pos , size , winStyle )
2007-04-16 06:26:42 +02:00
{
AssStyle temp ;
2007-04-17 01:41:06 +02:00
bmp = NULL ;
style = NULL ;
2007-04-17 01:59:38 +02:00
vid = NULL ;
2007-04-16 06:26:42 +02:00
SetStyle ( & temp ) ;
2007-04-17 01:41:06 +02:00
SetText ( _T ( " preview " ) ) ;
SetSizeHints ( size . GetWidth ( ) , size . GetHeight ( ) , - 1 , - 1 ) ;
2007-05-21 06:53:14 +02:00
backColour = col ;
2007-04-16 06:26:42 +02:00
}
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Destructor
///
2007-04-16 06:26:42 +02:00
SubtitlesPreview : : ~ SubtitlesPreview ( ) {
delete bmp ;
2007-06-16 21:38:44 +02:00
bmp = NULL ;
2007-04-17 01:41:06 +02:00
delete style ;
2007-06-16 21:38:44 +02:00
style = NULL ;
2007-04-17 01:59:38 +02:00
delete vid ;
2007-06-16 21:38:44 +02:00
vid = NULL ;
2007-04-16 06:26:42 +02:00
}
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Set style
/// @param _style
/// @return
///
2007-04-16 06:26:42 +02:00
void SubtitlesPreview : : SetStyle ( AssStyle * _style ) {
2007-04-17 01:41:06 +02:00
// Prepare style
AssStyle * tmpStyle = AssEntry : : GetAsStyle ( _style - > Clone ( ) ) ;
tmpStyle - > name = _T ( " Preview " ) ;
tmpStyle - > alignment = 5 ;
for ( int i = 0 ; i < 4 ; i + + ) tmpStyle - > Margin [ i ] = 0 ;
tmpStyle - > UpdateData ( ) ;
// See if it's any different from the current
if ( style ) {
if ( tmpStyle - > IsEqualTo ( style ) ) {
delete tmpStyle ;
return ;
}
2007-07-05 21:08:43 +02:00
delete style ;
2007-04-17 01:41:06 +02:00
}
// Update
style = tmpStyle ;
2007-04-16 06:26:42 +02:00
UpdateBitmap ( ) ;
}
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Set text
/// @param text
///
2007-04-16 06:26:42 +02:00
void SubtitlesPreview : : SetText ( wxString text ) {
2007-04-17 01:41:06 +02:00
if ( text ! = showText ) {
showText = text ;
UpdateBitmap ( ) ;
}
2007-04-16 06:26:42 +02:00
}
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Update image
/// @param w
/// @param h
/// @return
///
2007-04-16 06:26:42 +02:00
void SubtitlesPreview : : UpdateBitmap ( int w , int h ) {
// Visible?
if ( ! IsShownOnScreen ( ) ) return ;
// Get size
if ( w = = - 1 ) {
w = GetClientSize ( ) . GetWidth ( ) ;
h = GetClientSize ( ) . GetHeight ( ) ;
}
// Delete old bmp if needed
if ( bmp ) {
if ( bmp - > GetWidth ( ) ! = w | | bmp - > GetHeight ( ) ! = h ) {
delete bmp ;
bmp = NULL ;
}
}
// Create bitmap
if ( ! bmp ) {
bmp = new wxBitmap ( w , h , - 1 ) ;
}
// Get AegiVideoFrame
2007-05-21 06:53:14 +02:00
if ( ! vid ) vid = new DummyVideoProvider ( 0.0 , 10 , w , h , backColour , true ) ;
2007-04-17 01:59:38 +02:00
AegiVideoFrame frame ;
2009-07-20 05:50:25 +02:00
frame . CopyFrom ( vid - > GetFrame ( 0 ) ) ;
2007-04-16 06:26:42 +02:00
2007-04-18 01:00:30 +02:00
// Try to get subtitles provider
SubtitlesProvider * provider = NULL ;
try {
2008-03-07 03:32:29 +01:00
provider = SubtitlesProviderFactoryManager : : GetProvider ( ) ;
2007-04-18 01:00:30 +02:00
}
catch ( . . . ) {
2009-07-24 04:10:41 +02:00
wxMessageBox ( _T ( " Could not get any subtitles provider for the preview box. Make sure that you have a provider installed. " ) , _T ( " No subtitles provider " ) , wxICON_ERROR | wxOK ) ;
2007-04-18 01:00:30 +02:00
}
// Provider OK
2009-05-15 14:44:36 +02:00
if ( provider ) {
2007-04-18 01:00:30 +02:00
// Generate subtitles
AssFile * subs = new AssFile ( ) ;
subs - > LoadDefault ( ) ;
int ver = 1 ;
wxString outGroup ;
2007-07-05 21:03:26 +02:00
subs - > InsertStyle ( ( AssStyle * ) style - > Clone ( ) ) ;
2007-04-18 01:00:30 +02:00
subs - > SetScriptInfo ( _T ( " PlayResX " ) , wxString : : Format ( _T ( " %i " ) , w ) ) ;
subs - > SetScriptInfo ( _T ( " PlayResY " ) , wxString : : Format ( _T ( " %i " ) , h ) ) ;
subs - > AddLine ( _T ( " Dialogue: 0,0:00:00.00,0:00:05.00,Preview,,0000,0000,0000,,{ \\ q2} " ) + showText , _T ( " [Events] " ) , 0 , ver , & outGroup ) ;
// Apply subtitles
2007-06-16 21:38:44 +02:00
try {
provider - > LoadSubtitles ( subs ) ;
provider - > DrawSubtitles ( frame , 0.1 ) ;
}
catch ( . . . ) { }
2009-05-15 14:44:36 +02:00
delete provider ;
2007-04-16 06:26:42 +02:00
}
// Convert frame to bitmap
wxMemoryDC dc ( * bmp ) ;
wxBitmap tempBmp ( frame . GetImage ( ) ) ;
2007-04-16 17:08:09 +02:00
frame . Clear ( ) ;
2007-04-16 06:26:42 +02:00
dc . DrawBitmap ( tempBmp , 0 , 0 ) ;
Refresh ( ) ;
}
///////////////
// Event table
BEGIN_EVENT_TABLE ( SubtitlesPreview , wxWindow )
EVT_PAINT ( SubtitlesPreview : : OnPaint )
EVT_SIZE ( SubtitlesPreview : : OnSize )
END_EVENT_TABLE ( )
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Paint event
/// @param event
///
2007-04-16 06:26:42 +02:00
void SubtitlesPreview : : OnPaint ( wxPaintEvent & event ) {
wxPaintDC dc ( this ) ;
if ( ! bmp ) UpdateBitmap ( ) ;
if ( bmp ) dc . DrawBitmap ( * bmp , 0 , 0 ) ;
}
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Size event
/// @param event
///
2007-04-16 06:26:42 +02:00
void SubtitlesPreview : : OnSize ( wxSizeEvent & event ) {
2007-04-17 01:59:38 +02:00
delete vid ;
vid = NULL ;
2007-04-16 06:26:42 +02:00
UpdateBitmap ( event . GetSize ( ) . GetWidth ( ) , event . GetSize ( ) . GetHeight ( ) ) ;
}
2007-05-21 06:53:14 +02:00
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
/// @brief Set colour
/// @param col
///
2007-05-21 06:53:14 +02:00
void SubtitlesPreview : : SetColour ( wxColour col ) {
backColour = col ;
delete vid ;
vid = NULL ;
UpdateBitmap ( ) ;
}
2009-07-29 07:43:02 +02:00
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00