Search found 9415 matches

by Sergey Tkachenko
Wed Jan 10, 2024 12:34 pm
Forum: RVMedia
Topic: Manual Focus for webcam
Replies: 1
Views: 42761

Re: Manual Focus for webcam

In RVMedia from 2015 - no, it is not possible. RVMedia supports local camera properties in Windows since version 7.2 , released in 2020. The information below is for RVMedia 7.2 and newer. One of supported camera properties is focus distance (measured in mm). If the camera supports it, you can enabl...
by Sergey Tkachenko
Wed Jan 10, 2024 11:49 am
Forum: RVMedia
Topic: OnEndVideoStream Event to detect a disconnection
Replies: 5
Views: 101760

Re: OnEndVideoStream Event to detect a disconnection

For rtsp, RVMedia uses 'rtspsrc' GStreamer object. For new version of GStreamer, a launch string for rtspsrc is constructed in the function GetRTSPSourceStr_1_0 (MRVGSTObject unit for VCL and LCL, or fmxMRVGSTObject unit for FireMonkey) A list of rtspsrc properties can be found here: https://gstream...
by Sergey Tkachenko
Tue Jan 09, 2024 5:10 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 7
Views: 104319

Re: DocX table empty cells get wrong style

When merging, the resulting cell contains combined content of non-empty merged cells. When merging while reading DocX/RTF, only one cell may contain meaningful content (and changed text/paragraph style must be counted as meaningful content). When merging cells as an operation, empty cells are not co...
by Sergey Tkachenko
Tue Jan 09, 2024 2:06 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 7
Views: 104319

Re: DocX table empty cells get wrong style

I changed your Vampire.IsEmpty to Vampire.ItemCount = 0, so this change affects loading from DocX, but does not affect cell merging initiated by the user.
by Sergey Tkachenko
Tue Jan 09, 2024 2:03 pm
Forum: Support
Topic: DocX saved paragraph with single space, shows wrong in word
Replies: 3
Views: 46952

Re: DocX saved paragraph with single space, shows wrong in word

I can see the problem. MS Word has invisible "end-of-paragraph mark" character that may have its own text attributes, such as font name and size. TRichView does not have this character, so it saves its properties in DocX only if it is absolutely necessary (if the paragraph is empty). Norma...
by Sergey Tkachenko
Tue Jan 09, 2024 1:31 pm
Forum: Support
Topic: DocX table empty cells get wrong style
Replies: 7
Views: 104319

Re: DocX table empty cells get wrong style

I changed

Code: Select all

        if Victim.HasData(False) then
to

Code: Select all

        if Victim.HasData(Vampire.ItemCount = 0) then
by Sergey Tkachenko
Tue Jan 09, 2024 1:03 pm
Forum: Support
Topic: DocX load field gets wrong Font/Style
Replies: 3
Views: 46616

Re: DocX load field gets wrong Font/Style

Thank you!
I accepted your code modification.
It will be included in the next update.
by Sergey Tkachenko
Mon Jan 08, 2024 11:45 am
Forum: Announcements
Topic: Compatibility with Lazarus 3.0
Replies: 0
Views: 103686

Compatibility with Lazarus 3.0

All our components are compatible with Lazarus 3.0, no changes in source code are required.
There are some new warnings on compilation, but they can be safely ignored.
In the next update, the code will be corrected to avoid these warnings.
by Sergey Tkachenko
Mon Jan 08, 2024 10:30 am
Forum: Support
Topic: demo richview not compile delphi 12 linux platform
Replies: 6
Views: 68350

Re: demo richview not compile delphi 12 linux platform

TRichView for Linux uses external functions from libpango-1.0.so.0, such as

Code: Select all

const
  pangolib = 'libpango-1.0.so.0';

function pango_layout_get_context(layout: PPangoLayout): PPangoContext;
  cdecl; external pangolib;
...
Pango library must be installed on the Linux computer.
by Sergey Tkachenko
Sat Dec 30, 2023 8:14 pm
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 140386

Re: Leak Using rvActionOpen

Yes, you are right. I corrected it.
by Sergey Tkachenko
Sat Dec 30, 2023 7:28 pm
Forum: Support
Topic: Fatal error compiling x64 in RAD Studio 11.3/12
Replies: 5
Views: 87129

Re: Fatal error compiling x64 in RAD Studio 11.3/12

The fix is included in TRichView 22.1.1 (currently available only for registered users)
by Sergey Tkachenko
Sat Dec 30, 2023 7:25 pm
Forum: Support
Topic: Leak Using rvActionOpen
Replies: 8
Views: 140386

Re: Leak Using rvActionOpen

The fix is included in TRichView 22.1.1 (currently available only for registered users)
by Sergey Tkachenko
Sat Dec 30, 2023 4:37 pm
Forum: Support
Topic: print preview and page setup actions
Replies: 1
Views: 45608

Re: print preview and page setup actions

As for non-linked actions, they are linked implicitly. When ActionPreview needs ActionPageSetup and it is not assigned, it searches on the same form and uses the first found ActionPageSetup. The same happens for almost all links between RichViewActions. I'll check the problem with explicitly defined...
by Sergey Tkachenko
Sat Dec 23, 2023 12:31 pm
Forum: RVMedia
Topic: OnEndVideoStream Event to detect a disconnection
Replies: 5
Views: 101760

Re: OnEndVideoStream Event to detect a disconnection

RVMedia does not set timeout properties for GStreamer video sources, so default timeouts are used.

I can suggest changes in RVMedia source code to set timeout. But these changes are different for different protocols (HTTP(S) / RTSP / UDP)
What video protocol do you use?