2010-06-25 03:44:29 +02:00
|
|
|
// Copyright (c) 2010, Niels Martin Hansen
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file selection_controller.h
|
|
|
|
/// @ingroup controllers
|
|
|
|
/// @brief Interface declaration for the SubtitleSelectionController
|
|
|
|
|
|
|
|
|
2010-06-26 13:32:16 +02:00
|
|
|
#ifndef AGI_SELECTION_CONTROLLER_H
|
|
|
|
#define AGI_SELECTION_CONTROLLER_H
|
|
|
|
|
|
|
|
|
2010-06-25 03:44:29 +02:00
|
|
|
#include <set>
|
|
|
|
|
|
|
|
|
|
|
|
/// @class SelectionListener
|
|
|
|
/// @brief Abstract interface for classes wanting to subtitle selection change notifications
|
|
|
|
template <typename ItemDataType>
|
|
|
|
class SelectionListener {
|
|
|
|
public:
|
|
|
|
typedef std::set<ItemDataType*> Selection;
|
|
|
|
|
|
|
|
/// Virtual destructor for safety
|
|
|
|
virtual ~SelectionListener() { }
|
|
|
|
|
Remove the SelectionChangeSubscriber mechanism from the grid and implement some basic selection change notification through SelectionController.
Change SelectionListener interface so it receives the set of lines added and removed from selection, instead of just the complete new selection.
Update VisualTool<> to use SelectionListener to receive selection change notifications.
This change (temporarily, I hope) breaks feature selection in visual drag mode, when changing selection via the grid. This is caused by the grid selection change first clearing the entire selection, which sends a separate notification about selection clear. This causes the last visual feature to be deselected, and then the visual tool base reselects the active line, causing a new notification for selection to be sent. The active line happens to be the newly clicked line, and the selection notification enters during the externalChange guard being set, and is then ignored for feature update purposes. When control returns to the original SelectRow call in the grid, the line to be selected has already been selected and then nothing happens.
The best fix is to avoid two notifications being required to deselect all then reselect one line in the first place, so making the grid selection handling saner is the best fix.
Originally committed to SVN as r4602.
2010-06-26 06:38:02 +02:00
|
|
|
/// @brief Called when the active line changes
|
|
|
|
/// @param new_line The line that is now the active line
|
|
|
|
///
|
|
|
|
/// In case new_line is 0, the active line was changed to none.
|
2010-06-25 03:44:29 +02:00
|
|
|
virtual void OnActiveLineChanged(ItemDataType *new_line) = 0;
|
|
|
|
|
|
|
|
/// @brief Called when the selected set changes
|
Remove the SelectionChangeSubscriber mechanism from the grid and implement some basic selection change notification through SelectionController.
Change SelectionListener interface so it receives the set of lines added and removed from selection, instead of just the complete new selection.
Update VisualTool<> to use SelectionListener to receive selection change notifications.
This change (temporarily, I hope) breaks feature selection in visual drag mode, when changing selection via the grid. This is caused by the grid selection change first clearing the entire selection, which sends a separate notification about selection clear. This causes the last visual feature to be deselected, and then the visual tool base reselects the active line, causing a new notification for selection to be sent. The active line happens to be the newly clicked line, and the selection notification enters during the externalChange guard being set, and is then ignored for feature update purposes. When control returns to the original SelectRow call in the grid, the line to be selected has already been selected and then nothing happens.
The best fix is to avoid two notifications being required to deselect all then reselect one line in the first place, so making the grid selection handling saner is the best fix.
Originally committed to SVN as r4602.
2010-06-26 06:38:02 +02:00
|
|
|
/// @param lines_added Lines added to the selection
|
|
|
|
/// @param lines_removed Lines removed from the selection
|
|
|
|
///
|
2010-06-28 09:13:03 +02:00
|
|
|
/// The two sets must not intersect.
|
Remove the SelectionChangeSubscriber mechanism from the grid and implement some basic selection change notification through SelectionController.
Change SelectionListener interface so it receives the set of lines added and removed from selection, instead of just the complete new selection.
Update VisualTool<> to use SelectionListener to receive selection change notifications.
This change (temporarily, I hope) breaks feature selection in visual drag mode, when changing selection via the grid. This is caused by the grid selection change first clearing the entire selection, which sends a separate notification about selection clear. This causes the last visual feature to be deselected, and then the visual tool base reselects the active line, causing a new notification for selection to be sent. The active line happens to be the newly clicked line, and the selection notification enters during the externalChange guard being set, and is then ignored for feature update purposes. When control returns to the original SelectRow call in the grid, the line to be selected has already been selected and then nothing happens.
The best fix is to avoid two notifications being required to deselect all then reselect one line in the first place, so making the grid selection handling saner is the best fix.
Originally committed to SVN as r4602.
2010-06-26 06:38:02 +02:00
|
|
|
virtual void OnSelectedSetChanged(const Selection &lines_added, const Selection &lines_removed) = 0;
|
2010-06-25 03:44:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// @class SelectionController
|
|
|
|
/// @brief Abstract interface for selection controllers
|
|
|
|
///
|
|
|
|
/// Two concepts are managed by implementations of this interface: The concept of the
|
|
|
|
/// active line, and the concept of the set of selected lines. There is one or zero
|
|
|
|
/// active lines, the active line is the base for subtitle manipulation in the GUI.
|
|
|
|
/// The set of selected lines may contain any number of subtitle lines, and those
|
|
|
|
/// lines are the primary target of subtitle manipulation. In other words, the active
|
|
|
|
/// line controls what values the user is presented to modify, and the selected set
|
|
|
|
/// controls what lines are actually modified when the user performs modifications.
|
|
|
|
/// In most cases, the active line will be a member of the selected set. It will be
|
|
|
|
/// the responsibility of manipulators to affect the appropriate lines.
|
|
|
|
///
|
|
|
|
/// There is only intended to be one instance of a class implementing this interface
|
|
|
|
/// per editing session, but there may be many different implementations of it.
|
|
|
|
/// The primary implementation would be the subtitle grid in the main GUI, allowing
|
|
|
|
/// the user to actively manipulate the active and selected line sets, but other
|
|
|
|
/// potential implementations are in a test driver and in a non-interactive scenario.
|
|
|
|
///
|
|
|
|
/// Objects implementing the SelectionListener interface can subscribe to
|
|
|
|
/// changes in the active line and the selected set.
|
|
|
|
template <typename ItemDataType>
|
|
|
|
class SelectionController {
|
|
|
|
public:
|
|
|
|
typedef std::set<ItemDataType*> Selection;
|
|
|
|
|
|
|
|
/// Virtual destructor for safety
|
|
|
|
virtual ~SelectionController() { }
|
|
|
|
|
|
|
|
/// @brief Change the active line
|
|
|
|
/// @param new_line Subtitle line to become the new active line
|
|
|
|
///
|
|
|
|
/// The active line may be changed to NULL, in which case there is no longer an
|
|
|
|
/// active line.
|
|
|
|
///
|
|
|
|
/// Calling this method should only cause a change notification to be sent if
|
|
|
|
/// the active line was actually changed.
|
2010-06-26 13:32:16 +02:00
|
|
|
///
|
|
|
|
/// This method must not affect the selected set.
|
2010-06-25 03:44:29 +02:00
|
|
|
virtual void SetActiveLine(ItemDataType *new_line) = 0;
|
|
|
|
|
|
|
|
/// @brief Obtain the active line
|
|
|
|
/// @return The active line or NULL if there is none
|
|
|
|
virtual ItemDataType * GetActiveLine() const = 0;
|
|
|
|
|
|
|
|
/// @brief Change the selected set
|
|
|
|
/// @param new_selection The set of subtitle lines to become the new selected set
|
|
|
|
///
|
|
|
|
/// Implementations must either completely change the selected set to the new
|
|
|
|
/// set provided, or not change the selected set at all. Partial changes are
|
|
|
|
/// not allowed.
|
|
|
|
///
|
|
|
|
/// If no change happens to the selected set, whether because it was refused or
|
|
|
|
/// because the new set was identical to the old set, no change notification may
|
|
|
|
/// be sent.
|
|
|
|
virtual void SetSelectedSet(const Selection &new_selection) = 0;
|
|
|
|
|
|
|
|
/// @brief Obtain the selected set
|
|
|
|
/// @param[out] selection Filled with the selected set on return
|
|
|
|
virtual void GetSelectedSet(Selection &selection) const = 0;
|
|
|
|
|
2010-06-28 09:12:52 +02:00
|
|
|
/// @brief Obtain the selected set
|
|
|
|
/// @return The selected set
|
|
|
|
virtual Selection GetSelectedSet() const = 0;
|
|
|
|
|
2010-06-25 03:44:29 +02:00
|
|
|
/// @brief Change the active line to the next in sequence
|
|
|
|
///
|
|
|
|
/// If there is no logical next line in sequence, no change happens. This should
|
|
|
|
/// also reset the selected set to consist of exactly the active line, if the
|
|
|
|
/// active line was changed.
|
|
|
|
virtual void NextLine() = 0;
|
|
|
|
|
|
|
|
/// @brief Change the active line to the previous in sequence
|
|
|
|
///
|
|
|
|
/// If there is no logical previous line in sequence, no change happens. This
|
|
|
|
/// should also reset the selected set to consist of exactly the active line, if
|
|
|
|
/// the active line was changed.
|
|
|
|
virtual void PrevLine() = 0;
|
|
|
|
|
|
|
|
/// @brief Subscribe an object to receive change notifications
|
|
|
|
/// @param listener Object to subscribe to change notifications
|
|
|
|
virtual void AddSelectionListener(SelectionListener<ItemDataType> *listener) = 0;
|
|
|
|
|
|
|
|
/// @brief Unsubscribe an object from change notifications
|
|
|
|
/// @param listener Object to unsubscribe from change notifications
|
|
|
|
virtual void RemoveSelectionListener(SelectionListener<ItemDataType> *listener) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// @class BaseSelectionController
|
|
|
|
/// @brief Base-implementation of SelectionController
|
|
|
|
///
|
|
|
|
/// This class implements adding and removing listeners for selection change
|
|
|
|
/// notifications, and provides protected functions to announce selection changes.
|
|
|
|
///
|
|
|
|
/// This class should be derived from for most real-world uses, but might not
|
|
|
|
/// be desirable in some special cases such as test drivers.
|
|
|
|
template <typename ItemDataType>
|
|
|
|
class BaseSelectionController : public SelectionController<ItemDataType> {
|
2010-06-27 05:24:03 +02:00
|
|
|
public:
|
|
|
|
typedef typename SelectionController<ItemDataType>::Selection Selection;
|
|
|
|
private:
|
2010-06-25 03:44:29 +02:00
|
|
|
typedef std::set<SelectionListener<ItemDataType> *> SelectionListenerSet;
|
2010-06-27 05:24:03 +02:00
|
|
|
SelectionListenerSet listeners;
|
2010-06-25 03:44:29 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/// Call OnActiveLineChanged on all listeners
|
|
|
|
void AnnounceActiveLineChanged(ItemDataType *new_line)
|
|
|
|
{
|
2010-06-27 05:24:03 +02:00
|
|
|
for (typename SelectionListenerSet::iterator listener = listeners.begin(); listener != listeners.end(); ++listener)
|
2010-06-25 03:44:29 +02:00
|
|
|
{
|
|
|
|
(*listener)->OnActiveLineChanged(new_line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Call OnSelectedSetChangedon all listeners
|
Remove the SelectionChangeSubscriber mechanism from the grid and implement some basic selection change notification through SelectionController.
Change SelectionListener interface so it receives the set of lines added and removed from selection, instead of just the complete new selection.
Update VisualTool<> to use SelectionListener to receive selection change notifications.
This change (temporarily, I hope) breaks feature selection in visual drag mode, when changing selection via the grid. This is caused by the grid selection change first clearing the entire selection, which sends a separate notification about selection clear. This causes the last visual feature to be deselected, and then the visual tool base reselects the active line, causing a new notification for selection to be sent. The active line happens to be the newly clicked line, and the selection notification enters during the externalChange guard being set, and is then ignored for feature update purposes. When control returns to the original SelectRow call in the grid, the line to be selected has already been selected and then nothing happens.
The best fix is to avoid two notifications being required to deselect all then reselect one line in the first place, so making the grid selection handling saner is the best fix.
Originally committed to SVN as r4602.
2010-06-26 06:38:02 +02:00
|
|
|
void AnnounceSelectedSetChanged(const Selection &lines_added, const Selection &lines_removed)
|
2010-06-25 03:44:29 +02:00
|
|
|
{
|
2010-06-27 05:24:03 +02:00
|
|
|
for (typename SelectionListenerSet::iterator listener = listeners.begin(); listener != listeners.end(); ++listener)
|
2010-06-25 03:44:29 +02:00
|
|
|
{
|
Remove the SelectionChangeSubscriber mechanism from the grid and implement some basic selection change notification through SelectionController.
Change SelectionListener interface so it receives the set of lines added and removed from selection, instead of just the complete new selection.
Update VisualTool<> to use SelectionListener to receive selection change notifications.
This change (temporarily, I hope) breaks feature selection in visual drag mode, when changing selection via the grid. This is caused by the grid selection change first clearing the entire selection, which sends a separate notification about selection clear. This causes the last visual feature to be deselected, and then the visual tool base reselects the active line, causing a new notification for selection to be sent. The active line happens to be the newly clicked line, and the selection notification enters during the externalChange guard being set, and is then ignored for feature update purposes. When control returns to the original SelectRow call in the grid, the line to be selected has already been selected and then nothing happens.
The best fix is to avoid two notifications being required to deselect all then reselect one line in the first place, so making the grid selection handling saner is the best fix.
Originally committed to SVN as r4602.
2010-06-26 06:38:02 +02:00
|
|
|
(*listener)->OnSelectedSetChanged(lines_added, lines_removed);
|
2010-06-25 03:44:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~BaseSelectionController() { }
|
|
|
|
|
|
|
|
virtual void AddSelectionListener(SelectionListener<ItemDataType> *listener)
|
|
|
|
{
|
|
|
|
listeners.insert(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void RemoveSelectionListener(SelectionListener<ItemDataType> *listener)
|
|
|
|
{
|
|
|
|
listeners.erase(listener);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Do-nothing selection controller, can be considered to always operate on an empty subtitle file
|
|
|
|
template <typename ItemDataType>
|
|
|
|
class DummySelectionController : public SelectionController<ItemDataType> {
|
|
|
|
public:
|
2010-06-27 05:24:03 +02:00
|
|
|
typedef typename SelectionController<ItemDataType>::Selection Selection;
|
2010-06-25 03:44:29 +02:00
|
|
|
virtual ~DummySelectionController() { }
|
|
|
|
virtual void SetActiveLine(ItemDataType *new_line) { }
|
|
|
|
virtual ItemDataType * GetActiveLine() const { return 0; }
|
|
|
|
virtual void SetSelectedSet(const Selection &new_selection) { }
|
|
|
|
virtual void GetSelectedSet(Selection &selection) const { }
|
|
|
|
virtual void NextLine() { }
|
|
|
|
virtual void PrevLine() { }
|
2010-06-26 16:26:38 +02:00
|
|
|
virtual void AddSelectionListener(SelectionListener<ItemDataType> *listener) { }
|
|
|
|
virtual void RemoveSelectionListener(SelectionListener<ItemDataType> *listener) { }
|
2010-06-25 03:44:29 +02:00
|
|
|
};
|
2010-06-26 13:32:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // include guard
|