📄 jvqsyncsplitter.pas
字号:
{******************************************************************************}
{* WARNING: JEDI VCL To CLX Converter generated unit. *}
{* Manual modifications will be lost on next release. *}
{******************************************************************************}
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: JvSyncSplitter.PAS, released on 2000-11-22.
The Initial Developer of the Original Code is Peter Below <100113 dott 1101 att compuserve dott com>
Portions created by Peter Below are Copyright (C) 2000 Peter Below.
All Rights Reserved.
Contributor(s): ______________________________________.
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net
Known Issues:
-----------------------------------------------------------------------------}
// $Id: JvQSyncSplitter.pas,v 1.13 2005/02/06 14:06:17 asnepvangers Exp $
unit JvQSyncSplitter;
{$I jvcl.inc}
interface
uses
SysUtils, Classes, QMessages, QControls, QExtCtrls,
JvQSplitter;
type
TJvSyncSplitter = class(TJvSplitter)
private
FPartner: TJvSyncSplitter;
FForcedSize: Boolean;
procedure SetPartner(const Value: TJvSyncSplitter);
protected
function GetResizeStyle: TResizeStyle;
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
procedure SetResizeStyle(Value: TResizeStyle);
procedure VerifyPartner;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer); override;
procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer); override;
procedure MouseEnter(AControl: TControl); override;
procedure MouseLeave(AControl: TControl); override;
published
property Partner: TJvSyncSplitter read FPartner write SetPartner;
property ResizeStyle: TResizeStyle read GetResizeStyle write SetResizeStyle;
end;
implementation
uses
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
JvQTypes, JvQResources;
function TJvSyncSplitter.GetResizeStyle: TResizeStyle;
begin
Result := inherited ResizeStyle
end;
procedure TJvSyncSplitter.Notification(AComponent: TComponent; Operation: TOperation);
begin
if (Operation = opRemove) and (AComponent = Partner) then
Partner := nil;
inherited Notification(AComponent, Operation);
end;
procedure TJvSyncSplitter.SetPartner(const Value: TJvSyncSplitter);
begin
if Value <> Self then
begin
FPartner := Value;
VerifyPartner;
end
else
raise EJVCLException.CreateRes(@RsEInvalidPartner);
end;
procedure TJvSyncSplitter.SetResizeStyle(Value: TResizeStyle);
begin
inherited ResizeStyle := Value;
VerifyPartner;
end;
procedure TJvSyncSplitter.VerifyPartner;
begin
if csDesigning in ComponentState then
if Assigned(Partner) then
if ((Partner.ResizeStyle = rsUpdate) and (ResizeStyle <> rsUpdate)) or
((Partner.ResizeStyle <> rsUpdate) and (ResizeStyle = rsUpdate)) then
{if MessageDlg(Format('Current ResizeStyle settings for %s and %s will'
+ ' cause problems at runtime. Change both to rsUpdate?',
[Name, Partner.Name]), mtWarning, [mbYes,mbNo], 0) = mrYes then}
begin
if Partner.ResizeStyle = rsUpdate then
ResizeStyle := rsUpdate
else
Partner.ResizeStyle := rsUpdate;
end;
end;
procedure TJvSyncSplitter.MouseDown(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer);
begin
if Assigned(FPartner) and not FForcedSize and not (csDesigning in ComponentState) then
begin
Partner.FForcedSize := True;
try
Partner.MouseDown(Button, Shift, X, Y);
finally
Partner.FForcedSize := False;
end;
end;
end;
procedure TJvSyncSplitter.MouseMove(Shift: TShiftState; X, Y: Integer);
begin
if Assigned(FPartner) and not FForcedSize and not (csDesigning in ComponentState) then
begin
Partner.FForcedSize := True;
try
Partner.MouseMove(Shift, X, Y);
finally
Partner.FForcedSize := False;
end;
end;
end;
procedure TJvSyncSplitter.MouseUp(Button: TMouseButton; Shift: TShiftState;
X, Y: Integer);
begin
if Assigned(FPartner) and not FForcedSize and not (csDesigning in ComponentState) then
begin
Partner.FForcedSize := True;
try
Partner.MouseUp(Button, Shift, X, Y);
finally
Partner.FForcedSize := False;
end;
end;
end;
procedure TJvSyncSplitter.MouseEnter(AControl: TControl);
begin
if Assigned(FPartner) and not FForcedSize and not (csDesigning in ComponentState) then
begin
Partner.FForcedSize := True;
try
Partner.MouseEnter(AControl);
finally
Partner.FForcedSize := False;
end;
end;
end;
procedure TJvSyncSplitter.MouseLeave(AControl: TControl);
begin
if Assigned(FPartner) and not FForcedSize and not (csDesigning in ComponentState) then
begin
Partner.FForcedSize := True;
try
Partner.MouseLeave(AControl);
finally
Partner.FForcedSize := False;
end;
end;
end;
{$IFDEF UNITVERSIONING}
const
UnitVersioning: TUnitVersionInfo = (
RCSfile: '$RCSfile: JvQSyncSplitter.pas,v $';
Revision: '$Revision: 1.13 $';
Date: '$Date: 2005/02/06 14:06:17 $';
LogPath: 'JVCL\run'
);
initialization
RegisterUnitVersion(HInstance, UnitVersioning);
finalization
UnregisterUnitVersion(HInstance);
{$ENDIF UNITVERSIONING}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -