Controlling and formatting dropped text
Controlling and formatting dropped text
Hello Sergey,
referring to the problem of paste and formatting, I have a question how to intercept and control the process in OleDrop.
With OnPaste I can easily redirect the clipboard to the invisible RichViewEdit.
But how can I do that with OnOleDrop?
Greetings
Martin
referring to the problem of paste and formatting, I have a question how to intercept and control the process in OleDrop.
With OnPaste I can easily redirect the clipboard to the invisible RichViewEdit.
But how can I do that with OnOleDrop?
Greetings
Martin
Re: Controlling and formatting dropped text
Martin,
This isn' Sergey but I can tell you what I do. Sergey may have a better answer. I figured you might post about file drops.
I use DropFiles and process things there. This is a part of what I do for file drops (dropping text would be different):
I use DropFiles rather than DropFile so I can handle more than one file being dropped. You'd have to add in code similar to what is in your other related forum post to reformat things the way you want.
Dropping text will probably need to use OleDrop and the reformat code from your other post.
Stan
This isn' Sergey but I can tell you what I do. Sergey may have a better answer. I figured you might post about file drops.
I use DropFiles and process things there. This is a part of what I do for file drops (dropping text would be different):
Code: Select all
procedure TForm1.rveDropFiles...
success := false;
DoDefault := false;
try
if (ExtractFileExt(Files[0]).ToLower = '.rvf') then
begin
Stream := TMemoryStream.Create;
Stream.LoadFromFile(Files[0]);
Stream.Position := 0;
success := ActiveRVE.InsertRVFFromStreamEd(Stream);
Stream.Free;
exit;
end;
//do more file types here as needed...
finally
ActiveRVE.ReFormat;
if success then
ActiveRVE.Modified := true;
end;
Dropping text will probably need to use OleDrop and the reformat code from your other post.
Stan
Re: Controlling and formatting dropped text
Hi Stan,
thank you very much for your answer.
But unfortunately it is about dropping text from for example Word into a TRichViewEdit or TSRichViewEdit respectively. Similar to my question with dropping text, where the text should be adapted to the target formatting, but markups (bold, italic etc.) should be taken over.
The paste problem is now solved, but now someone pointed out to me that there is also drag'n'drop ...
Greetings
Martin
thank you very much for your answer.
But unfortunately it is about dropping text from for example Word into a TRichViewEdit or TSRichViewEdit respectively. Similar to my question with dropping text, where the text should be adapted to the target formatting, but markups (bold, italic etc.) should be taken over.
The paste problem is now solved, but now someone pointed out to me that there is also drag'n'drop ...
Greetings
Martin
Re: Controlling and formatting dropped text
Martin,
Yes, but you may want to handle a file getting dropped as well.
For text out of Word, I'd guess using the one of the OleDrop functions will be what you'd want to use. I use AfterOleDrop to resize images that get dropped into my app so I tried that and it worked. I created some styled text in Worpad and Word:
Testing one, two, three.
I selected that and dragged it into my rve. I tried it from both Wordpad and Word. The text dropped in my rve was styled but in a different font than what my app is set to use.
The text I dropped into the rve was already selected after the drop, so in AfterOleDrop I applied the font name my app is set to (Georgia) and it changed the font name and left the styled words.
So in your case, after dragging in the text, you could copy the dropped text in the rve, run it through the format code you have in the other post, then paste it back in and that should do it.
Stan
Yes, but you may want to handle a file getting dropped as well.
For text out of Word, I'd guess using the one of the OleDrop functions will be what you'd want to use. I use AfterOleDrop to resize images that get dropped into my app so I tried that and it worked. I created some styled text in Worpad and Word:
Testing one, two, three.
I selected that and dragged it into my rve. I tried it from both Wordpad and Word. The text dropped in my rve was styled but in a different font than what my app is set to use.
The text I dropped into the rve was already selected after the drop, so in AfterOleDrop I applied the font name my app is set to (Georgia) and it changed the font name and left the styled words.
So in your case, after dragging in the text, you could copy the dropped text in the rve, run it through the format code you have in the other post, then paste it back in and that should do it.
Stan
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Controlling and formatting dropped text
There is OnOleDrop event.
But it's not so simple because you need to get data from IDataObject (there is no public method of TRichViewEdit that can insert data from IDataObject).
There is an additional difficulty when moving selection within the same editor (you need to delete selection and keep the insertion position while deleting).
It makes custom processing of drag&drop a non-trivial task.
But it's not so simple because you need to get data from IDataObject (there is no public method of TRichViewEdit that can insert data from IDataObject).
There is an additional difficulty when moving selection within the same editor (you need to delete selection and keep the insertion position while deleting).
It makes custom processing of drag&drop a non-trivial task.
Re: Controlling and formatting dropped text
Hi Stan,
unfortunately, the text is not selected for me after dropping. Therefore I cannot use this method.
Sergey, could you please tell me which (undocumented) methods are responsible for dropping text?
unfortunately, the text is not selected for me after dropping. Therefore I cannot use this method.
Sergey, could you please tell me which (undocumented) methods are responsible for dropping text?
Re: Controlling and formatting dropped text
Code: Select all
procedure TfMain.rvOleDrop(Sender: TCustomRichView; const DataObject: IDataObject; Shift: TShiftState; X, Y: Integer;
PossibleDropEffects: TRVOleDropEffects; var DropEffect: TRVOleDropEffect; var DoDefault: Boolean);
var
EnumFormatEtc: IEnumFormatEtc;
FormatEtc: TFormatEtc;
Medium: TStgMedium;
PData: PChar;
AText: string;
CF_RTF: uint;
Stream: TStringStream;
begin
DoDefault := True;
AText := '';
if DataObject.EnumFormatEtc(DATADIR_GET, EnumFormatEtc) = S_OK then
begin
CF_RTF := RegisterClipboardFormat('Rich Text Format');
while (EnumFormatEtc.Next(1, FormatEtc, nil) = S_OK) and DoDefault do
begin
if FormatEtc.cfFormat = CF_RTF then
begin
if DataObject.GetData(FormatEtc, Medium) = S_OK then
begin
PData := GlobalLock(Medium.hGlobal);
AText := PData;
GlobalUnlock(Medium.hGlobal);
DoDefault := False;
STream := TStringStream.Create(AText);
try
Stream.Position := 0;
rvH.InsertRTFFromStreamEd(Stream);
rvH.Format;
ConvertRichtext(True);
finally
Stream.Free;
end;
end;
end;
end;
end;
end;
Re: Controlling and formatting dropped text
Hi Stan,
Unfortunately this does not help either.
Martin
Unfortunately this does not help either.
Martin
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Controlling and formatting dropped text
There is no a separate method that loads from IDataObject.
TCustomRichViewEdit.OleDrop is called when dropping data to TRichViewEdit; it calls OnOleDrop (also BeforeOleDrop, AfterOleDrop, and maybe special events related to dropping files), reads data from IDataObject, inserts data, selects the inserted fragment.
I thought about this problem. Probably, the best solution would be adding a new event OnDropFromStream, which will be called when dropping RVF or RTF format. You will be able to replace content in this stream.
Would this solution be ok?
TCustomRichViewEdit.OleDrop is called when dropping data to TRichViewEdit; it calls OnOleDrop (also BeforeOleDrop, AfterOleDrop, and maybe special events related to dropping files), reads data from IDataObject, inserts data, selects the inserted fragment.
I thought about this problem. Probably, the best solution would be adding a new event OnDropFromStream, which will be called when dropping RVF or RTF format. You will be able to replace content in this stream.
Would this solution be ok?
Re: Controlling and formatting dropped text
Thanks for your thoughts. I have given up on a solution in the meantime and exclude rvddrRTF at AcceptedDragDropFormats. So you can only drop from RVF to RVF or unformatted text. If a user wants to paste from Word, then he just has to do it via copy&paste.
But I have another problem I've been experimenting with for a while and can't get it to work. I'll post it in a new thread.
Edit - problem solved
But I have another problem I've been experimenting with for a while and can't get it to work. I'll post it in a new thread.
Edit - problem solved