TRichEdit暂停/恢复撤销功能

时间:2014-01-17 20:35:12

标签: c++builder vcl undo-redo trichedit c++builder-xe5

有没有办法在TRichEdit控件中暂停/恢复撤消录音?是否有要发送的消息或要设置的模式?

修改
我已经使用ITextDocument接口解决了这个问题。请参阅下面的帖子。

2 个答案:

答案 0 :(得分:1)

请参阅EM_SETUNDOLIMIT消息:

  

设置可以存储在富编辑控件的撤消队列中的最大操作数。

     

<强>参数

     

的wParam   指定可以在撤消队列中存储的最大操作数。

     

lParam的   不使用此参数;它必须为零。

     

返回值

     

返回值是富编辑控件的新的最大撤消操作数。如果内存有限,该值可能小于wParam。

     

<强>说明

     

默认情况下,撤消队列中的最大操作数为100.如果增加此数字,则必须有足够的可用内存来容纳新号码。为了获得更好的性能,请将限制设置为可能的最小值。

     

将限制设置为零会禁用“撤消”功能。

答案 1 :(得分:1)

好的,我解决了。

您必须使用ITextDocument界面来设置各种撤消模式。在此示例中,Script_EditTRichEdit控件。

#include <Richole.h>
#include <Tom.h>

// Define the ITextDocument interface GUID
#define DEFINE_GUIDXXX(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
        EXTERN_C const GUID CDECL name \
                = { l, w1, w2, { b1, b2,  b3,  b4,  b5,  b6,  b7,  b8 } }

DEFINE_GUIDXXX(IID_ITextDocument,0x8CC497C0,0xA1DF,0x11CE,0x80,0x98,
                0x00,0xAA,0x00,0x47,0xBE,0x5D);

IRichEditOle  *IRich;
ITextDocument *IDoc;

// Get the IRichEditOle interface object
SendMessage(Script_Edit->Handle,EM_GETOLEINTERFACE,0,(LPARAM)&IRich);

// Get the ITextDocument interface
IRich->QueryInterface(IID_ITextDocument,(void**)&IDoc);

// Suspend the Undo recording
IDoc->Undo(tomSuspend,NULL);

 ... Do your stuff ...

// Resume the Undo recording
IDoc->Undo(tomResume,NULL);

// Release the interfaces
IDoc->Release();
IRich->Release();

ITextDocument->Undo()可用于:

ITextDocument->Undo(tomFalse,   NULL); //Prevents Undo and empties buffer.
ITextDocument->Undo(tomTrue,    NULL); //Restarts Undo again.
ITextDocument->Undo(tomSuspend, NULL); //Suspends Undo.
ITextDocument->Undo(tomResume,  NULL); //Resumes Undo.

我希望这对其他人也有用......