2007-07-01 02:19:55 +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-07-01 02:19:55 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file visual_tool.cpp
|
|
|
|
/// @brief Base class for visual typesetting functions
|
|
|
|
/// @ingroup visual_ts
|
|
|
|
///
|
2007-07-01 02:19:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
//////////////
|
|
|
|
// Headers
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifndef AGI_PRE
|
2007-07-01 02:19:55 +02:00
|
|
|
#include <wx/glcanvas.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
#endif
|
|
|
|
|
2007-09-12 01:22:26 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <OpenGL/GL.h>
|
|
|
|
#else
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#endif
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2007-07-01 02:19:55 +02:00
|
|
|
#include "ass_dialogue.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_file.h"
|
2007-07-01 02:19:55 +02:00
|
|
|
#include "ass_override.h"
|
|
|
|
#include "ass_style.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_time.h"
|
|
|
|
#include "export_visible_lines.h"
|
2007-07-01 02:19:55 +02:00
|
|
|
#include "options.h"
|
|
|
|
#include "subs_edit_box.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "subs_grid.h"
|
2007-07-01 02:19:55 +02:00
|
|
|
#include "utils.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "vfr.h"
|
|
|
|
#include "video_context.h"
|
|
|
|
#include "video_display.h"
|
|
|
|
#include "video_provider_manager.h"
|
|
|
|
#include "visual_tool.h"
|
2007-07-01 02:19:55 +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 Constructor
|
|
|
|
/// @param par
|
|
|
|
///
|
2007-07-04 06:24:47 +02:00
|
|
|
VisualTool::VisualTool(VideoDisplay *par) : eventSink(this) {
|
2007-07-04 07:22:35 +02:00
|
|
|
// Config
|
2007-07-01 02:19:55 +02:00
|
|
|
parent = par;
|
2007-07-04 22:25:24 +02:00
|
|
|
colour[0] = wxColour(106,32,19);
|
|
|
|
colour[1] = wxColour(255,169,40);
|
|
|
|
colour[2] = wxColour(255,253,185);
|
2007-07-01 02:19:55 +02:00
|
|
|
colour[3] = wxColour(187,0,0);
|
2007-07-01 04:23:57 +02:00
|
|
|
|
2007-07-04 07:22:35 +02:00
|
|
|
// Holding variables
|
2007-07-01 04:23:57 +02:00
|
|
|
holding = false;
|
|
|
|
curDiag = NULL;
|
2007-07-01 09:09:37 +02:00
|
|
|
|
2007-07-04 07:22:35 +02:00
|
|
|
// Dragging variables
|
2007-07-01 09:09:37 +02:00
|
|
|
dragging = false;
|
|
|
|
curFeature = -1;
|
|
|
|
dragListOK = false;
|
|
|
|
|
2007-07-04 07:22:35 +02:00
|
|
|
// Video options
|
2007-07-01 09:09:37 +02:00
|
|
|
mouseX = mouseY = -1;
|
2007-07-04 07:22:35 +02:00
|
|
|
frame_n = 0;
|
|
|
|
if (VideoContext::Get()->IsLoaded()) {
|
|
|
|
parent->GetClientSize(&w,&h);
|
|
|
|
VideoContext::Get()->GetScriptSize(sw,sh);
|
|
|
|
frame_n = VideoContext::Get()->GetFrameN();
|
|
|
|
}
|
2007-07-01 09:09:37 +02:00
|
|
|
|
2007-07-04 07:22:35 +02:00
|
|
|
// Features
|
2007-07-01 09:09:37 +02:00
|
|
|
if (CanDrag()) PopulateFeatureList();
|
2007-07-01 02:19:55 +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-07-01 02:19:55 +02:00
|
|
|
VisualTool::~VisualTool() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Mouse event
|
|
|
|
/// @param event
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 04:23:57 +02:00
|
|
|
void VisualTool::OnMouseEvent (wxMouseEvent &event) {
|
|
|
|
// General variables
|
|
|
|
mouseX = event.GetX();
|
|
|
|
mouseY = event.GetY();
|
|
|
|
parent->ConvertMouseCoords(mouseX,mouseY);
|
|
|
|
parent->GetClientSize(&w,&h);
|
|
|
|
VideoContext::Get()->GetScriptSize(sw,sh);
|
|
|
|
frame_n = VideoContext::Get()->GetFrameN();
|
|
|
|
bool realTime = Options.AsBool(_T("Video Visual Realtime"));
|
|
|
|
|
|
|
|
// Mouse leaving control
|
|
|
|
if (event.Leaving()) {
|
|
|
|
mouseX = -1;
|
|
|
|
mouseY = -1;
|
2007-07-08 09:22:09 +02:00
|
|
|
mx = -1;
|
|
|
|
my = -1;
|
2007-07-08 21:50:54 +02:00
|
|
|
Update();
|
2007-07-08 09:22:09 +02:00
|
|
|
return;
|
2007-07-01 04:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Transformed mouse x/y
|
|
|
|
mx = mouseX * sw / w;
|
|
|
|
my = mouseY * sh / h;
|
|
|
|
|
|
|
|
// Clicks
|
|
|
|
leftClick = event.ButtonDown(wxMOUSE_BTN_LEFT);
|
|
|
|
leftDClick = event.LeftDClick();
|
|
|
|
shiftDown = event.m_shiftDown;
|
2007-09-22 00:56:44 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
ctrlDown = event.m_metaDown; // Cmd key
|
|
|
|
#else
|
2007-07-01 04:23:57 +02:00
|
|
|
ctrlDown = event.m_controlDown;
|
2007-09-22 00:56:44 +02:00
|
|
|
#endif
|
2007-07-01 04:23:57 +02:00
|
|
|
altDown = event.m_altDown;
|
|
|
|
|
2007-07-01 09:09:37 +02:00
|
|
|
// Drag a feature
|
|
|
|
if (CanDrag()) {
|
|
|
|
// Populate list if needed
|
|
|
|
if (!dragListOK) {
|
|
|
|
PopulateFeatureList();
|
|
|
|
dragListOK = true;
|
|
|
|
}
|
|
|
|
|
2007-07-07 07:51:18 +02:00
|
|
|
// Click on feature
|
|
|
|
if (!dragging && leftClick && !DragEnabled()) {
|
|
|
|
curFeature = GetHighlightedFeature();
|
|
|
|
if (curFeature != -1) {
|
|
|
|
ClickedFeature(features[curFeature]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-01 09:09:37 +02:00
|
|
|
// Start dragging
|
2007-07-07 07:51:18 +02:00
|
|
|
if (!dragging && leftClick && DragEnabled()) {
|
2007-07-01 09:09:37 +02:00
|
|
|
// Get a feature
|
|
|
|
curFeature = GetHighlightedFeature();
|
|
|
|
if (curFeature != -1) {
|
|
|
|
// Initialize drag
|
|
|
|
InitializeDrag(features[curFeature]);
|
2009-07-12 07:30:01 +02:00
|
|
|
if (features[curFeature].lineN != -1) {
|
|
|
|
VideoContext::Get()->grid->editBox->SetToLine(features[curFeature].lineN,true);
|
|
|
|
VideoContext::Get()->grid->SelectRow(features[curFeature].lineN);
|
|
|
|
}
|
2007-07-01 09:09:37 +02:00
|
|
|
|
|
|
|
// Set start value
|
|
|
|
dragStartX = mx;
|
|
|
|
dragStartY = my;
|
|
|
|
dragOrigX = features[curFeature].x;
|
|
|
|
dragOrigY = features[curFeature].y;
|
|
|
|
|
|
|
|
// Set flags
|
|
|
|
dragging = true;
|
|
|
|
parent->CaptureMouse();
|
|
|
|
if (realTime) AssLimitToVisibleFilter::SetFrame(frame_n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dragging) {
|
|
|
|
// Dragging
|
|
|
|
if (event.LeftIsDown()) {
|
|
|
|
// Update position
|
|
|
|
features[curFeature].x = (mx - dragStartX + dragOrigX);
|
|
|
|
features[curFeature].y = (my - dragStartY + dragOrigY);
|
|
|
|
|
|
|
|
// Update drag
|
|
|
|
UpdateDrag(features[curFeature]);
|
|
|
|
|
|
|
|
if (realTime) {
|
|
|
|
// Commit
|
|
|
|
CommitDrag(features[curFeature]);
|
2007-07-07 09:27:28 +02:00
|
|
|
Commit();
|
2007-07-01 09:09:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release
|
|
|
|
else {
|
|
|
|
// Disable limiting
|
|
|
|
if (realTime) AssLimitToVisibleFilter::SetFrame(-1);
|
|
|
|
|
|
|
|
// Commit
|
2007-07-07 07:51:18 +02:00
|
|
|
dragging = false;
|
2007-07-01 09:09:37 +02:00
|
|
|
CommitDrag(features[curFeature]);
|
2007-07-07 09:27:28 +02:00
|
|
|
Commit(true);
|
2007-07-01 09:09:37 +02:00
|
|
|
|
|
|
|
// Clean up
|
|
|
|
curFeature = -1;
|
|
|
|
parent->ReleaseMouse();
|
|
|
|
parent->SetFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-07-01 04:23:57 +02:00
|
|
|
// Hold
|
2007-07-01 09:09:37 +02:00
|
|
|
if (!dragging && CanHold()) {
|
2007-07-01 04:23:57 +02:00
|
|
|
// Start holding
|
2007-07-07 07:51:18 +02:00
|
|
|
if (!holding && event.LeftIsDown() && HoldEnabled()) {
|
2007-07-01 04:23:57 +02:00
|
|
|
// Get a dialogue
|
|
|
|
curDiag = GetActiveDialogueLine();
|
|
|
|
if (curDiag) {
|
|
|
|
// Initialize Drag
|
|
|
|
InitializeHold();
|
|
|
|
|
|
|
|
// Set flags
|
|
|
|
holding = true;
|
|
|
|
parent->CaptureMouse();
|
|
|
|
if (realTime) AssLimitToVisibleFilter::SetFrame(frame_n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (holding) {
|
|
|
|
// Holding
|
|
|
|
if (event.LeftIsDown()) {
|
|
|
|
// Update drag
|
|
|
|
UpdateHold();
|
|
|
|
|
|
|
|
if (realTime) {
|
|
|
|
// Commit
|
|
|
|
CommitHold();
|
2007-07-07 09:27:28 +02:00
|
|
|
Commit();
|
2007-07-01 04:23:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release
|
|
|
|
else {
|
|
|
|
// Disable limiting
|
|
|
|
if (realTime) AssLimitToVisibleFilter::SetFrame(-1);
|
|
|
|
|
|
|
|
// Commit
|
2007-07-07 07:51:18 +02:00
|
|
|
holding = false;
|
2007-07-01 04:23:57 +02:00
|
|
|
CommitHold();
|
2007-07-07 09:27:28 +02:00
|
|
|
Commit(true);
|
2007-07-01 04:23:57 +02:00
|
|
|
|
|
|
|
// Clean up
|
|
|
|
curDiag = NULL;
|
|
|
|
parent->ReleaseMouse();
|
|
|
|
parent->SetFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update
|
|
|
|
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
|
|
|
|
|
|
|
/// @brief Commit
|
|
|
|
/// @param full
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-07 09:27:28 +02:00
|
|
|
void VisualTool::Commit(bool full) {
|
2007-08-03 19:22:06 +02:00
|
|
|
// Get grid
|
2007-07-07 09:27:28 +02:00
|
|
|
SubtitlesGrid *grid = VideoContext::Get()->grid;
|
2007-08-03 19:22:06 +02:00
|
|
|
|
|
|
|
// See if anything actually changed
|
2007-08-22 15:02:44 +02:00
|
|
|
// Fix by jfs: Only if not doing a full commit. Not sure why, but this avoids bug #532
|
|
|
|
if (!full) {
|
|
|
|
AssDialogue *diag = grid->GetDialogue(grid->editBox->linen);
|
|
|
|
if (diag && grid->editBox->TextEdit->GetText() == diag->Text) return;
|
|
|
|
}
|
2007-08-03 19:22:06 +02:00
|
|
|
|
|
|
|
// Commit changes
|
2007-07-07 23:18:00 +02:00
|
|
|
grid->editBox->CommitText();
|
|
|
|
if (full) grid->ass->FlagAsModified(_("visual typesetting"));
|
2007-07-07 09:27:28 +02:00
|
|
|
grid->CommitChanges(false,!full);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get active dialogue line
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 04:23:57 +02:00
|
|
|
AssDialogue* VisualTool::GetActiveDialogueLine() {
|
|
|
|
SubtitlesGrid *grid = VideoContext::Get()->grid;
|
|
|
|
AssDialogue *diag = grid->GetDialogue(grid->editBox->linen);
|
|
|
|
|
|
|
|
// Check if it's within range
|
|
|
|
if (diag) {
|
|
|
|
int f1 = VFR_Output.GetFrameAtTime(diag->Start.GetMS(),true);
|
|
|
|
int f2 = VFR_Output.GetFrameAtTime(diag->End.GetMS(),false);
|
|
|
|
|
|
|
|
// Invisible
|
|
|
|
if (f1 > frame_n || f2 < frame_n) return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return diag;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get feature under mouse
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 09:09:37 +02:00
|
|
|
int VisualTool::GetHighlightedFeature() {
|
|
|
|
int highestLayerFound = -99999;
|
|
|
|
int bestMatch = -1;
|
|
|
|
for (size_t i=0;i<features.size();i++) {
|
|
|
|
if (features[i].IsMouseOver(mx,my) && features[i].layer > highestLayerFound) {
|
|
|
|
bestMatch = i;
|
|
|
|
highestLayerFound = features[i].layer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bestMatch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Draw all features
|
|
|
|
///
|
2007-07-01 09:09:37 +02:00
|
|
|
void VisualTool::DrawAllFeatures() {
|
2007-07-04 08:50:03 +02:00
|
|
|
// Populate list, if needed
|
2007-07-01 09:09:37 +02:00
|
|
|
if (!dragListOK) {
|
|
|
|
PopulateFeatureList();
|
|
|
|
dragListOK = true;
|
|
|
|
}
|
2007-07-04 08:50:03 +02:00
|
|
|
|
|
|
|
// Get feature that mouse is over
|
|
|
|
int mouseOver = curFeature;
|
|
|
|
if (curFeature == -1) mouseOver = GetHighlightedFeature();
|
|
|
|
|
|
|
|
// Draw features
|
2007-07-01 09:09:37 +02:00
|
|
|
for (size_t i=0;i<features.size();i++) {
|
2007-07-04 22:25:24 +02:00
|
|
|
SetFillColour(colour[(signed)i == mouseOver ? 2 : 1],0.6f);
|
|
|
|
SetLineColour(colour[0],1.0f,2);
|
2007-07-01 09:09:37 +02:00
|
|
|
features[i].Draw(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
|
|
|
|
|
|
|
/// @brief Refresh
|
|
|
|
///
|
2007-07-01 09:09:37 +02:00
|
|
|
void VisualTool::Refresh() {
|
|
|
|
frame_n = VideoContext::Get()->GetFrameN();
|
2007-07-04 08:50:03 +02:00
|
|
|
if (!dragging) dragListOK = false;
|
2007-07-04 06:24:47 +02:00
|
|
|
DoRefresh();
|
2007-07-01 09:09:37 +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 Get position of line
|
|
|
|
/// @param diag
|
|
|
|
/// @param x
|
|
|
|
/// @param y
|
|
|
|
///
|
2007-07-01 02:19:55 +02:00
|
|
|
void VisualTool::GetLinePosition(AssDialogue *diag,int &x, int &y) {
|
|
|
|
int orgx=0,orgy=0;
|
|
|
|
GetLinePosition(diag,x,y,orgx,orgy);
|
|
|
|
}
|
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 DOCME
|
|
|
|
/// @param diag
|
|
|
|
/// @param x
|
|
|
|
/// @param y
|
|
|
|
/// @param orgx
|
|
|
|
/// @param orgy
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 02:19:55 +02:00
|
|
|
void VisualTool::GetLinePosition(AssDialogue *diag,int &x, int &y, int &orgx, int &orgy) {
|
|
|
|
// No dialogue
|
|
|
|
if (!diag) {
|
|
|
|
x = -1;
|
|
|
|
y = -1;
|
2007-07-29 11:15:32 +02:00
|
|
|
orgx = -1;
|
|
|
|
orgy = -1;
|
2007-07-01 02:19:55 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default values
|
|
|
|
int margin[4];
|
|
|
|
for (int i=0;i<4;i++) margin[i] = diag->Margin[i];
|
|
|
|
int align = 2;
|
|
|
|
|
|
|
|
// Get style
|
|
|
|
AssStyle *style = VideoContext::Get()->grid->ass->GetStyle(diag->Style);
|
|
|
|
if (style) {
|
|
|
|
align = style->alignment;
|
|
|
|
for (int i=0;i<4;i++) {
|
|
|
|
if (margin[i] == 0) margin[i] = style->Margin[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Script size
|
|
|
|
int sw,sh;
|
|
|
|
VideoContext::Get()->GetScriptSize(sw,sh);
|
|
|
|
|
|
|
|
// Process margins
|
|
|
|
margin[3] = margin[2];
|
|
|
|
margin[1] = sw - margin[1];
|
|
|
|
margin[3] = sh - margin[3];
|
|
|
|
|
|
|
|
// Position
|
|
|
|
bool posSet = false;
|
|
|
|
bool orgSet = false;
|
|
|
|
int posx = -1;
|
|
|
|
int posy = -1;
|
|
|
|
|
|
|
|
// Overrides processing
|
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
for (size_t i=0;i<blockn;i++) {
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(i));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
|
|
|
|
|
|
|
// Position
|
2007-07-04 02:36:04 +02:00
|
|
|
if ((tag->Name == _T("\\pos") || tag->Name == _T("\\move")) && tag->Params.size() >= 2) {
|
2007-07-01 02:19:55 +02:00
|
|
|
if (!posSet) {
|
|
|
|
posx = tag->Params[0]->AsInt();
|
|
|
|
posy = tag->Params[1]->AsInt();
|
|
|
|
posSet = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alignment
|
|
|
|
else if ((tag->Name == _T("\\an") || tag->Name == _T("\\a")) && tag->Params.size() >= 1) {
|
|
|
|
align = tag->Params[0]->AsInt();
|
|
|
|
if (tag->Name == _T("\\a")) {
|
|
|
|
switch(align) {
|
|
|
|
case 1: align = 1; break;
|
|
|
|
case 2: align = 2; break;
|
|
|
|
case 3: align = 3; break;
|
|
|
|
case 5: align = 7; break;
|
|
|
|
case 6: align = 8; break;
|
|
|
|
case 7: align = 9; break;
|
|
|
|
case 9: align = 4; break;
|
|
|
|
case 10: align = 5; break;
|
|
|
|
case 11: align = 6; break;
|
|
|
|
default: align = 2; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Origin
|
|
|
|
else if (!orgSet && tag->Name == _T("\\org") && tag->Params.size() >= 2) {
|
|
|
|
orgx = tag->Params[0]->AsInt();
|
|
|
|
orgy = tag->Params[1]->AsInt();
|
|
|
|
orgSet = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
|
|
|
|
// Got position
|
|
|
|
if (posSet) {
|
|
|
|
x = posx;
|
|
|
|
y = posy;
|
|
|
|
if (!orgSet) {
|
|
|
|
orgx = x;
|
|
|
|
orgy = y;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alignment type
|
|
|
|
int hor = (align - 1) % 3;
|
|
|
|
int vert = (align - 1) / 3;
|
|
|
|
|
|
|
|
// Calculate positions
|
|
|
|
if (hor == 0) x = margin[0];
|
|
|
|
else if (hor == 1) x = (margin[0] + margin[1])/2;
|
|
|
|
else if (hor == 2) x = margin[1];
|
|
|
|
if (vert == 0) y = margin[3];
|
|
|
|
else if (vert == 1) y = (margin[2] + margin[3])/2;
|
|
|
|
else if (vert == 2) y = margin[2];
|
|
|
|
|
|
|
|
// No origin?
|
|
|
|
if (!orgSet) {
|
|
|
|
orgx = x;
|
|
|
|
orgy = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get the destination of move, if any
|
|
|
|
/// @param diag
|
|
|
|
/// @param hasMove
|
|
|
|
/// @param x1
|
|
|
|
/// @param y1
|
|
|
|
/// @param x2
|
|
|
|
/// @param y2
|
|
|
|
/// @param t1
|
|
|
|
/// @param t2
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-04 02:36:04 +02:00
|
|
|
void VisualTool::GetLineMove(AssDialogue *diag,bool &hasMove,int &x1,int &y1,int &x2,int &y2,int &t1,int &t2) {
|
|
|
|
// Parse tags
|
|
|
|
hasMove = false;
|
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
|
|
|
|
// For each block
|
|
|
|
for (size_t i=0;i<blockn;i++) {
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(i));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
|
|
|
|
|
|
|
// Position
|
|
|
|
if (tag->Name == _T("\\move") && tag->Params.size() >= 4) {
|
|
|
|
hasMove = true;
|
|
|
|
x1 = tag->Params[0]->AsInt();
|
|
|
|
y1 = tag->Params[1]->AsInt();
|
|
|
|
x2 = tag->Params[2]->AsInt();
|
|
|
|
y2 = tag->Params[3]->AsInt();
|
|
|
|
if (tag->Params.size() >= 6) {
|
|
|
|
t1 = tag->Params[4]->AsInt();
|
|
|
|
t2 = tag->Params[5]->AsInt();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get line's rotation
|
|
|
|
/// @param diag
|
|
|
|
/// @param rx
|
|
|
|
/// @param ry
|
|
|
|
/// @param rz
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 02:19:55 +02:00
|
|
|
void VisualTool::GetLineRotation(AssDialogue *diag,float &rx,float &ry,float &rz) {
|
|
|
|
// Default values
|
|
|
|
rx = ry = rz = 0.0f;
|
|
|
|
|
2007-07-29 11:15:32 +02:00
|
|
|
// No dialogue
|
|
|
|
if (!diag) return;
|
|
|
|
|
2007-07-01 02:19:55 +02:00
|
|
|
// Prepare overrides
|
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
if (blockn == 0) {
|
|
|
|
diag->ClearBlocks();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process override
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(0));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
|
|
|
if (tag->Name == _T("\\frx") && tag->Params.size() == 1) {
|
|
|
|
rx = tag->Params[0]->AsFloat();
|
|
|
|
}
|
|
|
|
if (tag->Name == _T("\\fry") && tag->Params.size() == 1) {
|
|
|
|
ry = tag->Params[0]->AsFloat();
|
|
|
|
}
|
|
|
|
if ((tag->Name == _T("\\frz") || tag->Name == _T("\fr")) && tag->Params.size() == 1) {
|
|
|
|
rz = tag->Params[0]->AsFloat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get line's scale
|
|
|
|
/// @param diag
|
|
|
|
/// @param scalX
|
|
|
|
/// @param scalY
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 02:19:55 +02:00
|
|
|
void VisualTool::GetLineScale(AssDialogue *diag,float &scalX,float &scalY) {
|
|
|
|
// Default values
|
|
|
|
scalX = scalY = 100.0f;
|
|
|
|
|
|
|
|
// Prepare overrides
|
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
if (blockn == 0) {
|
|
|
|
diag->ClearBlocks();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process override
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(0));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
|
|
|
if (tag->Name == _T("\\fscx") && tag->Params.size() == 1) {
|
|
|
|
scalX = tag->Params[0]->AsFloat();
|
|
|
|
}
|
|
|
|
if (tag->Name == _T("\\fscy") && tag->Params.size() == 1) {
|
|
|
|
scalY = tag->Params[0]->AsFloat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get line's clip
|
|
|
|
/// @param diag
|
|
|
|
/// @param x1
|
|
|
|
/// @param y1
|
|
|
|
/// @param x2
|
|
|
|
/// @param y2
|
|
|
|
/// @param inverse
|
|
|
|
/// @return
|
|
|
|
///
|
2008-09-10 18:13:54 +02:00
|
|
|
void VisualTool::GetLineClip(AssDialogue *diag,int &x1,int &y1,int &x2,int &y2,bool &inverse) {
|
2007-07-01 02:19:55 +02:00
|
|
|
// Default values
|
|
|
|
x1 = y1 = 0;
|
|
|
|
int sw,sh;
|
|
|
|
VideoContext::Get()->GetScriptSize(sw,sh);
|
|
|
|
x2 = sw-1;
|
|
|
|
y2 = sh-1;
|
2008-09-10 18:13:54 +02:00
|
|
|
inverse = false;
|
2007-07-01 02:19:55 +02:00
|
|
|
|
|
|
|
// Prepare overrides
|
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
if (blockn == 0) {
|
|
|
|
diag->ClearBlocks();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process override
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(0));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
|
|
|
if (tag->Name == _T("\\clip") && tag->Params.size() == 4) {
|
|
|
|
x1 = tag->Params[0]->AsInt();
|
|
|
|
y1 = tag->Params[1]->AsInt();
|
|
|
|
x2 = tag->Params[2]->AsInt();
|
|
|
|
y2 = tag->Params[3]->AsInt();
|
2008-09-10 18:13:54 +02:00
|
|
|
inverse = false;
|
|
|
|
}
|
|
|
|
else if (tag->Name == _T("\\iclip") && tag->Params.size() == 4) {
|
|
|
|
x1 = tag->Params[0]->AsInt();
|
|
|
|
y1 = tag->Params[1]->AsInt();
|
|
|
|
x2 = tag->Params[2]->AsInt();
|
|
|
|
y2 = tag->Params[3]->AsInt();
|
|
|
|
inverse = true;
|
2007-07-01 02:19:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
}
|
2007-07-01 05:57:34 +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 Get line vector clip, if it exists
|
|
|
|
/// @param diag
|
|
|
|
/// @param scale
|
|
|
|
/// @param inverse
|
|
|
|
/// @return
|
|
|
|
///
|
2008-09-10 18:13:54 +02:00
|
|
|
wxString VisualTool::GetLineVectorClip(AssDialogue *diag,int &scale,bool &inverse) {
|
2007-07-05 06:32:46 +02:00
|
|
|
// Prepare overrides
|
|
|
|
wxString result;
|
|
|
|
scale = 1;
|
2008-09-10 18:13:54 +02:00
|
|
|
inverse = false;
|
2007-07-05 06:32:46 +02:00
|
|
|
diag->ParseASSTags();
|
|
|
|
AssDialogueBlockOverride *override;
|
|
|
|
AssOverrideTag *tag;
|
|
|
|
size_t blockn = diag->Blocks.size();
|
|
|
|
if (blockn == 0) {
|
|
|
|
diag->ClearBlocks();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process override
|
|
|
|
override = AssDialogueBlock::GetAsOverride(diag->Blocks.at(0));
|
|
|
|
if (override) {
|
|
|
|
for (size_t j=0;j<override->Tags.size();j++) {
|
|
|
|
tag = override->Tags.at(j);
|
2008-09-10 18:13:54 +02:00
|
|
|
if (tag->Name == _T("\\clip") || tag->Name == _T("\\iclip")) {
|
2007-07-05 06:32:46 +02:00
|
|
|
if (tag->Params.size() == 1) {
|
|
|
|
result = tag->Params[0]->AsText();
|
|
|
|
}
|
2008-09-10 18:13:54 +02:00
|
|
|
else if (tag->Params.size() == 2) {
|
2007-07-05 06:32:46 +02:00
|
|
|
scale = tag->Params[0]->AsInt();
|
|
|
|
result = tag->Params[1]->AsText();
|
|
|
|
}
|
2008-09-10 18:13:54 +02:00
|
|
|
else if (tag->Params.size() == 4) {
|
|
|
|
int x1 = tag->Params[0]->AsInt(),
|
|
|
|
y1 = tag->Params[1]->AsInt(),
|
|
|
|
x2 = tag->Params[2]->AsInt(),
|
|
|
|
y2 = tag->Params[3]->AsInt();
|
|
|
|
result = wxString::Format(_T("m %d %d l %d %d %d %d %d %d"), x1, y1, x2, y1, x2, y2, x1, y2);
|
|
|
|
}
|
|
|
|
inverse = tag->Name == _T("\\iclip");
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diag->ClearBlocks();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 override
|
|
|
|
/// @param tag
|
|
|
|
/// @param value
|
|
|
|
///
|
2007-07-01 05:57:34 +02:00
|
|
|
void VisualTool::SetOverride(wxString tag,wxString value) {
|
|
|
|
VideoContext::Get()->grid->editBox->SetOverride(tag,value,0,false);
|
2007-07-04 23:47:26 +02:00
|
|
|
parent->SetFocus();
|
2007-07-01 05:57:34 +02:00
|
|
|
}
|
2007-07-04 06:24:47 +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 Connect button
|
|
|
|
/// @param button
|
|
|
|
///
|
2007-07-04 06:24:47 +02:00
|
|
|
void VisualTool::ConnectButton(wxButton *button) {
|
|
|
|
button->Connect(wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(VisualToolEvent::OnButton),NULL,&eventSink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Event sink
|
|
|
|
/// @param _tool
|
|
|
|
///
|
2007-07-04 06:24:47 +02:00
|
|
|
VisualToolEvent::VisualToolEvent(VisualTool *_tool) {
|
|
|
|
tool = _tool;
|
|
|
|
}
|
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 DOCME
|
|
|
|
/// @param event
|
|
|
|
///
|
2007-07-04 06:24:47 +02:00
|
|
|
void VisualToolEvent::OnButton(wxCommandEvent &event) {
|
|
|
|
tool->OnButton(event);
|
|
|
|
}
|
|
|
|
|
2007-09-12 01:22:26 +02:00
|
|
|
|
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
|
|
|
|