mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
8e3049d0ee
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@260 0fc631ac-6414-0410-93d0-97cfa31319b6
102 lines
3.3 KiB
C++
102 lines
3.3 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2006 Twan van Laarhoven |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
#ifndef HEADER_DATA_ACTION_KEYWORD
|
|
#define HEADER_DATA_ACTION_KEYWORD
|
|
|
|
/** @file data/action/keyword.hpp
|
|
*
|
|
* Actions operating on Keywords and the keyword list of a set
|
|
*/
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <util/prec.hpp>
|
|
#include <util/action_stack.hpp>
|
|
#include <util/error.hpp>
|
|
#include <data/field/text.hpp>
|
|
|
|
class Set;
|
|
DECLARE_POINTER_TYPE(Keyword);
|
|
|
|
// ----------------------------------------------------------------------------- : Add Keyword
|
|
|
|
/// An Action the changes the keyword list of a set
|
|
class KeywordListAction : public Action {
|
|
public:
|
|
inline KeywordListAction(Set& set) : set(set) {}
|
|
|
|
protected:
|
|
Set& set; // the set owns this action, so the set will not be destroyed before this
|
|
// therefore we don't need a smart pointer
|
|
};
|
|
|
|
/// Adding a new keyword to a set
|
|
class AddKeywordAction : public KeywordListAction {
|
|
public:
|
|
AddKeywordAction(Set& set);
|
|
AddKeywordAction(Set& set, const KeywordP& keyword);
|
|
|
|
virtual String getName(bool to_undo) const;
|
|
virtual void perform(bool to_undo);
|
|
|
|
//private:
|
|
const KeywordP keyword; ///< The new keyword
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Remove Keyword
|
|
|
|
/// Removing a keyword from a set
|
|
class RemoveKeywordAction : public KeywordListAction {
|
|
public:
|
|
RemoveKeywordAction(Set& set, const KeywordP& keyword);
|
|
|
|
virtual String getName(bool to_undo) const;
|
|
virtual void perform(bool to_undo);
|
|
|
|
//private:
|
|
const KeywordP keyword; ///< The removed keyword
|
|
const size_t keyword_id; ///< Position of the keyword in the set
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : Changing keywords
|
|
|
|
/// A FakeTextValue that is used to edit an aspect of a keyword
|
|
/** These values can be seen in ValueActions.
|
|
* Can edit one of:
|
|
* - the keyword name
|
|
* - the match string
|
|
* - reminder text
|
|
*/
|
|
class KeywordTextValue : public FakeTextValue {
|
|
public:
|
|
KeywordTextValue(const TextFieldP& field, Keyword* keyword, String* underlying, bool editable, bool untagged = false)
|
|
: FakeTextValue(field, underlying, editable, untagged)
|
|
, keyword(*keyword)
|
|
{}
|
|
|
|
Keyword& keyword; ///< The keyword that is being edited
|
|
};
|
|
|
|
/// A FakeTextValue that is used to edit reminder text scripts
|
|
class KeywordReminderTextValue : public KeywordTextValue {
|
|
public:
|
|
KeywordReminderTextValue(const TextFieldP& field, Keyword* keyword, bool editable);
|
|
|
|
String errors; ///< Errors in the script
|
|
|
|
/// Try to compile the script
|
|
virtual void store();
|
|
/// Add some tags, so the script looks nice
|
|
virtual void retrieve();
|
|
|
|
/// Syntax highlight, and store in value
|
|
void highlight(const String& code, const vector<ScriptParseError>& errors);
|
|
};
|
|
|
|
// ----------------------------------------------------------------------------- : EOF
|
|
#endif
|