X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c3ead1d1513a5eb79091a604f4e42b45d1bdf5d..85f622694cf6024a6a2108b134249468770a530d:/src/ribbon/gallery.cpp?ds=sidebyside diff --git a/src/ribbon/gallery.cpp b/src/ribbon/gallery.cpp index 440455e16f..a671a3a880 100644 --- a/src/ribbon/gallery.cpp +++ b/src/ribbon/gallery.cpp @@ -15,10 +15,9 @@ #pragma hdrstop #endif -#include "wx/ribbon/gallery.h" - #if wxUSE_RIBBON +#include "wx/ribbon/gallery.h" #include "wx/ribbon/art.h" #include "wx/ribbon/bar.h" #include "wx/dcbuffer.h" @@ -33,6 +32,7 @@ wxDEFINE_EVENT(wxEVT_COMMAND_RIBBONGALLERY_HOVER_CHANGED, wxRibbonGalleryEvent); wxDEFINE_EVENT(wxEVT_COMMAND_RIBBONGALLERY_SELECTED, wxRibbonGalleryEvent); +wxDEFINE_EVENT(wxEVT_COMMAND_RIBBONGALLERY_CLICKED, wxRibbonGalleryEvent); IMPLEMENT_DYNAMIC_CLASS(wxRibbonGalleryEvent, wxCommandEvent) IMPLEMENT_CLASS(wxRibbonGallery, wxRibbonControl) @@ -76,6 +76,7 @@ BEGIN_EVENT_TABLE(wxRibbonGallery, wxRibbonControl) EVT_LEAVE_WINDOW(wxRibbonGallery::OnMouseLeave) EVT_LEFT_DOWN(wxRibbonGallery::OnMouseDown) EVT_LEFT_UP(wxRibbonGallery::OnMouseUp) + EVT_LEFT_DCLICK(wxRibbonGallery::OnMouseDClick) EVT_MOTION(wxRibbonGallery::OnMouseMove) EVT_PAINT(wxRibbonGallery::OnPaint) EVT_SIZE(wxRibbonGallery::OnSize) @@ -357,6 +358,13 @@ void wxRibbonGallery::OnMouseUp(wxMouseEvent& evt) notification.SetGalleryItem(m_selected_item); ProcessWindowEvent(notification); } + + wxRibbonGalleryEvent notification( + wxEVT_COMMAND_RIBBONGALLERY_CLICKED, GetId()); + notification.SetEventObject(this); + notification.SetGallery(this); + notification.SetGalleryItem(m_selected_item); + ProcessWindowEvent(notification); } } m_mouse_active_rect = NULL; @@ -365,6 +373,15 @@ void wxRibbonGallery::OnMouseUp(wxMouseEvent& evt) } } +void wxRibbonGallery::OnMouseDClick(wxMouseEvent& evt) +{ + // The 2nd click of a double-click should be handled as a click in the + // same way as the 1st click of the double-click. This is useful for + // scrolling through the gallery. + OnMouseDown(evt); + OnMouseUp(evt); +} + void wxRibbonGallery::SetItemClientObject(wxRibbonGalleryItem* itm, wxClientData* data) { @@ -391,14 +408,31 @@ bool wxRibbonGallery::ScrollLines(int lines) if(m_scroll_limit == 0 || m_art == NULL) return false; + return ScrollPixels(lines * GetScrollLineSize()); +} + +int wxRibbonGallery::GetScrollLineSize() const +{ + if(m_art == NULL) + return 32; + int line_size = m_bitmap_padded_size.GetHeight(); if(m_art->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL) line_size = m_bitmap_padded_size.GetWidth(); - if(lines < 0) + + return line_size; +} + +bool wxRibbonGallery::ScrollPixels(int pixels) +{ + if(m_scroll_limit == 0 || m_art == NULL) + return false; + + if(pixels < 0) { if(m_scroll_amount > 0) { - m_scroll_amount += lines * line_size; + m_scroll_amount += pixels; if(m_scroll_amount <= 0) { m_scroll_amount = 0; @@ -411,11 +445,11 @@ bool wxRibbonGallery::ScrollLines(int lines) return true; } } - else if(lines > 0) + else if(pixels > 0) { if(m_scroll_amount < m_scroll_limit) { - m_scroll_amount += lines * line_size; + m_scroll_amount += pixels; if(m_scroll_amount >= m_scroll_limit) { m_scroll_amount = m_scroll_limit; @@ -436,10 +470,20 @@ void wxRibbonGallery::EnsureVisible(const wxRibbonGalleryItem* item) if(item == NULL || !item->IsVisible() || IsEmpty()) return; - int y = item->GetPosition().GetTop(); - int base_y = m_items.Item(0)->GetPosition().GetTop(); - int delta = y - base_y - m_scroll_amount; - ScrollLines(delta / m_bitmap_padded_size.GetHeight()); + if(m_art->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL) + { + int x = item->GetPosition().GetLeft(); + int base_x = m_items.Item(0)->GetPosition().GetLeft(); + int delta = x - base_x - m_scroll_amount; + ScrollLines(delta / m_bitmap_padded_size.GetWidth()); + } + else + { + int y = item->GetPosition().GetTop(); + int base_y = m_items.Item(0)->GetPosition().GetTop(); + int delta = y - base_y - m_scroll_amount; + ScrollLines(delta / m_bitmap_padded_size.GetHeight()); + } } bool wxRibbonGallery::IsHovered() const @@ -458,9 +502,6 @@ void wxRibbonGallery::OnPaint(wxPaintEvent& WXUNUSED(evt)) if(m_art == NULL) return; - wxSize cur_size = GetSize(); - wxSize min_size = GetMinSize(); - m_art->DrawGalleryBackground(dc, this, GetSize()); int padding_top = m_art->GetMetric(wxRIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE);