锁定TMemo中文本的开头



我想要一个TMemo,它总是以字符串"SELECT c_name FROM"开头,我想锁定它,这样用户就不能在TMemo中删除或替换这个字符串,他们必须在这个字符串之后写入文本。有人能帮我吗?我尝试了onChange事件,但问题是用户可以在TMemo的开头单击并在开头编辑它。

我使用的是Delphi 6。

TMemo无法满足您的要求。它只是标准Win32 EDIT控件的一个薄薄的包装,不支持这种功能。

您需要使用TRichEdit。它支持像您所描述的那样保护文本。添加所需文本后,使用TRichEdit.SelStartTRichEdit.SelLength属性选择该文本,然后将TRichEdit.SelAttributes.Protected属性设置为true。如果用户试图以任何方式修改受保护的文本,默认情况下TRichEdit将拒绝修改(您可以通过使用TRichEdit.OnProtectChange事件将AllowChange参数设置为true来覆盖该决定)。例如:

RichEdit1.Text := 'SELECT c_name FROM ';
RichEdit1.SelStart := 0;
RichEdit1.SelLength := 19;
RichEdit1.SelAttributes.Protected := True;

更新:默认情况下,保护文本也会阻止用户复制它。如果你想让用户能够复制受保护的文本,你必须明确启用它。尽管TRichEdit具有允许访问受保护文本的OnProtectChange事件,但它不会告诉您文本请求访问的原因。但是,底层EN_PROTECTED通知确实存在。因此,您可以将TRichEdit子类化为直接拦截EN_PROTECTED,然后仅在用户复制受保护的文本时返回0(允许访问)。

interface
uses
  ...;
type
  TMyForm = class(TForm)
    RichEdit1: TRichEdit;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
    DefRichEditWndProc: TWndMethod;
    procedure RichEditWndProc(var Message: TMessage);
  public
    { Public declarations }
  end;
...
implementation
uses
  Richedit;
procedure TMyForm.FormCreate(Sender: TObject);
begin
  DefRichEditWndProc := RichEdit1.WindowProc;
  RichEdit1.WindowProc := RichEditWndProc;
  RichEdit1.Text := 'SELECT c_name FROM ';
  RichEdit1.SelStart := 0;
  RichEdit1.SelLength := 19;
  RichEdit1.SelAttributes.Protected := True;
end;
procedure TMyForm.RichEditWndProc(var Message: TMessage);
begin
  DefRichEditWndProc(Message);
  if Message.Msg = CN_NOTIFY then
  begin
    if TWMNotify(Message).NMHdr.code = EN_PROTECTED then
    begin
      if PENProtected(Message.lParam).Msg = WM_COPY then
        Message.Result := 0;
    end;
  end;
end;

或者:

interface
uses
  ...;
type
  TRichEdit = class(ComCtrls.TRichEdit)
  private
    procedure CNNotify(var Message: TWMNotify); message CN_NOTIFY;
  end;
  TMyForm = class(TForm)
    RichEdit1: TRichEdit;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
...
implementation
uses
  Richedit;
procedure TMyForm.FormCreate(Sender: TObject);
begin
  RichEdit1.Text := 'SELECT c_name FROM ';
  RichEdit1.SelStart := 0;
  RichEdit1.SelLength := 19;
  RichEdit1.SelAttributes.Protected := True;
end;
procedure TRichEdit.CNNotify(var Message: TWMNotify);
begin
  inherited;
  if Message.NMHdr.code = EN_PROTECTED then
  begin
    if PENProtected(Message.NMHdr).Msg = WM_COPY then
      Message.Result := 0;
  end;
end;

这是可能的,但我不知道,如果你喜欢这个解决方案。

如前所述,TMemo并没有实施那种行为。所以你必须对这种行为进行编程。

使用应用程序OnIdle事件和内容的纪念品。在每条空闲消息上验证备忘录内容。如果备忘录内容不是以'SELECT c_name FROM '开头,则分配memento值,否则将备忘录内容存储到memento。

以下是验证和光标保护的示例

type
  TMainForm = class( TForm )
    Memo1: TMemo;
    ApplicationEvents1: TApplicationEvents; // OnIdle = ApplicationEvents1Idle
    procedure ApplicationEvents1Idle( Sender: TObject; var Done: Boolean );
  private
    FMemo1StartWith: string;
    FMemo1Memento  : string;
    procedure ValidateMemo( AMemo: TMemo; const AStartWith: string; var AMemento: string );
  public
    procedure AfterConstruction; override;
  end;
var
  MainForm: TMainForm;
implementation
{$R *.dfm}
procedure TMainForm.AfterConstruction;
begin
  inherited;
  FMemo1StartWith := 'SELECT c_name FROM ';
end;
procedure TMainForm.ApplicationEvents1Idle( Sender: TObject; var Done: Boolean );
begin
  ValidateMemo( Memo1, FMemo1StartWith, FMemo1Memento );
end;
procedure TMainForm.ValidateMemo( AMemo: TMemo; const AStartWith: string; var AMemento: string );
var
  lCurrentContent: string;
begin
  // protect content
  lCurrentContent := AMemo.Text;
  if Pos( AStartWith, lCurrentContent ) = 1
  then
    AMemento := lCurrentContent
  else if Pos( AStartWith, AMemento ) = 1
  then
    AMemo.Text := AMemento
  else
    AMemo.Text := AStartWith;
  // protect cursor position
  if ( AMemo.SelLength = 0 ) and ( AMemo.SelStart < Length( AStartWith ) )
  then
    AMemo.SelStart := Length( AStartWith );
end;

相关内容

  • 没有找到相关文章

最新更新