return;
}
+ ShowContextMenu(m_contextMenu, event.GetPosition());
+}
+
+// Prepares the context menu, adding appropriate property-editing commands.
+// Returns the number of property commands added.
+int wxRichTextCtrl::PrepareContextMenu(wxMenu* menu, const wxPoint& pt, bool addPropertyCommands)
+{
wxClientDC dc(this);
PrepareDC(dc);
dc.SetFont(GetFont());
+ m_contextMenuPropertiesInfo.Clear();
+
long position = 0;
- wxPoint pt = event.GetPosition();
- wxPoint logicalPt = GetLogicalPoint(ScreenToClient(pt));
wxRichTextObject* hitObj = NULL;
wxRichTextObject* contextObj = NULL;
- int hit = GetFocusObject()->HitTest(dc, logicalPt, position, & hitObj, & contextObj);
+ if (pt != wxDefaultPosition)
+ {
+ wxPoint logicalPt = GetLogicalPoint(ScreenToClient(pt));
+ int hit = GetBuffer().HitTest(dc, logicalPt, position, & hitObj, & contextObj);
- m_contextMenuPropertiesInfo.Clear();
+ if (hit == wxRICHTEXT_HITTEST_ON || hit == wxRICHTEXT_HITTEST_BEFORE || hit == wxRICHTEXT_HITTEST_AFTER)
+ {
+ wxRichTextParagraphLayoutBox* actualContainer = wxDynamicCast(contextObj, wxRichTextParagraphLayoutBox);
+ if (hitObj && actualContainer)
+ {
+ if (actualContainer->AcceptsFocus())
+ {
+ SetFocusObject(actualContainer, false /* don't set caret position yet */);
+ SetCaretPositionAfterClick(actualContainer, position, hit);
+ }
- if (hit == wxRICHTEXT_HITTEST_ON || hit == wxRICHTEXT_HITTEST_BEFORE || hit == wxRICHTEXT_HITTEST_AFTER)
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddItems(actualContainer, hitObj);
+ }
+ else
+ {
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddItems(GetFocusObject(), NULL);
+ }
+ }
+ else
+ {
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddItems(GetFocusObject(), NULL);
+ }
+ }
+ else
{
+ // Invoked from the keyboard, so don't set the caret position and don't use the event
+ // position
+ hitObj = GetFocusObject()->GetLeafObjectAtPosition(m_caretPosition+1);
+ if (hitObj)
+ contextObj = hitObj->GetParentContainer();
+ else
+ contextObj = GetFocusObject();
+
wxRichTextParagraphLayoutBox* actualContainer = wxDynamicCast(contextObj, wxRichTextParagraphLayoutBox);
if (hitObj && actualContainer)
{
- if (actualContainer->AcceptsFocus())
- {
- SetFocusObject(actualContainer, false /* don't set caret position yet */);
- SetCaretPositionAfterClick(actualContainer, position, hit);
- }
-
- m_contextMenuPropertiesInfo.AddItems(actualContainer, hitObj);
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddItems(actualContainer, hitObj);
}
else
- m_contextMenuPropertiesInfo.AddItems(GetFocusObject(), NULL);
+ {
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddItems(GetFocusObject(), NULL);
+ }
}
- else
+
+ if (menu)
{
- m_contextMenuPropertiesInfo.AddItems(GetFocusObject(), NULL);
+ if (addPropertyCommands)
+ m_contextMenuPropertiesInfo.AddMenuItems(menu);
+ return m_contextMenuPropertiesInfo.GetCount();
}
+ else
+ return 0;
+}
- if (m_contextMenu)
+// Shows the context menu, adding appropriate property-editing commands
+bool wxRichTextCtrl::ShowContextMenu(wxMenu* menu, const wxPoint& pt, bool addPropertyCommands)
+{
+ if (menu)
{
- m_contextMenuPropertiesInfo.AddMenuItems(m_contextMenu);
- PopupMenu(m_contextMenu);
+ PrepareContextMenu(menu, pt, addPropertyCommands);
+ PopupMenu(menu);
+ return true;
}
+ else
+ return false;
}
bool wxRichTextCtrl::SetStyle(long start, long end, const wxTextAttr& style)
int wxRichTextContextMenuPropertiesInfo::AddMenuItems(wxMenu* menu, int startCmd) const
{
wxMenuItem* item = menu->FindItem(startCmd);
- // If none of the standard properties identifiers are in the menu, assume it's
- // a custom menu without properties commands, and don't add them.
- if (item)
+ // If none of the standard properties identifiers are in the menu, add them if necessary.
+ // If no items to add, just set the text to something generic
+ if (GetCount() == 0)
{
- // If no items, to add just set the text to something generic
- if (GetCount() == 0)
+ if (item)
{
menu->SetLabel(startCmd, _("&Properties"));
}
}
}
- else
+ }
+ else
+ {
+ int i;
+ int pos = -1;
+ // Find the position of the first properties item
+ for (i = 0; i < (int) menu->GetMenuItemCount(); i++)
{
- int i;
- int pos = -1;
- // Find the position of the first properties item
- for (i = 0; i < (int) menu->GetMenuItemCount(); i++)
+ wxMenuItem* item = menu->FindItemByPosition(i);
+ if (item && item->GetId() == startCmd)
{
- wxMenuItem* item = menu->FindItemByPosition(i);
- if (item && item->GetId() == startCmd)
- {
- pos = i;
- break;
- }
+ pos = i;
+ break;
}
+ }
- if (pos != -1)
+ if (pos != -1)
+ {
+ int insertBefore = pos+1;
+ for (i = startCmd; i < startCmd+GetCount(); i++)
{
- int insertBefore = pos+1;
- for (i = startCmd; i < startCmd+GetCount(); i++)
+ if (menu->FindItem(i))
{
- if (menu->FindItem(i))
- {
- menu->SetLabel(i, m_labels[i - startCmd]);
- }
+ menu->SetLabel(i, m_labels[i - startCmd]);
+ }
+ else
+ {
+ if (insertBefore >= (int) menu->GetMenuItemCount())
+ menu->Append(i, m_labels[i - startCmd]);
else
- {
- if (insertBefore >= (int) menu->GetMenuItemCount())
- menu->Append(i, m_labels[i - startCmd]);
- else
- menu->Insert(insertBefore, i, m_labels[i - startCmd]);
- }
- insertBefore ++;
+ menu->Insert(insertBefore, i, m_labels[i - startCmd]);
}
+ insertBefore ++;
+ }
- // Delete any old items still left on the menu
- for (i = startCmd + GetCount(); i < startCmd+3; i++)
+ // Delete any old items still left on the menu
+ for (i = startCmd + GetCount(); i < startCmd+3; i++)
+ {
+ if (menu->FindItem(i))
{
- if (menu->FindItem(i))
- {
- menu->Delete(i);
- }
+ menu->Delete(i);
}
}
}
+ else
+ {
+ // No existing property identifiers were found, so append to the end of the menu.
+ menu->AppendSeparator();
+ for (i = startCmd; i < startCmd+GetCount(); i++)
+ {
+ menu->Append(i, m_labels[i - startCmd]);
+ }
+ }
}
return GetCount();