This commit is contained in:
Jason Felds
2011-07-04 17:47:57 -04:00
parent 62de691437
commit bcb8e38b53
+17 -16
View File
@@ -390,24 +390,25 @@ public:
void HandleMainMenuChoice( MainMenuChoice c ) { const vector<int> v; HandleMainMenuChoice( c, v ); } void HandleMainMenuChoice( MainMenuChoice c ) { const vector<int> v; HandleMainMenuChoice( c, v ); }
MainMenuChoice m_CurrentAction; MainMenuChoice m_CurrentAction;
/** @brief How does one alter a selection of NoteData? */
enum AlterMenuChoice enum AlterMenuChoice
{ {
cut, cut, /**< Cut the notes. */
copy, copy, /**< Copy the notes. */
clear, clear, /**< Erase the notes, without putting them in the clipboard. */
quantize, quantize, /**< Sync the notes to an exact level. */
turn, turn, /**< Rotate the notes. */
transform, transform, /**< Activate a specific mod. */
alter, alter, /**< Perform other transformations. */
tempo, tempo, /**< Modify the tempo of the notes. */
play, play, /**< Play the notes in the range. */
record, record, /**< Record new notes in the range. */
preview_designation, preview_designation, /**< Set the area as the music preview. */
convert_to_pause, convert_to_pause, /**< Convert the range into a StopSegment. */
convert_to_delay, convert_to_delay, /**< Convert the range into a DelaySegment. */
convert_to_warp, convert_to_warp, /**< Convert the range into a WarpSegment. */
convert_to_fake, convert_to_fake, /**< Convert the range into a FakeSegment. */
routine_invert_notes, routine_invert_notes, /**< Switch which player hits the note. */
NUM_ALTER_MENU_CHOICES NUM_ALTER_MENU_CHOICES
}; };