本文整理汇总了C++中wxStyledTextEvent::GetModificationType方法的典型用法代码示例。如果您正苦于以下问题:C++ wxStyledTextEvent::GetModificationType方法的具体用法?C++ wxStyledTextEvent::GetModificationType怎么用?C++ wxStyledTextEvent::GetModificationType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wxStyledTextEvent
的用法示例。
在下文中一共展示了wxStyledTextEvent::GetModificationType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnTextChanged
void FileEditorWnd::OnTextChanged(wxStyledTextEvent& event)
{
int flags = event.GetModificationType();
if ((flags&wxSTC_MOD_INSERTTEXT) == wxSTC_MOD_INSERTTEXT ||
(flags&wxSTC_MOD_DELETETEXT) == wxSTC_MOD_DELETETEXT)
{
if (!m_isLoading)
gWorkspace->setFileDirty(m_file->id, true);
gFileEditorGroupWnd->setPageTitle(m_file);
gWorkspace->iterateBreakpoints(m_file->id, [&](const Breakpoint* brk)
{
if (brk->markerHandle != -1)
gWorkspace->setBreakpointPos(brk, FROM_TXTLINE(m_textCtrl->MarkerLineFromHandle(brk->markerHandle)), brk->markerHandle);
});
}
}
示例2: onModified
/**
* source is modified
*/
void FbEditor::onModified(wxStyledTextEvent & event)
{
// not directly modifying text?
auto flags = event.GetModificationType();
if ((flags & (wxSTC_MOD_INSERTTEXT | wxSTC_MOD_DELETETEXT)) == 0) return;
// set input buffer
m_srcCtx->setBuffer(GetCharacterPointer());
// get modified line & line length
int line = LineFromPosition(event.GetPosition());
int pos = PositionFromLine(line);
int length = this->GetLineLength(line);
// analyze the source
m_srcCtx->analyze(line, pos, length);
}