#region ================== Copyright (c) 2007 Pascal vd Heiden
/*
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
* This program is released under GNU General Public License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#endregion
#region ================== Namespaces
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
#endregion
namespace CodeImp.DoomBuilder.Editing
{
///
/// This registers an EditMode derived class as a known editing mode within Doom Builder.
/// Allows automatic binding with an action and a button on the toolbar/menu.
///
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = true)]
public class EditModeAttribute : Attribute
{
#region ================== Variables
// Properties
private string switchaction = null;
private string buttonimage = null;
private int buttonorder = 0;
private string buttongroup = "~none";
private bool optional = true;
private bool isvolatile = false;
private string displayname = "";
private bool allowcopypaste = true;
private bool usebydefault = false;
private bool safestartmode = false;
#endregion
#region ================== Properties
///
/// Sets the action name (as defined in the Actions.cfg resource) to
/// switch to this mode by using a shortcut key, toolbar button or menu item.
///
public string SwitchAction { get { return switchaction; } set { switchaction = value; } }
///
/// Image resource name of the embedded resource that will be used for the
/// toolbar button and menu item. Leave this property out or set to null to
/// display no button for this mode.
///
public string ButtonImage { get { return buttonimage; } set { buttonimage = value; } }
///
/// Sorting number for the order of buttons on the toolbar. Buttons with
/// lower values will be more to the left than buttons with higher values.
///
public int ButtonOrder { get { return buttonorder; } set { buttonorder = value; } }
///
/// Grouping name for buttons on the toolbar. Groups are sorted alphabetically.
///
public string ButtonGroup { get { return buttongroup; } set { buttongroup = value; } }
///
/// When set to false, this mode will always be available for use and the user cannot
/// change this in the game configuration.
///
public bool Optional { get { return optional; } set { optional = value; } }
///
/// Set this to true to select this editing mode for use in all game configurations
/// by default. This only applies the first time and can still be changed by the user.
/// THIS OPTION MAY BE INTRUSIVE TO THE USER, USE WITH GREAT CARE!
///
public bool UseByDefault { get { return usebydefault; } set { usebydefault = value; } }
///
/// When set to true, this mode is cancelled when core actions like
/// undo and save are performed. The editing mode should then return to
/// a non-volatile mode.
///
public bool Volatile { get { return isvolatile; } set { isvolatile = value; } }
///
/// Name to display in the game configuration editing modes list and on the
/// information bar when the mode is currently active.
///
public string DisplayName { get { return displayname; } set { displayname = value; } }
///
/// When set to false, the actions Cut, Copy and Paste cannot be used
/// in this mode. Default for this property is true.
///
public bool AllowCopyPaste { get { return allowcopypaste; } set { allowcopypaste = value; } }
///
/// Set this to true when it is safe to have the editor start in this mode when
/// opening a map. The user can then select this as starting mode in the configuration.
///
public bool SafeStartMode { get { return safestartmode; } set { safestartmode = value; } }
#endregion
#region ================== Constructor / Disposer
///
/// This registers an EditMode derived class as a known editing mode within Doom Builder.
/// Allows automatic binding with an action and a button on the toolbar/menu.
///
public EditModeAttribute()
{
// Initialize
}
#endregion
#region ================== Methods
#endregion
}
}