📄 advofficepagerde.pas
字号:
unit AdvOfficePagerDE;
interface
{$I TMSDEFS.INC}
uses
Classes, Graphics, Comctrls, Windows, Forms, TypInfo, Dialogs, ExtCtrls,
Controls, ExtDlgs, AdvOfficePager
{$IFDEF DELPHI6_LVL}
{$IFNDEF TMSDOTNET}
, DesignIntf, DesignEditors, ContNrs
{$ENDIF}
{$IFDEF TMSDOTNET}
, Borland.Vcl.design.DesignIntf, Borland.Vcl.design.DesignEditors, ContNrs
{$ENDIF}
{$ELSE}
, DsgnIntf
{$ENDIF}
;
type
TAdvOfficePagerEditor = class(TDefaultEditor)
public
function GetVerb(Index: Integer):string; override;
function GetVerbCount: Integer; override;
procedure ExecuteVerb(Index: Integer); override;
end;
TAdvOfficePageEditor = class(TDefaultEditor)
public
function GetVerb(Index: Integer):string; override;
function GetVerbCount: Integer; override;
procedure ExecuteVerb(Index: Integer); override;
end;
implementation
uses
SysUtils,
{$IFDEF DELPHI6_LVL}
VDBConsts
{$ELSE}
DBConsts
{$ENDIF}
;
function HTMLToRgb(color: tcolor): tcolor;
var
r,g,b: integer;
begin
r := (Color and $0000FF);
g := (Color and $00FF00);
b := (Color and $FF0000) shr 16;
Result := b or g or (r shl 16);
end;
function BrightnessColor(Col: TColor; Brightness: integer): TColor; overload;
var
r1,g1,b1: Integer;
begin
Col := Longint(ColorToRGB(Col));
r1 := GetRValue(Col);
g1 := GetGValue(Col);
b1 := GetBValue(Col);
r1 := Round( (100 + Brightness)/100 * r1 );
g1 := Round( (100 + Brightness)/100 * g1 );
b1 := Round( (100 + Brightness)/100 * b1 );
Result := RGB(r1,g1,b1);
end;
function BrightnessColor(Col: TColor; BR,BG,BB: integer): TColor; overload;
var
r1,g1,b1: Integer;
begin
Col := Longint(ColorToRGB(Col));
r1 := GetRValue(Col);
g1 := GetGValue(Col);
b1 := GetBValue(Col);
r1 := Round( (100 + BR)/100 * r1 );
g1 := Round( (100 + BG)/100 * g1 );
b1 := Round( (100 + BB)/100 * b1 );
Result := RGB(r1,g1,b1);
end;
{ TAdvToolBarPagerEditor }
procedure TAdvOfficePagerEditor.ExecuteVerb(Index: Integer);
var
AdvPage : TAdvOfficePage;
begin
inherited;
case Index of
0:
begin
//TAdvToolBarPager(Component).ControlStyle := TAdvToolBarPager(Component).ControlStyle + [csAcceptsControls];
AdvPage := TAdvOfficePage(Designer.CreateComponent(TAdvOfficePage,Component,23,0,100,100));
AdvPage.Parent := TAdvOfficePager(Component);
AdvPage.AdvOfficePager := TAdvOfficePager(Component);
AdvPage.Caption := AdvPage.name;
TAdvOfficepager(component).ActivePage:= AdvPage;
//TAdvToolBarPager(Component).Update;
//TAdvToolBarPager(Component).Invalidate;
//TAdvToolBarPager(Component).ControlStyle := TAdvToolBarPager(Component).ControlStyle - [csAcceptsControls];
end;
1: TAdvOfficePager(Component).SelectNextPage(false);
2: TAdvOfficePager(Component).SelectNextPage(True);
end;
end;
function TAdvOfficePagerEditor.GetVerb(Index: Integer): string;
begin
case Index of
0: Result := 'New Page';
1: Result := 'Previous Page';
2: Result := 'Next Page';
end;
end;
function TAdvOfficePagerEditor.GetVerbCount: Integer;
begin
Result := 3;
end;
{ TAdvPageEditor }
procedure TAdvOfficePageEditor.ExecuteVerb(Index: Integer);
var
AdvPage : TAdvOfficePage;
begin
inherited;
case Index of
0:
begin
//TWinControl(Component).Parent.ControlStyle := TWinControl(Component).Parent.ControlStyle + [csAcceptsControls];
AdvPage := TAdvOfficePage(Designer.CreateComponent(TAdvOfficePage,TWinControl(Component).Parent,23,0,100,100));
AdvPage.Parent := TWinControl(Component).Parent;
AdvPage.AdvOfficePager := TAdvOfficePager(TWinControl(Component).Parent);
AdvPage.Caption := AdvPage.Name;
TAdvOfficePager(TWinControl(Component).Parent).ActivePage:= AdvPage;
//TAdvToolBarPager(TWinControl(Component).Parent).Update;
//(TWinControl(Component).Parent as TWinControl).Invalidate;
//TWinControl(Component).Parent.ControlStyle := TWinControl(Component).Parent.ControlStyle - [csAcceptsControls];
end;
1: TAdvOfficePager(TAdvOfficePage(Component).Parent).SelectNextPage(false);
2: TAdvOfficePager(TAdvOfficePage(Component).Parent).SelectNextPage(true);
3:
begin
TAdvOfficePage(Component).AdvOfficePager := nil;
Component.Free;
end;
end;
end;
function TAdvOfficePageEditor.GetVerb(Index: Integer): string;
begin
case Index of
0: Result := 'New Page';
1: Result := 'Previous Page';
2: Result := 'Next Page';
3: Result := 'Delete Page';
end;
end;
function TAdvOfficePageEditor.GetVerbCount: Integer;
begin
Result := 4;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -