/////////////// // Clears grid void BaseGrid::Clear () { diagMap.clear(); diagPtrMap.clear(); selMap.clear(); yPos = 0; AdjustScrollbar(); }
void BaseGrid::ClearMaps() { Selection old_selection(selection); index_line_map.clear(); line_index_map.clear(); selection.clear(); yPos = 0; AdjustScrollbar(); AnnounceSelectedSetChanged(Selection(), old_selection); }
void BaseGrid::EndBatch() { --batch_level; assert(batch_level >= 0); if (batch_level == 0) { if (batch_active_line_changed) AnnounceActiveLineChanged(active_line); batch_active_line_changed = false; if (!batch_selection_added.empty() || !batch_selection_removed.empty()) AnnounceSelectedSetChanged(batch_selection_added, batch_selection_removed); batch_selection_added.clear(); batch_selection_removed.clear(); } AdjustScrollbar(); }
void BaseGrid::UpdateStyle() { wxString fontname = lagi_wxString(OPT_GET("Subtitle/Grid/Font Face")->GetString()); if (fontname.empty()) fontname = "Tahoma"; font.SetFaceName(fontname); font.SetPointSize(OPT_GET("Subtitle/Grid/Font Size")->GetInt()); font.SetWeight(wxFONTWEIGHT_NORMAL); // Set line height { wxClientDC dc(this); dc.SetFont(font); int fw,fh; dc.GetTextExtent("#TWFfgGhH", &fw, &fh, nullptr, nullptr, &font); lineHeight = fh + 4; } // Set row brushes assert(sizeof(rowColors) / sizeof(rowColors[0]) >= COLOR_LEFT_COL); rowColors[COLOR_DEFAULT].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Background/Background")->GetColor())); rowColors[COLOR_HEADER].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Header")->GetColor())); rowColors[COLOR_SELECTION].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Background/Selection")->GetColor())); rowColors[COLOR_COMMENT].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Background/Comment")->GetColor())); rowColors[COLOR_VISIBLE].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Background/Inframe")->GetColor())); rowColors[COLOR_SELECTED_COMMENT].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Background/Selected Comment")->GetColor())); rowColors[COLOR_LEFT_COL].SetColour(to_wx(OPT_GET("Colour/Subtitle Grid/Left Column")->GetColor())); // Set column widths std::vector<bool> column_array(OPT_GET("Subtitle/Grid/Column")->GetListBool()); assert(column_array.size() == (size_t)columns); for (int i = 0; i < columns; ++i) showCol[i] = column_array[i]; SetColumnWidths(); // Update AdjustScrollbar(); Refresh(); }
/////////// // On size void BaseGrid::OnSize(wxSizeEvent &event) { AdjustScrollbar(); SetColumnWidths(); Refresh(false); }
///////////// // End batch void BaseGrid::EndBatch() { //Thaw(); AdjustScrollbar(); }