* Delete find_replace_button and find_next_button (these were blank anyway) and replace them with find_next_menu and find_replace_menu.
* Add new buttons open_audio_menu, open_audio_from_video_menu, close_audio_menu and close_video_menu. Originally committed to SVN as r3425.
BIN
aegisub/src/bitmaps/16/close_audio_menu.png
Normal file
After Width: | Height: | Size: 614 B |
BIN
aegisub/src/bitmaps/16/close_video_menu.png
Normal file
After Width: | Height: | Size: 371 B |
Before Width: | Height: | Size: 96 B |
BIN
aegisub/src/bitmaps/16/find_next_menu.png
Normal file
After Width: | Height: | Size: 370 B |
BIN
aegisub/src/bitmaps/16/find_replace_menu.png
Normal file
After Width: | Height: | Size: 605 B |
BIN
aegisub/src/bitmaps/16/open_audio_from_video_menu.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
aegisub/src/bitmaps/16/open_audio_menu.png
Normal file
After Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 96 B |
BIN
aegisub/src/bitmaps/24/close_audio_menu.png
Normal file
After Width: | Height: | Size: 1,021 B |
BIN
aegisub/src/bitmaps/24/close_video_menu.png
Normal file
After Width: | Height: | Size: 594 B |
Before Width: | Height: | Size: 102 B |
BIN
aegisub/src/bitmaps/24/find_next_menu.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
aegisub/src/bitmaps/24/find_replace_menu.png
Normal file
After Width: | Height: | Size: 967 B |
BIN
aegisub/src/bitmaps/24/open_audio_from_video_menu.png
Normal file
After Width: | Height: | Size: 602 B |
BIN
aegisub/src/bitmaps/24/open_audio_menu.png
Normal file
After Width: | Height: | Size: 756 B |
Before Width: | Height: | Size: 102 B |
|
@ -398,8 +398,8 @@ void FrameMain::InitMenu() {
|
|||
AppendBitmapMenuItem(editMenu,Menu_Edit_Paste_Over, MakeHotkeyText(_("Paste Lines Over..."), _T("Paste Over")) , _("Paste subtitles over others"),GETIMAGE(paste_over_button_16));
|
||||
editMenu->AppendSeparator();
|
||||
AppendBitmapMenuItem(editMenu,Menu_Edit_Find, MakeHotkeyText(_("&Find..."), _T("Find")), _("Find words in subtitles"),GETIMAGE(find_button_16));
|
||||
AppendBitmapMenuItem(editMenu,Menu_Edit_Find_Next, MakeHotkeyText(_("Find Next"), _T("Find Next")), _("Find next match of last word"),GETIMAGE(find_next_button_16));
|
||||
AppendBitmapMenuItem(editMenu,Menu_Edit_Replace, MakeHotkeyText(_("Search and &Replace..."), _T("Replace")) , _("Find and replace words in subtitles"),GETIMAGE(replace_button_16));
|
||||
AppendBitmapMenuItem(editMenu,Menu_Edit_Find_Next, MakeHotkeyText(_("Find Next"), _T("Find Next")), _("Find next match of last word"),GETIMAGE(find_next_menu_16));
|
||||
AppendBitmapMenuItem(editMenu,Menu_Edit_Replace, MakeHotkeyText(_("Search and &Replace..."), _T("Replace")) , _("Find and replace words in subtitles"),GETIMAGE(find_replace_menu_16));
|
||||
MenuBar->Append(editMenu, _("&Edit"));
|
||||
|
||||
// Create subtitles menu
|
||||
|
@ -469,7 +469,7 @@ void FrameMain::InitMenu() {
|
|||
// Create video menu
|
||||
videoMenu = new wxMenu();
|
||||
videoMenu->Append(Menu_File_Open_Video, _("&Open Video..."), _("Opens a video file"));
|
||||
videoMenu->Append(Menu_File_Close_Video, _("&Close Video"), _("Closes the currently open video file"));
|
||||
AppendBitmapMenuItem(videoMenu, Menu_File_Close_Video, _("&Close Video"), _("Closes the currently open video file"), GETIMAGE(close_video_menu_16));
|
||||
wxMenuItem *RecentVidParent = new wxMenuItem(videoMenu, Menu_File_Recent_Vids_Parent, _("Recent"), _T(""), wxITEM_NORMAL, RecentVids);
|
||||
videoMenu->Append(RecentVidParent);
|
||||
videoMenu->Append(Menu_Video_Dummy, _("Use Dummy Video..."), _("Opens a video clip with solid colour"));
|
||||
|
@ -517,9 +517,9 @@ void FrameMain::InitMenu() {
|
|||
|
||||
// Create audio menu
|
||||
audioMenu = new wxMenu();
|
||||
audioMenu->Append(Menu_Audio_Open_File, _("&Open Audio File..."), _("Opens an audio file"));
|
||||
audioMenu->Append(Menu_Audio_Open_From_Video, _("Open Audio from &Video"), _("Opens the audio from the current video file"));
|
||||
audioMenu->Append(Menu_Audio_Close, _("&Close Audio"), _("Closes the currently open audio file"));
|
||||
AppendBitmapMenuItem(audioMenu, Menu_Audio_Open_File, _("&Open Audio File..."), _("Opens an audio file"), GETIMAGE(open_audio_menu_16));
|
||||
AppendBitmapMenuItem(audioMenu, Menu_Audio_Open_From_Video, _("Open Audio from &Video"), _("Opens the audio from the current video file"), GETIMAGE(open_audio_from_video_menu_16));
|
||||
AppendBitmapMenuItem(audioMenu, Menu_Audio_Close, _("&Close Audio"), _("Closes the currently open audio file"), GETIMAGE(close_audio_menu_16));
|
||||
wxMenuItem *RecentAudParent = new wxMenuItem(audioMenu, Menu_File_Recent_Auds_Parent, _("Recent"), _T(""), wxITEM_NORMAL, RecentAuds);
|
||||
audioMenu->Append(RecentAudParent);
|
||||
#ifdef _DEBUG
|
||||
|
|