From a discussion we've had I know you've used RTL reading for your JvTreeView and I've added that you should include also the TVS_RTLREADING style to the control styles. So, here is how to do it in a late control styling (which you have used):
procedure TForm1.FormShow(Sender: TObject);
begin
SetWindowLong(JvTreeView1.Handle, GWL_STYLE, GetWindowLong(
JvTreeView1.Handle, GWL_STYLE) or TVS_RTLREADING);
SetWindowLong(JvTreeView1.Handle, GWL_EXSTYLE, GetWindowLong(
JvTreeView1.Handle, GWL_EXSTYLE) or WS_EX_LAYOUTRTL or WS_EX_RIGHT);
end;
The problem with the control notification is in coordinates mapping (see this answer why it happens). As a fix to the JvComCtrls.pas source you can replace the ScreenToClient point mapping on line 3094 with the following:
MapWindowPoints(0, Handle, Point, 1);
in the JvComCtrls.pas unit in the CNNotify method it will look like:
3071 procedure TJvTreeView.CNNotify(var Msg: TWMNotify);
.... ...
3091 inherited;
3092 if Windows.GetCursorPos(Point) then
3093 begin
3094 MapWindowPoints(0, Handle, Point, 1);
3095 case Msg.NMHdr.code of
.... ...
NeedCheckStateEmulationfunction, and now the check box emulation won't be used only on Windows Vista up with ComCtl v.6.0. In case of your Windows XP you can't meet the Windows version condition so the mentioned function must return True and the check box support should be emulated. – TLama Oct 21 '12 at 10:14NeedSimulation()to always returnTrue, the emulation is not performed as it should. The event is not fired when selecting the check box with mouse. – iMan Biglari Oct 21 '12 at 10:27..\jvcl\lib\dXX\JvComCtrls.dcu), if so, it's not enough to just modify the source (JvComCtrls.pas) and re-build your application. I've made a short test for check box emulation but theOnNodeCheckedChangeevent is fired correctly. – TLama Oct 21 '12 at 10:42JvComCtrls.pasto my project. So I'm sure it's compiled with the rest of my project. Which version of Windows are you testing this on? – iMan Biglari Oct 21 '12 at 10:52NeedCheckStateEmulationfunction to return only True. But only adding the unit to your project doesn't guarantee, the unit will actually be compiled. Default JVCL installation adds the..\jvcl\lib\dXXpath (where the *.dcus are stored) to your environmentLibrary pathoptions, so the compiler might take already compiled unit from there. – TLama Oct 21 '12 at 11:04