2006-01-16 22:02:54 +01:00
// Copyright (c) 2005, Rodrigo Braz Monteiro
2010-07-20 05:11:11 +02:00
// Copyright (c) 2010, Thomas Goyne <plorkyeran@aegisub.org>
2006-01-16 22:02:54 +01:00
// 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/
2006-01-16 22:02:54 +01:00
//
2009-07-29 07:43:02 +02:00
// $Id$
/// @file subs_edit_box.cpp
/// @brief Main subtitle editing area, including toolbars around the text control
/// @ingroup main_ui
2006-01-16 22:02:54 +01:00
2009-01-04 07:31:48 +01:00
# include "config.h"
2009-09-10 15:06:40 +02:00
# ifndef AGI_PRE
2010-07-20 05:11:11 +02:00
# ifdef _WIN32
# include <functional>
# else
# include <tr1/functional>
# endif
# include <wx/button.h>
# include <wx/checkbox.h>
2006-12-24 05:54:35 +01:00
# include <wx/colordlg.h>
2010-07-20 05:11:11 +02:00
# include <wx/combobox.h>
# include <wx/dcclient.h>
# include <wx/dcmemory.h>
2006-12-24 05:54:35 +01:00
# include <wx/fontdlg.h>
2010-07-20 05:11:11 +02:00
# include <wx/radiobut.h>
# include <wx/spinctrl.h>
2009-09-10 15:06:40 +02:00
# endif
2006-01-16 22:02:54 +01:00
# include "ass_dialogue.h"
2009-09-10 15:06:40 +02:00
# include "ass_file.h"
2006-01-16 22:02:54 +01:00
# include "ass_override.h"
2009-09-10 15:06:40 +02:00
# include "ass_style.h"
2006-01-16 22:02:54 +01:00
# include "audio_display.h"
# include "dialog_colorpicker.h"
2006-03-05 21:42:38 +01:00
# include "dialog_search_replace.h"
2009-09-10 15:06:40 +02:00
# include "frame_main.h"
2009-07-24 02:08:25 +02:00
# include "libresrc/libresrc.h"
2009-09-10 15:06:40 +02:00
# include "main.h"
# include "subs_edit_box.h"
2010-07-20 05:11:11 +02:00
# include "subs_edit_ctrl.h"
2009-09-10 15:06:40 +02:00
# include "subs_grid.h"
# include "timeedit_ctrl.h"
# include "tooltip_manager.h"
# include "utils.h"
# include "validators.h"
# include "video_context.h"
# include "video_display.h"
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
enum {
BUTTON_BOLD = 1300 ,
BUTTON_ITALICS ,
BUTTON_UNDERLINE ,
BUTTON_STRIKEOUT ,
BUTTON_FONT_NAME ,
BUTTON_COLOR1 ,
BUTTON_COLOR2 ,
BUTTON_COLOR3 ,
BUTTON_COLOR4 ,
BUTTON_COMMIT ,
BUTTON_LAST
} ;
enum {
BUTTON_FIRST = BUTTON_BOLD
} ;
template < class T >
struct field_setter : public std : : binary_function < AssDialogue * , T , void > {
T AssDialogue : : * field ;
field_setter ( T AssDialogue : : * field ) : field ( field ) { }
void operator ( ) ( AssDialogue * obj , T value ) {
obj - > * field = value ;
}
} ;
/// @brief Get the selection from a text edit
/// @param[out] start Beginning of selection
/// @param[out] end End of selection
void get_selection ( SubsTextEditCtrl * TextEdit , int & start , int & end ) {
TextEdit - > GetSelection ( & start , & end ) ;
int len = TextEdit - > GetText ( ) . size ( ) ;
start = MID ( 0 , TextEdit - > GetReverseUnicodePosition ( start ) , len ) ;
end = MID ( 0 , TextEdit - > GetReverseUnicodePosition ( end ) , len ) ;
}
/// @brief Get the value of a tag at a specified position in a line
/// @param line Line to get the value from
/// @param blockn Block number in the line
/// @param initial Value from style to use if the tag does not exist
/// @param tag Tag to get the value of
/// @param alt Alternate name of the tag, if any
template < class T >
static T get_value ( AssDialogue const & line , int blockn , T initial , wxString tag , wxString alt = " " ) {
for ( int i = blockn ; i > = 0 ; i - - ) {
AssDialogueBlockOverride * ovr = dynamic_cast < AssDialogueBlockOverride * > ( line . Blocks [ i ] ) ;
if ( ovr ) {
for ( int j = ( int ) ovr - > Tags . size ( ) - 1 ; j > = 0 ; j - - ) {
if ( ovr - > Tags [ j ] - > Name = = tag | | ovr - > Tags [ j ] - > Name = = alt ) {
return ovr - > Tags [ j ] - > Params [ 0 ] - > Get < T > ( ) ;
}
}
}
}
return initial ;
}
template < class Control >
struct FocusHandler : std : : unary_function < wxFocusEvent & , void > {
wxString value ;
wxString alt ;
wxColor color ;
Control * control ;
void operator ( ) ( wxFocusEvent & event ) const {
event . Skip ( ) ;
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
2010-07-20 05:11:11 +02:00
if ( control - > GetValue ( ) = = alt ) {
control - > Freeze ( ) ;
control - > ChangeValue ( value ) ;
control - > SetForegroundColour ( color ) ;
control - > Thaw ( ) ;
}
}
} ;
template < class Event , class T >
void bind_focus_handler ( T * control , Event event , wxString value , wxString alt , wxColor color ) {
FocusHandler < T > handler ;
handler . value = value ;
handler . alt = alt ;
handler . color = color ;
handler . control = control ;
control - > Bind ( event , handler ) ;
}
SubsEditBox : : SubsEditBox ( wxWindow * parent , SubtitlesGrid * grid , AudioDisplay * audio )
: wxPanel ( parent , - 1 , wxDefaultPosition , wxDefaultSize , wxTAB_TRAVERSAL | wxRAISED_BORDER , " SubsEditBox " )
, line ( NULL )
, splitLineMode ( false )
, controlState ( true )
, audio ( audio )
, grid ( grid )
2006-01-16 22:02:54 +01:00
{
grid - > editBox = this ;
// Top controls
wxArrayString styles ;
2009-09-05 04:24:52 +02:00
styles . Add ( _T ( " Default " ) ) ;
2010-07-20 05:11:11 +02:00
CommentBox = new wxCheckBox ( this , wxID_ANY , _ ( " Comment " ) ) ;
StyleBox = new wxComboBox ( this , wxID_ANY , _T ( " Default " ) , wxDefaultPosition , wxSize ( 110 , - 1 ) , styles , wxCB_READONLY | wxTE_PROCESS_ENTER ) ;
ActorBox = new wxComboBox ( this , wxID_ANY , _T ( " Actor " ) , wxDefaultPosition , wxSize ( 110 , - 1 ) , styles , wxCB_DROPDOWN | wxTE_PROCESS_ENTER ) ;
Effect = new wxTextCtrl ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 80 , - 1 ) , wxTE_PROCESS_ENTER ) ;
// Middle controls
Layer = new wxSpinCtrl ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 50 , - 1 ) , wxSP_ARROW_KEYS , 0 , 0x7FFFFFFF , 0 ) ;
StartTime = new TimeEdit ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 75 , - 1 ) , wxTE_PROCESS_ENTER ) ;
EndTime = new TimeEdit ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 75 , - 1 ) , wxTE_PROCESS_ENTER ) ;
EndTime - > isEnd = true ;
Duration = new TimeEdit ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 75 , - 1 ) , wxTE_PROCESS_ENTER ) ;
MarginL = new wxTextCtrl ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 40 , - 1 ) , wxTE_CENTRE | wxTE_PROCESS_ENTER , NumValidator ( ) ) ;
MarginL - > SetMaxLength ( 4 ) ;
MarginR = new wxTextCtrl ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 40 , - 1 ) , wxTE_CENTRE | wxTE_PROCESS_ENTER , NumValidator ( ) ) ;
MarginR - > SetMaxLength ( 4 ) ;
MarginV = new wxTextCtrl ( this , wxID_ANY , " " , wxDefaultPosition , wxSize ( 40 , - 1 ) , wxTE_CENTRE | wxTE_PROCESS_ENTER , NumValidator ( ) ) ;
MarginV - > SetMaxLength ( 4 ) ;
// Middle-bottom controls
ToggableButtons . reserve ( 10 ) ;
int id = BUTTON_FIRST ;
# define MAKE_BUTTON(img, tooltip) \
ToggableButtons . push_back ( new wxBitmapButton ( this , id + + , GETIMAGE ( img ) ) ) ; \
ToggableButtons . back ( ) - > SetToolTip ( tooltip ) ;
MAKE_BUTTON ( button_bold_16 , _ ( " Bold " ) ) ;
MAKE_BUTTON ( button_italics_16 , _ ( " Italics " ) ) ;
MAKE_BUTTON ( button_underline_16 , _ ( " Underline " ) ) ;
MAKE_BUTTON ( button_strikeout_16 , _ ( " Strikeout " ) ) ;
MAKE_BUTTON ( button_fontname_16 , _ ( " Font Face Name " ) ) ;
MAKE_BUTTON ( button_color_one_16 , _ ( " Primary color " ) ) ;
MAKE_BUTTON ( button_color_two_16 , _ ( " Secondary color " ) ) ;
MAKE_BUTTON ( button_color_three_16 , _ ( " Outline color " ) ) ;
MAKE_BUTTON ( button_color_four_16 , _ ( " Shadow color " ) ) ;
MAKE_BUTTON ( button_audio_commit_16 , _ ( " Commits the text (Enter). Hold Ctrl to stay in line (%KEY%). " ) ) ;
# undef MAKE_BUTTON
ByTime = new wxRadioButton ( this , wxID_ANY , _ ( " Time " ) , wxDefaultPosition , wxDefaultSize , wxRB_GROUP ) ;
ByFrame = new wxRadioButton ( this , wxID_ANY , _ ( " Frame " ) ) ;
// Tooltips
2006-01-16 22:02:54 +01:00
CommentBox - > SetToolTip ( _ ( " Comment this line out. Commented lines don't show up on screen. " ) ) ;
StyleBox - > SetToolTip ( _ ( " Style for this line. " ) ) ;
ActorBox - > SetToolTip ( _ ( " Actor name for this speech. This is only for reference, and is mainly useless. " ) ) ;
2006-12-24 17:17:40 +01:00
Effect - > SetToolTip ( _ ( " Effect for this line. This can be used to store extra information for karaoke scripts, or for the effects supported by the renderer. " ) ) ;
2006-01-16 22:02:54 +01:00
Layer - > SetToolTip ( _ ( " Layer number " ) ) ;
StartTime - > SetToolTip ( _ ( " Start time " ) ) ;
EndTime - > SetToolTip ( _ ( " End time " ) ) ;
Duration - > SetToolTip ( _ ( " Line duration " ) ) ;
2006-12-30 15:31:41 +01:00
MarginL - > SetToolTip ( _ ( " Left Margin (0 = default) " ) ) ;
MarginR - > SetToolTip ( _ ( " Right Margin (0 = default) " ) ) ;
MarginV - > SetToolTip ( _ ( " Vertical Margin (0 = default) " ) ) ;
2006-12-24 17:17:40 +01:00
ByTime - > SetToolTip ( _ ( " Time by h:mm:ss.cs " ) ) ;
ByFrame - > SetToolTip ( _ ( " Time by frame number " ) ) ;
2006-06-27 06:13:34 +02:00
// Top sizer
2006-12-27 01:00:41 +01:00
TopSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2008-03-10 00:00:03 +01:00
TopSizer - > Add ( CommentBox , 0 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
TopSizer - > Add ( StyleBox , 2 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
TopSizer - > Add ( ActorBox , 2 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
TopSizer - > Add ( Effect , 3 , wxALIGN_CENTER , 5 ) ;
2006-06-27 06:13:34 +02:00
// Middle sizer
2006-12-27 01:00:41 +01:00
splitLineMode = true ;
MiddleSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2007-09-21 18:20:00 +02:00
MiddleSizer - > Add ( Layer , 0 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
MiddleSizer - > Add ( StartTime , 0 , wxRIGHT | wxALIGN_CENTER , 0 ) ;
MiddleSizer - > Add ( EndTime , 0 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
MiddleSizer - > Add ( Duration , 0 , wxRIGHT | wxALIGN_CENTER , 5 ) ;
MiddleSizer - > Add ( MarginL , 0 , wxALIGN_CENTER , 0 ) ;
MiddleSizer - > Add ( MarginR , 0 , wxALIGN_CENTER , 0 ) ;
MiddleSizer - > Add ( MarginV , 0 , wxALIGN_CENTER , 0 ) ;
2006-12-27 01:00:41 +01:00
MiddleSizer - > AddSpacer ( 5 ) ;
2006-01-16 22:02:54 +01:00
// Middle-bottom sizer
2006-12-27 01:00:41 +01:00
MiddleBotSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2010-07-20 05:11:11 +02:00
for ( size_t i = 0 ; i < ToggableButtons . size ( ) ; + + i ) {
MiddleBotSizer - > Add ( ToggableButtons [ i ] , 0 , wxALIGN_CENTER | wxEXPAND , 0 ) ;
if ( i = = 4 | | i = = 8 )
MiddleBotSizer - > AddSpacer ( 5 ) ;
}
2008-03-09 23:31:16 +01:00
MiddleBotSizer - > AddSpacer ( 10 ) ;
MiddleBotSizer - > Add ( ByTime , 0 , wxRIGHT | wxALIGN_CENTER | wxEXPAND , 5 ) ;
MiddleBotSizer - > Add ( ByFrame , 0 , wxRIGHT | wxALIGN_CENTER | wxEXPAND , 5 ) ;
2006-01-16 22:02:54 +01:00
// Text editor
2010-07-20 05:11:11 +02:00
TextEdit = new SubsTextEditCtrl ( this , wxSize ( 300 , 50 ) , wxBORDER_SUNKEN , grid ) ;
TextEdit - > Bind ( wxEVT_KEY_DOWN , & SubsEditBox : : OnKeyDown , this ) ;
TextEdit - > SetUndoCollection ( false ) ;
2006-12-27 01:00:41 +01:00
BottomSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
2006-01-16 22:02:54 +01:00
BottomSizer - > Add ( TextEdit , 1 , wxEXPAND , 0 ) ;
// Main sizer
2006-12-27 01:00:41 +01:00
MainSizer = new wxBoxSizer ( wxVERTICAL ) ;
2008-03-09 23:31:16 +01:00
MainSizer - > Add ( TopSizer , 0 , wxEXPAND | wxALL , 3 ) ;
2006-01-16 22:02:54 +01:00
MainSizer - > Add ( MiddleSizer , 0 , wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM , 3 ) ;
MainSizer - > Add ( MiddleBotSizer , 0 , wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM , 3 ) ;
MainSizer - > Add ( BottomSizer , 1 , wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM , 3 ) ;
// Set sizer
SetSizer ( MainSizer ) ;
MainSizer - > SetSizeHints ( this ) ;
origBgColour = TextEdit - > GetBackgroundColour ( ) ;
disabledBgColour = GetBackgroundColour ( ) ;
2006-12-27 01:00:41 +01:00
2010-07-20 05:11:11 +02:00
wxColor text = wxSystemSettings : : GetColour ( wxSYS_COLOUR_WINDOWTEXT ) ;
wxColor grey ( ( text . Red ( ) + origBgColour . Red ( ) ) / 2 ,
( text . Green ( ) + origBgColour . Green ( ) ) / 2 ,
( text . Blue ( ) + origBgColour . Blue ( ) ) / 2 ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
// Setup placeholders for effect and actor boxes
bind_focus_handler ( Effect , wxEVT_SET_FOCUS , " " , L " Effect " , text ) ;
bind_focus_handler ( Effect , wxEVT_KILL_FOCUS , L " Effect " , " " , grey ) ;
Effect - > SetForegroundColour ( grey ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
bind_focus_handler ( ActorBox , wxEVT_SET_FOCUS , " " , L " Actor " , text ) ;
bind_focus_handler ( ActorBox , wxEVT_KILL_FOCUS , L " Actor " , " " , grey ) ;
ActorBox - > SetForegroundColour ( grey ) ;
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
2010-07-20 05:11:11 +02:00
TextEdit - > Bind ( wxEVT_STC_STYLENEEDED , & SubsEditBox : : OnNeedStyle , this ) ;
TextEdit - > Bind ( wxEVT_STC_MODIFIED , & SubsEditBox : : OnChange , this ) ;
TextEdit - > SetModEventMask ( wxSTC_MOD_INSERTTEXT | wxSTC_MOD_DELETETEXT ) ;
2009-05-18 07:33:49 +02:00
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_COMMAND_RADIOBUTTON_SELECTED , & SubsEditBox : : OnFrameTimeRadio , this , ByFrame - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_RADIOBUTTON_SELECTED , & SubsEditBox : : OnFrameTimeRadio , this , ByTime - > GetId ( ) ) ;
2009-05-18 07:33:49 +02:00
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_COMMAND_COMBOBOX_SELECTED , & SubsEditBox : : OnStyleChange , this , StyleBox - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_COMBOBOX_SELECTED , & SubsEditBox : : OnActorChange , this , ActorBox - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnActorChange , this , ActorBox - > GetId ( ) ) ;
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
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnLayerEnter , this , Layer - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_SPINCTRL_UPDATED , & SubsEditBox : : OnLayerChange , this , Layer - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnStartTimeChange , this , StartTime - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnEndTimeChange , this , EndTime - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnDurationChange , this , Duration - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnMarginLChange , this , MarginL - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnMarginRChange , this , MarginR - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnMarginVChange , this , MarginV - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_TEXT_UPDATED , & SubsEditBox : : OnEffectChange , this , Effect - > GetId ( ) ) ;
Bind ( wxEVT_COMMAND_CHECKBOX_CLICKED , & SubsEditBox : : OnCommentChange , this , CommentBox - > GetId ( ) ) ;
2006-12-27 01:00:41 +01:00
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_SIZE , & SubsEditBox : : OnSize , this ) ;
2006-12-27 01:00:41 +01:00
2010-07-20 05:11:11 +02:00
for ( int i = 0 ; i < 4 ; i + + ) {
Bind ( wxEVT_COMMAND_BUTTON_CLICKED , & SubsEditBox : : OnFlagButton , this , BUTTON_FIRST + i ) ;
2006-12-27 01:00:41 +01:00
}
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_COMMAND_BUTTON_CLICKED , & SubsEditBox : : OnFontButton , this , BUTTON_FONT_NAME ) ;
for ( int i = 5 ; i < 9 ; i + + ) {
Bind ( wxEVT_COMMAND_BUTTON_CLICKED , & SubsEditBox : : OnColorButton , this , BUTTON_FIRST + i ) ;
2006-12-27 01:00:41 +01:00
}
2010-07-20 05:11:11 +02:00
Bind ( wxEVT_COMMAND_BUTTON_CLICKED , & SubsEditBox : : OnCommitButton , this , BUTTON_COMMIT ) ;
2006-12-27 01:00:41 +01:00
2010-07-20 05:11:11 +02:00
wxSizeEvent evt ;
OnSize ( evt ) ;
2006-12-27 01:00:41 +01:00
2010-07-20 05:11:11 +02:00
grid - > AddSelectionListener ( this ) ;
}
SubsEditBox : : ~ SubsEditBox ( ) {
grid - > RemoveSelectionListener ( this ) ;
}
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
2010-07-20 05:11:11 +02:00
void SubsEditBox : : Update ( bool timeOnly , bool setAudio ) {
SetControlsState ( ! ! line ) ;
if ( ! line ) {
return ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
SetEvtHandlerEnabled ( false ) ;
StartTime - > SetTime ( line - > Start ) ;
EndTime - > SetTime ( line - > End ) ;
Duration - > SetTime ( line - > End - line - > Start ) ;
if ( ! timeOnly ) {
TextEdit - > SetTextTo ( line - > Text ) ;
Layer - > SetValue ( line - > Layer ) ;
MarginL - > ChangeValue ( line - > GetMarginString ( 0 , false ) ) ;
MarginR - > ChangeValue ( line - > GetMarginString ( 1 , false ) ) ;
MarginV - > ChangeValue ( line - > GetMarginString ( 2 , false ) ) ;
Effect - > ChangeValue ( line - > Effect . empty ( ) ? L " Effect " : line - > Effect ) ;
CommentBox - > SetValue ( line - > Comment ) ;
StyleBox - > Select ( StyleBox - > FindString ( line - > Style ) ) ;
ActorBox - > ChangeValue ( line - > Actor . empty ( ) ? L " Actor " : line - > Actor ) ;
ActorBox - > SetStringSelection ( line - > Actor ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
if ( setAudio ) audio - > SetDialogue ( grid , line , grid - > GetDialogueIndex ( line ) ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
SetEvtHandlerEnabled ( true ) ;
}
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
2010-07-20 05:11:11 +02:00
void SubsEditBox : : UpdateGlobals ( ) {
SetEvtHandlerEnabled ( false ) ;
2006-01-16 22:02:54 +01:00
StyleBox - > Clear ( ) ;
StyleBox - > Append ( grid - > ass - > GetStyles ( ) ) ;
ActorBox - > Freeze ( ) ;
ActorBox - > Clear ( ) ;
int nrows = grid - > GetRows ( ) ;
for ( int i = 0 ; i < nrows ; i + + ) {
2010-07-20 05:11:11 +02:00
wxString actor = grid - > GetDialogue ( i ) - > Actor ;
2009-09-05 04:24:52 +02:00
// OSX doesn't like combo boxes that are empty.
2010-07-20 05:11:11 +02:00
if ( actor . empty ( ) ) actor = " Actor " ;
2006-01-16 22:02:54 +01:00
if ( ActorBox - > FindString ( actor ) = = wxNOT_FOUND ) {
ActorBox - > Append ( actor ) ;
}
}
ActorBox - > Thaw ( ) ;
// Set subs update
2010-07-13 07:29:08 +02:00
OnActiveLineChanged ( grid - > GetActiveLine ( ) ) ;
2006-01-16 22:02:54 +01:00
TextEdit - > SetSelection ( 0 , 0 ) ;
2010-07-20 05:11:11 +02:00
SetEvtHandlerEnabled ( true ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnActiveLineChanged ( AssDialogue * new_line ) {
SetEvtHandlerEnabled ( false ) ;
line = new_line ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
Update ( ) ;
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
2010-07-20 05:11:11 +02:00
/// @todo VideoContext should be doing this
if ( VideoContext : : Get ( ) - > IsLoaded ( ) ) {
bool sync ;
if ( Search . hasFocus ) sync = OPT_GET ( " Tool/Search Replace/Video Update " ) - > GetBool ( ) ;
else sync = OPT_GET ( " Video/Subtitle Sync " ) - > GetBool ( ) ;
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
2010-07-20 05:11:11 +02:00
if ( sync ) {
VideoContext : : Get ( ) - > Stop ( ) ;
VideoContext : : Get ( ) - > JumpToTime ( line - > Start . GetMS ( ) ) ;
}
2007-01-02 06:00:55 +01:00
}
2010-07-20 05:11:11 +02:00
SetEvtHandlerEnabled ( true ) ;
}
void SubsEditBox : : OnSelectedSetChanged ( const Selection & , const Selection & ) {
sel = grid - > GetSelectedSet ( ) ;
2006-12-24 05:54:35 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : UpdateFrameTiming ( ) {
if ( VideoContext : : Get ( ) - > TimecodesLoaded ( ) ) ByFrame - > Enable ( true ) ;
else {
ByFrame - > Enable ( false ) ;
ByTime - > SetValue ( true ) ;
StartTime - > SetByFrame ( false ) ;
EndTime - > SetByFrame ( false ) ;
grid - > SetByFrame ( false ) ;
}
2007-01-02 19:09:56 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnKeyDown ( wxKeyEvent & event ) {
int key = event . GetKeyCode ( ) ;
if ( line & & ( key = = WXK_RETURN | | key = = WXK_NUMPAD_ENTER ) ) {
# ifdef __APPLE__
Commit ( event . m_metaDown ) ;
# else
Commit ( event . m_controlDown ) ;
# endif
}
else {
event . Skip ( ) ;
}
}
2007-01-02 19:09:56 +01:00
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnCommitButton ( wxCommandEvent & ) {
# ifdef __APPLE__
Commit ( wxGetMouseState ( ) . CmdDown ( ) ) ;
# else
Commit ( wxGetMouseState ( ) . ControlDown ( ) ) ;
# endif
}
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
2010-07-20 05:11:11 +02:00
void SubsEditBox : : Commit ( bool stay ) {
if ( stay ) {
VideoContext : : Get ( ) - > Refresh ( ) ;
return ;
}
int next = grid - > GetLastSelRow ( ) + 1 ;
if ( next > = grid - > GetRows ( ) ) {
AssDialogue * cur = grid - > GetDialogue ( next - 1 ) ;
AssDialogue * newline = new AssDialogue ;
newline - > Start = cur - > End ;
newline - > End = cur - > End + OPT_GET ( " Timing/Default Duration " ) - > GetInt ( ) ;
newline - > Style = cur - > Style ;
grid - > InsertLine ( newline , next - 1 , true , true ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
grid - > NextLine ( ) ;
}
2006-12-24 05:54:35 +01:00
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnChange ( wxStyledTextEvent & event ) {
if ( line & & TextEdit - > GetText ( ) ! = line - > Text ) {
if ( event . GetModificationType ( ) & wxSTC_MOD_INSERTTEXT ) {
CommitText ( _ ( " insert text " ) ) ;
}
else {
CommitText ( _ ( " delete text " ) ) ;
}
}
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
template < class T , class setter >
void SubsEditBox : : SetSelectedRows ( setter set , T value , wxString desc , bool amend ) {
using namespace std : : tr1 : : placeholders ;
static agi : : OptionValue * realtime = OPT_GET ( " Video/Visual Realtime " ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
for_each ( sel . begin ( ) , sel . end ( ) , std : : tr1 : : bind ( set , _1 , value ) ) ;
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
2010-07-20 05:11:11 +02:00
commitId = grid - > ass - > Commit ( desc , ( amend & & desc = = lastCommitType ) ? commitId : - 1 ) ;
lastCommitType = desc ;
grid - > CommitChanges ( false , realtime - > GetBool ( ) ) ;
2007-01-02 06:00:55 +01:00
}
2010-07-20 05:11:11 +02:00
template < class T >
void SubsEditBox : : SetSelectedRows ( T AssDialogue : : * field , T value , wxString desc , bool amend ) {
SetSelectedRows ( field_setter < T > ( field ) , value , desc , amend ) ;
2007-01-02 19:28:09 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : CommitText ( wxString desc ) {
SetSelectedRows ( & AssDialogue : : Text , TextEdit - > GetText ( ) , desc , true ) ;
audio - > SetDialogue ( grid , line , grid - > GetDialogueIndex ( line ) ) ;
}
2007-01-02 19:28:09 +01:00
2010-07-20 05:11:11 +02:00
void SubsEditBox : : CommitTimes ( TimeField field ) {
Duration - > SetTime ( EndTime - > time - StartTime - > time ) ;
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
2010-07-20 05:11:11 +02:00
// Update lines
for ( Selection : : iterator cur = sel . begin ( ) ; cur ! = sel . end ( ) ; + + cur ) {
switch ( field ) {
case TIME_START :
( * cur ) - > Start = StartTime - > time ;
if ( ( * cur ) - > Start > ( * cur ) - > End ) ( * cur ) - > End = ( * cur ) - > Start ;
break ;
case TIME_END :
( * cur ) - > End = EndTime - > time ;
if ( ( * cur ) - > Start > ( * cur ) - > End ) ( * cur ) - > Start = ( * cur ) - > End ;
break ;
case TIME_DURATION :
( * cur ) - > End = ( * cur ) - > Start + Duration - > time ;
break ;
}
}
timeCommitId [ field ] = grid - > ass - > Commit ( _ ( " modify times " ) , timeCommitId [ field ] ) ;
grid - > CommitChanges ( ) ;
int sel0 = grid - > GetFirstSelRow ( ) ;
audio - > SetDialogue ( grid , grid - > GetDialogue ( sel0 ) , sel0 ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnSize ( wxSizeEvent & evt ) {
int topWidth = TopSizer - > GetSize ( ) . GetWidth ( ) ;
int midMin = MiddleSizer - > GetMinSize ( ) . GetWidth ( ) ;
int botMin = MiddleBotSizer - > GetMinSize ( ) . GetWidth ( ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
if ( splitLineMode ) {
if ( topWidth > = midMin + botMin ) {
MainSizer - > Detach ( MiddleBotSizer ) ;
MiddleSizer - > Add ( MiddleBotSizer , 0 , wxALIGN_CENTER_VERTICAL ) ;
splitLineMode = false ;
}
}
else {
if ( topWidth < midMin ) {
MiddleSizer - > Detach ( MiddleBotSizer ) ;
MainSizer - > Insert ( 2 , MiddleBotSizer , 0 , wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM , 3 ) ;
splitLineMode = true ;
}
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
evt . Skip ( ) ;
}
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
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnNeedStyle ( wxStyledTextEvent & event ) {
// Check if it needs to fix text
wxString text = TextEdit - > GetText ( ) ;
if ( text . Contains ( " \n " ) | | text . Contains ( " \r " ) ) {
TextEdit - > SetTextTo ( text ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
// Just update style
else TextEdit - > UpdateStyle ( ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnFrameTimeRadio ( wxCommandEvent & event ) {
bool byFrame = ByFrame - > GetValue ( ) ;
StartTime - > SetByFrame ( byFrame ) ;
EndTime - > SetByFrame ( byFrame ) ;
Duration - > SetByFrame ( byFrame ) ;
grid - > SetByFrame ( byFrame ) ;
event . Skip ( ) ;
}
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
void SubsEditBox : : SetControlsState ( bool state ) {
2006-01-16 22:02:54 +01:00
if ( state = = controlState ) return ;
controlState = state ;
// HACK: TextEdit workaround the stupid colour lock bug
2006-12-24 05:54:35 +01:00
TextEdit - > SetReadOnly ( ! state ) ;
2006-01-16 22:02:54 +01:00
if ( state ) TextEdit - > SetBackgroundColour ( origBgColour ) ;
else TextEdit - > SetBackgroundColour ( disabledBgColour ) ;
// Sets controls
StartTime - > Enable ( state ) ;
EndTime - > Enable ( state ) ;
Duration - > Enable ( state ) ;
Layer - > Enable ( state ) ;
MarginL - > Enable ( state ) ;
MarginR - > Enable ( state ) ;
MarginV - > Enable ( state ) ;
2006-06-27 06:13:34 +02:00
Effect - > Enable ( state ) ;
2006-01-16 22:02:54 +01:00
CommentBox - > Enable ( state ) ;
StyleBox - > Enable ( state ) ;
ActorBox - > Enable ( state ) ;
ByTime - > Enable ( state ) ;
2010-07-20 05:11:11 +02:00
for ( size_t i = 0 ; i < ToggableButtons . size ( ) ; + + i )
ToggableButtons [ i ] - > Enable ( state ) ;
2006-01-16 22:02:54 +01:00
UpdateFrameTiming ( ) ;
2010-07-20 05:11:11 +02:00
if ( ! state ) {
SetEvtHandlerEnabled ( false ) ;
TextEdit - > SetTextTo ( " " ) ;
2006-01-16 22:02:54 +01:00
StartTime - > SetTime ( 0 ) ;
EndTime - > SetTime ( 0 ) ;
2007-01-08 04:05:26 +01:00
Duration - > SetTime ( 0 ) ;
2010-07-20 05:11:11 +02:00
Layer - > SetValue ( " " ) ;
MarginL - > ChangeValue ( " " ) ;
MarginR - > ChangeValue ( " " ) ;
MarginV - > ChangeValue ( " " ) ;
Effect - > ChangeValue ( " " ) ;
2006-01-16 22:02:54 +01:00
CommentBox - > SetValue ( false ) ;
2010-07-20 05:11:11 +02:00
SetEvtHandlerEnabled ( true ) ;
2006-01-16 22:02:54 +01:00
}
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnStyleChange ( wxCommandEvent & ) {
SetSelectedRows ( & AssDialogue : : Style , StyleBox - > GetValue ( ) , _ ( " style change " ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnActorChange ( wxCommandEvent & ) {
2006-01-16 22:02:54 +01:00
wxString actor = ActorBox - > GetValue ( ) ;
2010-07-20 05:11:11 +02:00
SetSelectedRows ( & AssDialogue : : Actor , actor , _ ( " actor change " ) ) ;
2006-01-16 22:02:54 +01:00
// Add actor to list
2010-07-20 05:11:11 +02:00
if ( ! actor . empty ( ) & & ActorBox - > GetCount ( ) & & ActorBox - > GetString ( 0 ) . empty ( ) ) {
ActorBox - > Delete ( 0 ) ;
}
2006-01-16 22:02:54 +01:00
if ( ActorBox - > FindString ( actor ) = = wxNOT_FOUND ) {
ActorBox - > Append ( actor ) ;
}
}
2007-06-18 01:49:51 +02:00
void SubsEditBox : : OnLayerChange ( wxSpinEvent & event ) {
2010-07-20 05:11:11 +02:00
OnLayerEnter ( event ) ;
2007-10-29 16:30:04 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnLayerEnter ( wxCommandEvent & ) {
SetSelectedRows ( & AssDialogue : : Layer , Layer - > GetValue ( ) , _ ( " layer change " ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnStartTimeChange ( wxCommandEvent & ) {
if ( StartTime - > time > EndTime - > time ) EndTime - > SetTime ( StartTime - > time ) ;
CommitTimes ( TIME_START ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnEndTimeChange ( wxCommandEvent & ) {
if ( StartTime - > time > EndTime - > time ) StartTime - > SetTime ( EndTime - > time ) ;
CommitTimes ( TIME_END ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnDurationChange ( wxCommandEvent & ) {
EndTime - > SetTime ( StartTime - > time + Duration - > time ) ;
CommitTimes ( TIME_DURATION ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnMarginLChange ( wxCommandEvent & ) {
SetSelectedRows ( std : : mem_fun ( & AssDialogue : : SetMarginString < 0 > ) , MarginL - > GetValue ( ) , _ ( " MarginL change " ) ) ;
AssDialogue * cur = grid - > GetDialogue ( grid - > GetFirstSelRow ( ) ) ;
if ( cur )
MarginL - > ChangeValue ( cur - > GetMarginString ( 0 , false ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnMarginRChange ( wxCommandEvent & ) {
SetSelectedRows ( std : : mem_fun ( & AssDialogue : : SetMarginString < 1 > ) , MarginR - > GetValue ( ) , _ ( " MarginR change " ) ) ;
AssDialogue * cur = grid - > GetDialogue ( grid - > GetFirstSelRow ( ) ) ;
if ( cur )
MarginR - > ChangeValue ( cur - > GetMarginString ( 1 , false ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
static void set_margin_v ( AssDialogue * diag , wxString value ) {
diag - > SetMarginString ( value , 2 ) ;
diag - > SetMarginString ( value , 3 ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnMarginVChange ( wxCommandEvent & ) {
SetSelectedRows ( set_margin_v , MarginV - > GetValue ( ) , _ ( " MarginV change " ) ) ;
AssDialogue * cur = grid - > GetDialogue ( grid - > GetFirstSelRow ( ) ) ;
if ( cur )
MarginV - > ChangeValue ( cur - > GetMarginString ( 2 , false ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnEffectChange ( wxCommandEvent & ) {
SetSelectedRows ( & AssDialogue : : Effect , Effect - > GetValue ( ) , _ ( " effect change " ) ) ;
2006-06-27 06:13:34 +02:00
}
2006-01-16 22:02:54 +01:00
void SubsEditBox : : OnCommentChange ( wxCommandEvent & event ) {
2010-07-20 05:11:11 +02:00
SetSelectedRows ( & AssDialogue : : Comment , CommentBox - > GetValue ( ) , _ ( " comment change " ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
int SubsEditBox : : BlockAtPos ( int pos ) const {
int n = 0 ;
wxString text = TextEdit - > GetText ( ) ; ;
int max = text . Length ( ) - 1 ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
for ( int i = 0 ; i < = pos & & i < = max ; i + + ) {
if ( i > 0 & & text [ i ] = = ' { ' ) n + + ;
if ( text [ i ] = = ' } ' & & i ! = max & & i ! = pos & & i ! = pos - 1 & & ( i + 1 = = max | | text [ i + 1 ] ! = ' { ' ) ) n + + ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
return n ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : SetTag ( wxString tag , wxString value , bool atEnd ) {
assert ( line ) ;
assert ( line - > Valid ) ;
if ( line - > Blocks . empty ( ) )
line - > ParseASSTags ( ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
int selstart , selend ;
get_selection ( TextEdit , selstart , selend ) ;
int start = atEnd ? selend : selstart ;
int blockn = BlockAtPos ( start ) ;
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
2010-07-20 05:11:11 +02:00
AssDialogueBlock * block = line - > Blocks [ blockn ] ;
AssDialogueBlockPlain * plain = dynamic_cast < AssDialogueBlockPlain * > ( block ) ;
AssDialogueBlockOverride * ovr = dynamic_cast < AssDialogueBlockOverride * > ( block ) ;
2009-04-26 03:02:23 +02:00
2010-07-20 05:11:11 +02:00
// Drawings should always be preceded by an override block (with the \pX)
if ( dynamic_cast < AssDialogueBlockDrawing * > ( block ) ) {
assert ( blockn > 0 ) ;
ovr = dynamic_cast < AssDialogueBlockOverride * > ( line - > Blocks [ blockn - 1 ] ) ;
assert ( ovr ) ;
2010-06-26 13:32:16 +02:00
}
2009-04-26 03:02:23 +02:00
2010-07-20 05:11:11 +02:00
wxString insert = tag + value ;
int shift = insert . size ( ) ;
if ( plain ) {
line - > Text = line - > Text . Left ( start ) + " { " + insert + " } " + line - > Text . Mid ( start ) ;
shift + = 2 ;
line - > ParseASSTags ( ) ;
2007-06-30 22:00:07 +02:00
}
2010-07-20 05:11:11 +02:00
else if ( ovr ) {
wxString alt ;
if ( tag = = L " \\ c " ) alt = L " \\ 1c " ;
// Remove old of same
bool found = false ;
for ( size_t i = 0 ; i < ovr - > Tags . size ( ) ; i + + ) {
wxString name = ovr - > Tags [ i ] - > Name ;
if ( tag = = name | | alt = = name ) {
shift - = ( ( wxString ) * ovr - > Tags [ i ] ) . size ( ) ;
if ( found ) {
delete ovr - > Tags [ i ] ;
ovr - > Tags . erase ( ovr - > Tags . begin ( ) + i ) ;
i - - ;
}
else {
ovr - > Tags [ i ] - > Params [ 0 ] - > Set ( value ) ;
found = true ;
}
2009-04-26 03:02:23 +02:00
}
}
2010-07-20 05:11:11 +02:00
if ( ! found ) {
ovr - > AddTag ( insert ) ;
2007-01-08 06:32:29 +01: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
2010-07-20 05:11:11 +02:00
line - > UpdateText ( ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
TextEdit - > SetTextTo ( line - > Text ) ;
if ( ! atEnd ) TextEdit - > SetSelectionU ( selstart + shift , selend + shift ) ;
TextEdit - > SetFocus ( ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnFlagButton ( wxCommandEvent & evt ) {
int id = evt . GetId ( ) ;
assert ( id < BUTTON_LAST & & id > = BUTTON_FIRST ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
wxString tagname ;
wxString desc ;
2006-02-19 05:55:10 +01:00
bool state = false ;
2010-07-20 05:11:11 +02:00
AssStyle * style = grid - > ass - > GetStyle ( line - > Style ) ;
2006-01-16 22:02:54 +01:00
AssStyle defStyle ;
2010-07-20 05:11:11 +02:00
if ( ! style ) style = & defStyle ;
if ( id = = BUTTON_BOLD ) {
tagname = L " \\ b " ;
desc = _ ( " toggle bold " ) ;
2006-02-19 05:55:10 +01:00
state = style - > bold ;
}
2010-07-20 05:11:11 +02:00
else if ( id = = BUTTON_ITALICS ) {
tagname = L " \\ i " ;
desc = _ ( " toggle italic " ) ;
2006-02-19 05:55:10 +01:00
state = style - > italic ;
}
2010-07-20 05:11:11 +02:00
else if ( id = = BUTTON_UNDERLINE ) {
tagname = L " \\ u " ;
desc = _ ( " toggle underline " ) ;
2006-02-19 05:55:10 +01:00
state = style - > underline ;
}
2010-07-20 05:11:11 +02:00
else if ( id = = BUTTON_STRIKEOUT ) {
tagname = L " \\ s " ;
desc = _ ( " toggle strikeout " ) ;
2006-02-19 05:55:10 +01:00
state = style - > strikeout ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
else {
return ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
line - > ParseASSTags ( ) ;
int selstart , selend ;
get_selection ( TextEdit , selstart , selend ) ;
int blockn = BlockAtPos ( selstart ) ;
2007-01-15 20:44:48 +01:00
2010-07-20 05:11:11 +02:00
state = get_value ( * line , blockn , state , tagname ) ;
2006-02-19 05:55:10 +01:00
2010-07-20 05:11:11 +02:00
SetTag ( tagname , wxString : : Format ( " %i " , ! state ) ) ;
if ( selend ! = selstart ) {
SetTag ( tagname , wxString : : Format ( " %i " , state ) , true ) ;
2006-02-19 05:55:10 +01:00
}
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
line - > ClearBlocks ( ) ;
commitId = - 1 ;
CommitText ( desc ) ;
}
void SubsEditBox : : OnFontButton ( wxCommandEvent & ) {
int selstart , selend ;
get_selection ( TextEdit , selstart , selend ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
line - > ParseASSTags ( ) ;
int blockn = BlockAtPos ( selstart ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
wxFont startfont ;
AssStyle * style = grid - > ass - > GetStyle ( line - > Style ) ;
AssStyle defStyle ;
if ( ! style ) style = & defStyle ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
startfont . SetFaceName ( get_value ( * line , blockn , style - > font , L " \\ fn " ) ) ;
startfont . SetPointSize ( get_value ( * line , blockn , ( int ) style - > fontsize , L " \\ fs " ) ) ;
startfont . SetWeight ( get_value ( * line , blockn , style - > bold , L " \\ b " ) ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL ) ;
startfont . SetStyle ( get_value ( * line , blockn , style - > italic , L " \\ i " ) ? wxFONTSTYLE_ITALIC : wxFONTSTYLE_NORMAL ) ;
startfont . SetUnderlined ( get_value ( * line , blockn , style - > underline , L " \\ u " ) ) ;
2006-01-16 22:02:54 +01:00
2010-07-20 05:11:11 +02:00
wxFont font = wxGetFontFromUser ( this , startfont ) ;
if ( ! font . Ok ( ) | | font = = startfont ) {
line - > ClearBlocks ( ) ;
return ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
if ( font . GetFaceName ( ) ! = startfont . GetFaceName ( ) ) {
SetTag ( L " \\ fn " , font . GetFaceName ( ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
if ( font . GetPointSize ( ) ! = startfont . GetPointSize ( ) ) {
SetTag ( L " \\ fs " , wxString : : Format ( " %i " , font . GetPointSize ( ) ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
if ( font . GetWeight ( ) ! = startfont . GetWeight ( ) ) {
SetTag ( L " \\ b " , wxString : : Format ( " %i " , font . GetWeight ( ) = = wxFONTWEIGHT_BOLD ) ) ;
2006-01-16 22:02:54 +01:00
}
2010-07-20 05:11:11 +02:00
if ( font . GetStyle ( ) ! = startfont . GetStyle ( ) ) {
SetTag ( L " \\ i " , wxString : : Format ( " %i " , font . GetStyle ( ) = = wxFONTSTYLE_ITALIC ) ) ;
}
if ( font . GetUnderlined ( ) ! = startfont . GetUnderlined ( ) ) {
SetTag ( L " \\ i " , wxString : : Format ( " %i " , font . GetUnderlined ( ) ) ) ;
}
line - > ClearBlocks ( ) ;
commitId = - 1 ;
CommitText ( _ ( " set font " ) ) ;
2007-06-30 22:00:07 +02:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : OnColorButton ( wxCommandEvent & evt ) {
int id = evt . GetId ( ) ;
assert ( id < BUTTON_LAST & & id > = BUTTON_FIRST ) ;
wxString alt ;
2007-06-30 22:00:07 +02:00
2010-07-20 05:11:11 +02:00
wxColor color ;
AssStyle * style = grid - > ass - > GetStyle ( line - > Style ) ;
AssStyle defStyle ;
if ( ! style ) style = & defStyle ;
if ( id = = BUTTON_COLOR1 ) {
color = style - > primary . GetWXColor ( ) ;
colorTag = L " \\ c " ;
alt = L " \\ c1 " ;
}
else if ( id = = BUTTON_COLOR2 ) {
color = style - > secondary . GetWXColor ( ) ;
colorTag = L " \\ 2c " ;
}
else if ( id = = BUTTON_COLOR3 ) {
color = style - > outline . GetWXColor ( ) ;
colorTag = L " \\ 3c " ;
}
else if ( id = = BUTTON_COLOR4 ) {
color = style - > shadow . GetWXColor ( ) ;
colorTag = L " \\ 4c " ;
}
else {
return ;
2010-06-26 13:32:16 +02:00
}
2010-07-20 05:11:11 +02:00
commitId = - 1 ;
2010-06-26 13:32:16 +02:00
2010-07-20 05:11:11 +02:00
line - > ParseASSTags ( ) ;
int selstart , selend ;
get_selection ( TextEdit , selstart , selend ) ;
int blockn = BlockAtPos ( selstart ) ;
2010-06-26 13:32:16 +02:00
2010-07-20 05:11:11 +02:00
color = get_value ( * line , blockn , color , colorTag , alt ) ;
wxString initialText = line - > Text ;
wxColor newColor = GetColorFromUser < SubsEditBox , & SubsEditBox : : SetColorCallback > ( ( ( AegisubApp * ) wxTheApp ) - > frame , color , this ) ;
if ( newColor = = color ) {
TextEdit - > SetTextTo ( initialText ) ;
TextEdit - > SetSelectionU ( selstart , selend ) ;
2010-06-26 13:32:16 +02:00
}
2010-07-20 05:11:11 +02:00
line - > ClearBlocks ( ) ;
CommitText ( _ ( " set color " ) ) ;
2010-06-26 13:32:16 +02:00
}
2010-07-20 05:11:11 +02:00
void SubsEditBox : : SetColorCallback ( wxColor newColor ) {
if ( newColor . Ok ( ) ) {
SetTag ( colorTag , AssColor ( newColor ) . GetASSFormatted ( false ) ) ;
CommitText ( _ ( " set color " ) ) ;
}
2010-06-26 13:32:16 +02:00
}