2007-07-01 05:36:17 +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 05:36:17 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file visual_tool_clip.cpp
|
|
|
|
/// @brief Rectangular clipping visual typesetting tool
|
|
|
|
/// @ingroup visual_ts
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-07-01 05:36:17 +02:00
|
|
|
#include "ass_dialogue.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "ass_file.h"
|
|
|
|
#include "subs_edit_box.h"
|
|
|
|
#include "subs_grid.h"
|
2007-07-01 05:36:17 +02:00
|
|
|
#include "utils.h"
|
2009-09-10 03:41:34 +02:00
|
|
|
#include "video_display.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "visual_tool_clip.h"
|
2007-07-01 05:36:17 +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 _parent
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
VisualToolClip::VisualToolClip(VideoDisplay *_parent)
|
|
|
|
: VisualTool(_parent)
|
|
|
|
{
|
|
|
|
_parent->ShowCursor(false);
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Set defaults
|
|
|
|
curX1 = curY1 = 0;
|
|
|
|
curX2 = sw;
|
|
|
|
curY2 = sh;
|
2008-09-10 18:13:54 +02:00
|
|
|
inverse = false;
|
2007-07-04 07:22:35 +02:00
|
|
|
AssDialogue *line = GetActiveDialogueLine();
|
2008-09-10 18:13:54 +02:00
|
|
|
if (line) GetLineClip(line,curX1,curY1,curX2,curY2,inverse);
|
2007-07-01 05:36:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Update
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
void VisualToolClip::Update() {
|
|
|
|
// Render parent
|
|
|
|
GetParent()->Render();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
void VisualToolClip::Draw() {
|
2007-07-01 05:57:34 +02:00
|
|
|
// Get current line
|
|
|
|
AssDialogue *line = GetActiveDialogueLine();
|
|
|
|
if (!line) return;
|
|
|
|
|
2007-07-01 05:36:17 +02:00
|
|
|
// Get position
|
2008-09-10 18:13:54 +02:00
|
|
|
if (!dragging && !holding) GetLineClip(line,curX1,curY1,curX2,curY2,inverse);
|
2007-07-01 05:36:17 +02:00
|
|
|
int dx1 = curX1;
|
|
|
|
int dy1 = curY1;
|
|
|
|
int dx2 = curX2;
|
|
|
|
int dy2 = curY2;
|
|
|
|
|
|
|
|
// Draw rectangle
|
2007-07-05 06:56:56 +02:00
|
|
|
SetLineColour(colour[3],1.0f,2);
|
2007-07-01 05:36:17 +02:00
|
|
|
SetFillColour(colour[3],0.0f);
|
|
|
|
DrawRectangle(dx1,dy1,dx2,dy2);
|
|
|
|
|
|
|
|
// Draw outside area
|
|
|
|
SetLineColour(colour[3],0.0f);
|
2007-07-05 06:32:46 +02:00
|
|
|
SetFillColour(wxColour(0,0,0),0.5f);
|
2008-09-10 18:13:54 +02:00
|
|
|
if (inverse) {
|
|
|
|
DrawRectangle(dx1,dy1,dx2,dy2);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DrawRectangle(0,0,sw,dy1);
|
|
|
|
DrawRectangle(0,dy2,sw,sh);
|
|
|
|
DrawRectangle(0,dy1,dx1,dy2);
|
|
|
|
DrawRectangle(dx2,dy1,sw,dy2);
|
|
|
|
}
|
2007-07-01 05:36:17 +02:00
|
|
|
|
|
|
|
// Draw circles
|
|
|
|
SetLineColour(colour[0]);
|
|
|
|
SetFillColour(colour[1],0.5);
|
2007-07-04 07:22:35 +02:00
|
|
|
if (CanDrag()) DrawAllFeatures();
|
|
|
|
else {
|
|
|
|
DrawCircle(dx1,dy1,4);
|
|
|
|
DrawCircle(dx2,dy1,4);
|
|
|
|
DrawCircle(dx2,dy2,4);
|
|
|
|
DrawCircle(dx1,dy2,4);
|
|
|
|
}
|
2007-07-01 05:36:17 +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 Start holding
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
void VisualToolClip::InitializeHold() {
|
|
|
|
startX = mouseX;
|
|
|
|
startY = mouseY;
|
|
|
|
curDiag->StripTag(_T("\\clip"));
|
2008-09-10 18:13:54 +02:00
|
|
|
curDiag->StripTag(_T("\\iclip"));
|
2007-07-01 05:36:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Update hold
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
void VisualToolClip::UpdateHold() {
|
|
|
|
// Coordinates
|
|
|
|
curX1 = startX * sw / w;
|
|
|
|
curY1 = startY * sh / h;
|
|
|
|
curX2 = mouseX * sw / w;
|
|
|
|
curY2 = mouseY * sh / h;
|
2007-07-01 05:57:34 +02:00
|
|
|
|
|
|
|
// Make sure 1 is smaller than 2
|
2007-07-01 05:36:17 +02:00
|
|
|
if (curX1 > curX2) IntSwap(curX1,curX2);
|
|
|
|
if (curY1 > curY2) IntSwap(curY1,curY2);
|
2007-07-01 05:57:34 +02:00
|
|
|
|
|
|
|
// Limit to video area
|
|
|
|
curX1 = MID(0,curX1,sw);
|
|
|
|
curX2 = MID(0,curX2,sw);
|
|
|
|
curY1 = MID(0,curY1,sh);
|
|
|
|
curY2 = MID(0,curY2,sh);
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Features
|
|
|
|
if (CanDrag()) PopulateFeatureList();
|
2007-07-01 05:36:17 +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 Commit hold
|
|
|
|
///
|
2007-07-01 05:36:17 +02:00
|
|
|
void VisualToolClip::CommitHold() {
|
2008-09-10 18:13:54 +02:00
|
|
|
if (inverse)
|
|
|
|
SetOverride(_T("\\iclip"),wxString::Format(_T("(%i,%i,%i,%i)"),curX1,curY1,curX2,curY2));
|
|
|
|
else
|
|
|
|
SetOverride(_T("\\clip"),wxString::Format(_T("(%i,%i,%i,%i)"),curX1,curY1,curX2,curY2));
|
2007-07-01 05:36:17 +02:00
|
|
|
}
|
2007-07-04 07:22:35 +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 Populate feature list
|
|
|
|
///
|
2007-07-04 07:22:35 +02:00
|
|
|
void VisualToolClip::PopulateFeatureList() {
|
|
|
|
// Clear
|
2007-07-04 08:50:03 +02:00
|
|
|
if (features.size() != 4) {
|
|
|
|
features.clear();
|
|
|
|
features.resize(4);
|
|
|
|
}
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Top-left
|
2007-07-04 08:50:03 +02:00
|
|
|
int i = 0;
|
|
|
|
features[i].x = curX1;
|
|
|
|
features[i].y = curY1;
|
|
|
|
features[i].brother[0] = 1;
|
|
|
|
features[i].brother[1] = 2;
|
|
|
|
features[i].brother[2] = 3;
|
|
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
|
|
i++;
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Top-right
|
2007-07-04 08:50:03 +02:00
|
|
|
features[i].x = curX2;
|
|
|
|
features[i].y = curY1;
|
|
|
|
features[i].brother[0] = 0;
|
|
|
|
features[i].brother[1] = 3;
|
|
|
|
features[i].brother[2] = 2;
|
|
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
|
|
i++;
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Bottom-left
|
2007-07-04 08:50:03 +02:00
|
|
|
features[i].x = curX1;
|
|
|
|
features[i].y = curY2;
|
|
|
|
features[i].brother[0] = 3;
|
|
|
|
features[i].brother[1] = 0;
|
|
|
|
features[i].brother[2] = 1;
|
|
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
|
|
i++;
|
2007-07-04 07:22:35 +02:00
|
|
|
|
|
|
|
// Bottom-right
|
2007-07-04 08:50:03 +02:00
|
|
|
features[i].x = curX2;
|
|
|
|
features[i].y = curY2;
|
|
|
|
features[i].brother[0] = 2;
|
|
|
|
features[i].brother[1] = 1;
|
|
|
|
features[i].brother[2] = 0;
|
|
|
|
features[i].type = DRAG_SMALL_CIRCLE;
|
|
|
|
i++;
|
2007-07-04 07:22:35 +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 Initialize
|
|
|
|
/// @param feature
|
|
|
|
///
|
2007-07-04 07:22:35 +02:00
|
|
|
void VisualToolClip::InitializeDrag(VisualDraggableFeature &feature) {
|
|
|
|
curDiag = GetActiveDialogueLine();
|
|
|
|
curDiag->StripTag(_T("\\clip"));
|
2008-09-10 18:13:54 +02:00
|
|
|
curDiag->StripTag(_T("\\iclip"));
|
2007-07-04 07:22:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Update drag
|
|
|
|
/// @param feature
|
|
|
|
///
|
2007-07-04 07:22:35 +02:00
|
|
|
void VisualToolClip::UpdateDrag(VisualDraggableFeature &feature) {
|
|
|
|
// Update brothers
|
|
|
|
features[feature.brother[0]].y = feature.y;
|
|
|
|
features[feature.brother[1]].x = feature.x;
|
|
|
|
|
|
|
|
// Get "cur" from features
|
|
|
|
curX1 = features[0].x;
|
|
|
|
curX2 = features[3].x;
|
|
|
|
curY1 = features[0].y;
|
|
|
|
curY2 = features[3].y;
|
|
|
|
|
|
|
|
// Make sure p1 < p2
|
|
|
|
if (curX1 > curX2) IntSwap(curX1,curX2);
|
|
|
|
if (curY1 > curY2) IntSwap(curY1,curY2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Done dragging
|
|
|
|
/// @param feature
|
|
|
|
///
|
2007-07-04 07:22:35 +02:00
|
|
|
void VisualToolClip::CommitDrag(VisualDraggableFeature &feature) {
|
|
|
|
CommitHold();
|
|
|
|
}
|
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
|
|
|
|