mirror of https://github.com/odrling/Aegisub
Right-clicking on the header of the subtitles grid will now bring up a popup menu that allows you to disable columns.
Originally committed to SVN as r430.
This commit is contained in:
parent
a43aea6dc7
commit
c68c13c59a
|
@ -86,6 +86,7 @@ BaseGrid::BaseGrid(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wx
|
||||||
scrollBar->SetScrollbar(0,10,100,10);
|
scrollBar->SetScrollbar(0,10,100,10);
|
||||||
|
|
||||||
// Set column widths
|
// Set column widths
|
||||||
|
for (int i=0;i<10;i++) showCol[i] = Options.AsBool(_T("Grid show column ") + IntegerToString(i));
|
||||||
SetColumnWidths();
|
SetColumnWidths();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -492,6 +493,9 @@ void BaseGrid::DrawImage(wxDC &dc) {
|
||||||
wxRect cur;
|
wxRect cur;
|
||||||
bool isCenter;
|
bool isCenter;
|
||||||
for (int j=0;j<11;j++) {
|
for (int j=0;j<11;j++) {
|
||||||
|
// Check width
|
||||||
|
if (colWidth[j] == 0) continue;
|
||||||
|
|
||||||
// Is center?
|
// Is center?
|
||||||
isCenter = !(j == 4 || j == 5 || j == 6 || j == 10);
|
isCenter = !(j == 4 || j == 5 || j == 6 || j == 10);
|
||||||
|
|
||||||
|
@ -576,6 +580,7 @@ void BaseGrid::OnMouseEvent(wxMouseEvent &event) {
|
||||||
bool click = event.ButtonDown(wxMOUSE_BTN_LEFT);
|
bool click = event.ButtonDown(wxMOUSE_BTN_LEFT);
|
||||||
bool dclick = event.LeftDClick();
|
bool dclick = event.LeftDClick();
|
||||||
int row = event.GetY()/lineHeight + yPos - 1;
|
int row = event.GetY()/lineHeight + yPos - 1;
|
||||||
|
bool headerClick = row < yPos;
|
||||||
if (holding && !click) {
|
if (holding && !click) {
|
||||||
row = MID(0,row,GetRows()-1);
|
row = MID(0,row,GetRows()-1);
|
||||||
}
|
}
|
||||||
|
@ -676,7 +681,7 @@ void BaseGrid::OnMouseEvent(wxMouseEvent &event) {
|
||||||
|
|
||||||
// Popup
|
// Popup
|
||||||
if (event.ButtonDown(wxMOUSE_BTN_RIGHT)) {
|
if (event.ButtonDown(wxMOUSE_BTN_RIGHT)) {
|
||||||
OnPopupMenu();
|
OnPopupMenu(headerClick);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mouse wheel
|
// Mouse wheel
|
||||||
|
@ -837,6 +842,11 @@ void BaseGrid::SetColumnWidths() {
|
||||||
colWidth[8] = marginLen;
|
colWidth[8] = marginLen;
|
||||||
colWidth[9] = marginLen;
|
colWidth[9] = marginLen;
|
||||||
|
|
||||||
|
// Hide columns
|
||||||
|
for (int i=0;i<10;i++) {
|
||||||
|
if (showCol[i] == false) colWidth[i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Set size of last
|
// Set size of last
|
||||||
int total = 0;
|
int total = 0;
|
||||||
for (int i=0;i<10;i++) total+= colWidth[i];
|
for (int i=0;i<10;i++) total+= colWidth[i];
|
||||||
|
|
|
@ -78,7 +78,9 @@ private:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
FrameMain *parentFrame;
|
FrameMain *parentFrame;
|
||||||
virtual void OnPopupMenu() {}
|
bool showCol[16];
|
||||||
|
|
||||||
|
virtual void OnPopupMenu(bool alternate=false) {}
|
||||||
void AdjustScrollbar();
|
void AdjustScrollbar();
|
||||||
void ScrollTo(int y);
|
void ScrollTo(int y);
|
||||||
int yPos;
|
int yPos;
|
||||||
|
|
|
@ -84,6 +84,7 @@ Please visit http://aegisub.net to download latest version
|
||||||
- The manual has been extensively re-written and extended to include documentation about a lot of new (and some not so new) features. It's reasonably complete... for the moment. (TheFluff, Motoko-chan, AMZ, others)
|
- The manual has been extensively re-written and extended to include documentation about a lot of new (and some not so new) features. It's reasonably complete... for the moment. (TheFluff, Motoko-chan, AMZ, others)
|
||||||
- Text edit boxes in the subtitle editing area will now revert to unmodified if you restore the original text. (AMZ)
|
- Text edit boxes in the subtitle editing area will now revert to unmodified if you restore the original text. (AMZ)
|
||||||
- Re-arranged the controls in the subtitle editing area. (AMZ)
|
- Re-arranged the controls in the subtitle editing area. (AMZ)
|
||||||
|
- Right-clicking on the header of the subtitles grid will now bring up a popup menu that allows you to disable columns. (AMZ)
|
||||||
|
|
||||||
|
|
||||||
= 1.09 beta - 2006.01.16 ===========================
|
= 1.09 beta - 2006.01.16 ===========================
|
||||||
|
|
|
@ -147,12 +147,14 @@ void OptionsManager::LoadDefaults() {
|
||||||
SetInt(_T("Grid hide overrides"),1);
|
SetInt(_T("Grid hide overrides"),1);
|
||||||
wchar_t temp = 0x2600;
|
wchar_t temp = 0x2600;
|
||||||
SetText(_T("Grid hide overrides char"),temp);
|
SetText(_T("Grid hide overrides char"),temp);
|
||||||
|
SetBool(_T("Grid allow focus"),true);
|
||||||
|
for (int i=0;i<10;i++) SetBool(_T("Grid show column ") + IntegerToString(i),true);
|
||||||
|
|
||||||
#if defined(__WINDOWS__)
|
#if defined(__WINDOWS__)
|
||||||
SetInt(_T("Grid font size"),8);
|
SetInt(_T("Grid font size"),8);
|
||||||
#else
|
#else
|
||||||
SetInt(_T("Grid font size"),10);
|
SetInt(_T("Grid font size"),10);
|
||||||
#endif
|
#endif
|
||||||
SetBool(_T("Grid allow focus"),true);
|
|
||||||
|
|
||||||
SetBool(_T("Highlight subs in frame"),true);
|
SetBool(_T("Highlight subs in frame"),true);
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,7 @@ BEGIN_EVENT_TABLE(SubtitlesGrid, BaseGrid)
|
||||||
EVT_MENU(MENU_1_12_2_RECOMBINE,SubtitlesGrid::On1122Recombine)
|
EVT_MENU(MENU_1_12_2_RECOMBINE,SubtitlesGrid::On1122Recombine)
|
||||||
EVT_MENU(MENU_12_2_RECOMBINE,SubtitlesGrid::On122Recombine)
|
EVT_MENU(MENU_12_2_RECOMBINE,SubtitlesGrid::On122Recombine)
|
||||||
EVT_MENU(MENU_1_12_RECOMBINE,SubtitlesGrid::On112Recombine)
|
EVT_MENU(MENU_1_12_RECOMBINE,SubtitlesGrid::On112Recombine)
|
||||||
|
EVT_MENU_RANGE(MENU_SHOW_COL,MENU_SHOW_COL+15,SubtitlesGrid::OnShowColMenu)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
||||||
|
@ -107,7 +108,32 @@ SubtitlesGrid::~SubtitlesGrid() {
|
||||||
|
|
||||||
//////////////
|
//////////////
|
||||||
// Popup menu
|
// Popup menu
|
||||||
void SubtitlesGrid::OnPopupMenu() {
|
void SubtitlesGrid::OnPopupMenu(bool alternate) {
|
||||||
|
// Alternate
|
||||||
|
if (alternate) {
|
||||||
|
// Prepare strings
|
||||||
|
wxArrayString strings;
|
||||||
|
strings.Add(_("Line Number"));
|
||||||
|
strings.Add(_("Layer"));
|
||||||
|
strings.Add(_("Start"));
|
||||||
|
strings.Add(_("End"));
|
||||||
|
strings.Add(_("Style"));
|
||||||
|
strings.Add(_("Actor"));
|
||||||
|
strings.Add(_("Effect"));
|
||||||
|
strings.Add(_("Left"));
|
||||||
|
strings.Add(_("Right"));
|
||||||
|
strings.Add(_("Vert"));
|
||||||
|
|
||||||
|
// Create Menu
|
||||||
|
wxMenu menu;
|
||||||
|
for (size_t i=0;i<strings.Count();i++) {
|
||||||
|
menu.Append(MENU_SHOW_COL + i,strings[i],_T(""),wxITEM_CHECK)->Check(showCol[i]);
|
||||||
|
}
|
||||||
|
PopupMenu(&menu);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Get selections
|
// Get selections
|
||||||
bool continuous;
|
bool continuous;
|
||||||
wxArrayInt selections = GetSelection(&continuous);
|
wxArrayInt selections = GetSelection(&continuous);
|
||||||
|
@ -177,6 +203,23 @@ void SubtitlesGrid::OnPopupMenu() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////
|
||||||
|
// Process a show/hide column event
|
||||||
|
void SubtitlesGrid::OnShowColMenu(wxCommandEvent &event) {
|
||||||
|
// Set width
|
||||||
|
int item = event.GetId()-MENU_SHOW_COL;
|
||||||
|
showCol[item] = !showCol[item];
|
||||||
|
|
||||||
|
// Save options
|
||||||
|
Options.SetBool(_T("Grid show column ") + IntegerToString(item),showCol[item]);
|
||||||
|
Options.Save();
|
||||||
|
|
||||||
|
// Update
|
||||||
|
SetColumnWidths();
|
||||||
|
Refresh(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////
|
///////////////////////////
|
||||||
// Process keyboard events
|
// Process keyboard events
|
||||||
void SubtitlesGrid::OnKeyDown(wxKeyEvent &event) {
|
void SubtitlesGrid::OnKeyDown(wxKeyEvent &event) {
|
||||||
|
|
|
@ -68,7 +68,7 @@ class SubtitlesGrid: public BaseGrid {
|
||||||
private:
|
private:
|
||||||
bool ready;
|
bool ready;
|
||||||
|
|
||||||
void OnPopupMenu();
|
void OnPopupMenu(bool alternate=false);
|
||||||
void OnKeyDown(wxKeyEvent &event);
|
void OnKeyDown(wxKeyEvent &event);
|
||||||
|
|
||||||
void OnSwap(wxCommandEvent &event);
|
void OnSwap(wxCommandEvent &event);
|
||||||
|
@ -95,6 +95,7 @@ private:
|
||||||
void On1122Recombine(wxCommandEvent &event);
|
void On1122Recombine(wxCommandEvent &event);
|
||||||
void On122Recombine(wxCommandEvent &event);
|
void On122Recombine(wxCommandEvent &event);
|
||||||
void On112Recombine(wxCommandEvent &event);
|
void On112Recombine(wxCommandEvent &event);
|
||||||
|
void OnShowColMenu(wxCommandEvent &event);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
AssFile *ass;
|
AssFile *ass;
|
||||||
|
@ -157,5 +158,6 @@ enum {
|
||||||
MENU_SET_START_TO_VIDEO,
|
MENU_SET_START_TO_VIDEO,
|
||||||
MENU_SET_END_TO_VIDEO,
|
MENU_SET_END_TO_VIDEO,
|
||||||
MENU_SET_VIDEO_TO_START,
|
MENU_SET_VIDEO_TO_START,
|
||||||
MENU_SET_VIDEO_TO_END
|
MENU_SET_VIDEO_TO_END,
|
||||||
|
MENU_SHOW_COL = 1250
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue