set svn props: eol-style, mime-type

git-svn-id: trunk@19178 -
This commit is contained in:
paul 2009-04-01 11:00:07 +00:00
parent 8efd11f44a
commit 744ecc8434
2 changed files with 274 additions and 274 deletions

20
.gitattributes vendored
View File

@ -3556,8 +3556,8 @@ lcl/include/customcheckbox.inc svneol=native#text/pascal
lcl/include/customcheckgroup.inc svneol=native#text/pascal
lcl/include/customcombobox.inc svneol=native#text/pascal
lcl/include/customcontrol.inc svneol=native#text/pascal
lcl/include/customdbcombobox.inc svneol=native#text/plain
lcl/include/customdblistbox.inc svneol=native#text/plain
lcl/include/customdbcombobox.inc svneol=native#text/pascal
lcl/include/customdblistbox.inc svneol=native#text/pascal
lcl/include/customdockform.inc svneol=native#text/pascal
lcl/include/customedit.inc svneol=native#text/pascal
lcl/include/customform.inc svneol=native#text/pascal
@ -3574,7 +3574,7 @@ lcl/include/custompage.inc svneol=native#text/pascal
lcl/include/custompanel.inc svneol=native#text/pascal
lcl/include/customsplitter.inc svneol=native#text/pascal
lcl/include/customstatictext.inc svneol=native#text/pascal
lcl/include/customtrayicon.inc -text
lcl/include/customtrayicon.inc svneol=native#text/pascal
lcl/include/customupdown.inc svneol=native#text/pascal
lcl/include/dbcalendar.inc svneol=native#text/pascal
lcl/include/dbcheckbox.inc svneol=native#text/pascal
@ -3584,9 +3584,9 @@ lcl/include/dbedit.inc svneol=native#text/pascal
lcl/include/dbgroupbox.inc svneol=native#text/pascal
lcl/include/dbimage.inc svneol=native#text/pascal
lcl/include/dblistbox.inc svneol=native#text/pascal
lcl/include/dblookup.inc svneol=native#text/plain
lcl/include/dblookupcombobox.inc svneol=native#text/plain
lcl/include/dblookuplistbox.inc svneol=native#text/plain
lcl/include/dblookup.inc svneol=native#text/pascal
lcl/include/dblookupcombobox.inc svneol=native#text/pascal
lcl/include/dblookuplistbox.inc svneol=native#text/pascal
lcl/include/dbmemo.inc svneol=native#text/pascal
lcl/include/dbradiogroup.inc svneol=native#text/pascal
lcl/include/dbtext.inc svneol=native#text/pascal
@ -3594,12 +3594,12 @@ lcl/include/docktree.inc svneol=native#text/pascal
lcl/include/dockzone.inc svneol=native#text/pascal
lcl/include/dragdock.inc svneol=native#text/pascal
lcl/include/dragimagelist.inc svneol=native#text/pascal
lcl/include/dragmanager.inc svneol=native#text/plain
lcl/include/dragmanager.inc svneol=native#text/pascal
lcl/include/dragobject.inc svneol=native#text/pascal
lcl/include/edit.inc svneol=native#text/pascal
lcl/include/filedialog.inc svneol=native#text/pascal
lcl/include/fileutil.inc svneol=native#text/pascal
lcl/include/finddialog.inc svneol=native#text/plain
lcl/include/finddialog.inc svneol=native#text/pascal
lcl/include/font.inc svneol=native#text/pascal
lcl/include/fontdialog.inc svneol=native#text/pascal
lcl/include/fpimagebitmap.inc svneol=native#text/pascal
@ -3651,8 +3651,8 @@ lcl/include/radiogroup.inc svneol=native#text/pascal
lcl/include/rasterimage.inc svneol=native#text/pascal
lcl/include/reginifile.inc svneol=native#text/pascal
lcl/include/region.inc svneol=native#text/pascal
lcl/include/replacedialog.inc svneol=native#text/plain
lcl/include/rubberband.inc svneol=native#text/plain
lcl/include/replacedialog.inc svneol=native#text/pascal
lcl/include/rubberband.inc svneol=native#text/pascal
lcl/include/screen.inc svneol=native#text/pascal
lcl/include/scrollbar.inc svneol=native#text/pascal
lcl/include/scrollbox.inc svneol=native#text/pascal

View File

@ -1,264 +1,264 @@
{%MainUnit ../extctrls.pp}
{******************************************************************************
TCustomTrayIcon
******************************************************************************
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
{
Delphi compatibility:
- TCustomTrayIcon is partially compatible with Delphi implementation
}
{*******************************************************************
* TCustomTrayIcon.Create ()
*
* DESCRIPTION: Creates an object from the TCustomTrayIcon class
*
* PARAMETERS: TheOwner - The owner of the component (this may be nil)
*
* RETURNS: A pointer to the newly created object
*
*******************************************************************}
constructor TCustomTrayIcon.Create(TheOwner : TComponent);
begin
inherited Create(TheOwner);
{ Default property values }
FBalloonTimeout := 3000;
FShowIcon := True;
FBalloonFlags := bfNone;
FVisible := False;
FIcon := TIcon.Create;
FIcon.OnChange := @IconChanged;
FNotifier := TPopupNotifier.Create(Self);
FNotifier.OnClose := @HandleNotifierClose;
FTimer := TTimer.Create(Self);
FTimer.Enabled := False;
FTimer.OnTimer := @HandleNotifierTimeout;
end;
{*******************************************************************
* TCustomTrayIcon.Destroy ()
*
* DESCRIPTION: Destroys an object derived from the TCustomTrayIcon class
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
destructor TCustomTrayIcon.Destroy;
begin
{ Avoids an unremoved icon on the tray }
Hide;
FTimer.Free;
FNotifier.Free;
FIcon.Free;
inherited Destroy;
end;
{*******************************************************************
* TCustomTrayIcon.Hide ()
*
* DESCRIPTION: Hides the Icon
*
* PARAMETERS: None
*
* RETURNS: If successfull
*
*******************************************************************}
function TCustomTrayIcon.Hide: Boolean;
begin
if not FVisible then Exit;
FVisible := False;
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Hide(Self);
FVisible := not Result;
end else
Result := false;
end;
{*******************************************************************
* TCustomTrayIcon.Show ()
*
* DESCRIPTION: Shows the Icon
*
* PARAMETERS: None
*
* RETURNS: If successfull
*
*******************************************************************}
function TCustomTrayIcon.Show: Boolean;
begin
if FVisible then Exit;
FVisible := True;
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Show(Self);
FVisible := Result;
end else
Result := false;
end;
{*******************************************************************
* TCustomTrayIcon.SetVisible ()
*
* DESCRIPTION: Setter method of the Visible property
*
*******************************************************************}
procedure TCustomTrayIcon.SetVisible(Value: Boolean);
begin
if Value then Show
else Hide;
end;
{*******************************************************************
* TCustomTrayIcon.HandleNotifierClose ()
*
* DESCRIPTION: Turns the timer off when the notifier closes
* to avoid keep it running unnecessarely
*
*******************************************************************}
procedure TCustomTrayIcon.HandleNotifierClose(Sender: TObject; var CloseAction: TCloseAction);
begin
FTimer.Enabled := False;
end;
{*******************************************************************
* TCustomTrayIcon.HandleNotifierTimeout ()
*
* DESCRIPTION: Handler for the timer that verifies when the notifier
* should close.
*
*******************************************************************}
procedure TCustomTrayIcon.HandleNotifierTimeout(Sender: TObject);
begin
FTimer.Enabled := False;
FNotifier.Hide;
end;
procedure TCustomTrayIcon.IconChanged(Sender: TObject);
begin
if Handle <> 0 then
TWSCustomTrayIconClass(WidgetSetClass).InternalUpdate(Self);
end;
{*******************************************************************
* TCustomTrayIcon.InternalUpdate ()
*
* DESCRIPTION: Makes modifications to the Icon while running
* i.e. without hiding it and showing again
*
* Currently only the following parameters use this:
*
* - Hint
*
* For event parameters (PopUpMenu, OnMouseMove, etc)
* this isn't necessary because they are handled
* througth callbacks that can always call the last value.
*
*******************************************************************}
procedure TCustomTrayIcon.InternalUpdate;
begin
TWSCustomTrayIconClass(WidgetSetClass).InternalUpdate(Self);
end;
{*******************************************************************
* TCustomTrayIcon.ShowBalloonHint ()
*
* DESCRIPTION: Shows a small message balloon near the tray icon
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
procedure TCustomTrayIcon.ShowBalloonHint;
var
UsePopUpNotifier: Boolean;
Pt: TPoint;
begin
UsePopUpNotifier := not TWSCustomTrayIconClass(WidgetSetClass).ShowBalloonHint(Self);
if UsePopUpNotifier then
begin
Pt := Self.GetPosition;
FNotifier.Text := Self.BalloonHint;
FNotifier.Title := Self.BalloonTitle;
FNotifier.ShowAtPos(Pt.x, Pt.y);
FTimer.Interval := Self.BalloonTimeout;
FTimer.Enabled := True;
end;
end;
{*******************************************************************
* TCustomTrayIcon.GetPosition ()
*
* DESCRIPTION: Returns the position of the tray icon on the display.
* This function is utilized to show message boxes near
* the icon
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
function TCustomTrayIcon.GetPosition: TPoint;
begin
Result := TWSCustomTrayIconClass(WidgetSetClass).GetPosition(Self);
end;
{*******************************************************************
* TCustomTrayIcon.GetCanvas ()
*
* DESCRIPTION: Getter method of the Canvas property
*
* PARAMETERS: None
*
* RETURNS: The canvas of the underlaying Widgetset component
*
*******************************************************************}
function TCustomTrayIcon.GetCanvas: TCanvas;
begin
//Result := Icon.Canvas;
Result := TWSCustomTrayIconClass(WidgetSetClass).GetCanvas(Self);
end;
procedure TCustomTrayIcon.SetHint(const AValue: string);
begin
FHint := AValue;
if FVisible then InternalUpdate;
end;
procedure TCustomTrayIcon.SetIcon(const AValue: TIcon);
begin
FIcon.Assign(AValue);
end;
// included by extctrls.pp
{%MainUnit ../extctrls.pp}
{******************************************************************************
TCustomTrayIcon
******************************************************************************
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
{
Delphi compatibility:
- TCustomTrayIcon is partially compatible with Delphi implementation
}
{*******************************************************************
* TCustomTrayIcon.Create ()
*
* DESCRIPTION: Creates an object from the TCustomTrayIcon class
*
* PARAMETERS: TheOwner - The owner of the component (this may be nil)
*
* RETURNS: A pointer to the newly created object
*
*******************************************************************}
constructor TCustomTrayIcon.Create(TheOwner : TComponent);
begin
inherited Create(TheOwner);
{ Default property values }
FBalloonTimeout := 3000;
FShowIcon := True;
FBalloonFlags := bfNone;
FVisible := False;
FIcon := TIcon.Create;
FIcon.OnChange := @IconChanged;
FNotifier := TPopupNotifier.Create(Self);
FNotifier.OnClose := @HandleNotifierClose;
FTimer := TTimer.Create(Self);
FTimer.Enabled := False;
FTimer.OnTimer := @HandleNotifierTimeout;
end;
{*******************************************************************
* TCustomTrayIcon.Destroy ()
*
* DESCRIPTION: Destroys an object derived from the TCustomTrayIcon class
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
destructor TCustomTrayIcon.Destroy;
begin
{ Avoids an unremoved icon on the tray }
Hide;
FTimer.Free;
FNotifier.Free;
FIcon.Free;
inherited Destroy;
end;
{*******************************************************************
* TCustomTrayIcon.Hide ()
*
* DESCRIPTION: Hides the Icon
*
* PARAMETERS: None
*
* RETURNS: If successfull
*
*******************************************************************}
function TCustomTrayIcon.Hide: Boolean;
begin
if not FVisible then Exit;
FVisible := False;
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Hide(Self);
FVisible := not Result;
end else
Result := false;
end;
{*******************************************************************
* TCustomTrayIcon.Show ()
*
* DESCRIPTION: Shows the Icon
*
* PARAMETERS: None
*
* RETURNS: If successfull
*
*******************************************************************}
function TCustomTrayIcon.Show: Boolean;
begin
if FVisible then Exit;
FVisible := True;
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Show(Self);
FVisible := Result;
end else
Result := false;
end;
{*******************************************************************
* TCustomTrayIcon.SetVisible ()
*
* DESCRIPTION: Setter method of the Visible property
*
*******************************************************************}
procedure TCustomTrayIcon.SetVisible(Value: Boolean);
begin
if Value then Show
else Hide;
end;
{*******************************************************************
* TCustomTrayIcon.HandleNotifierClose ()
*
* DESCRIPTION: Turns the timer off when the notifier closes
* to avoid keep it running unnecessarely
*
*******************************************************************}
procedure TCustomTrayIcon.HandleNotifierClose(Sender: TObject; var CloseAction: TCloseAction);
begin
FTimer.Enabled := False;
end;
{*******************************************************************
* TCustomTrayIcon.HandleNotifierTimeout ()
*
* DESCRIPTION: Handler for the timer that verifies when the notifier
* should close.
*
*******************************************************************}
procedure TCustomTrayIcon.HandleNotifierTimeout(Sender: TObject);
begin
FTimer.Enabled := False;
FNotifier.Hide;
end;
procedure TCustomTrayIcon.IconChanged(Sender: TObject);
begin
if Handle <> 0 then
TWSCustomTrayIconClass(WidgetSetClass).InternalUpdate(Self);
end;
{*******************************************************************
* TCustomTrayIcon.InternalUpdate ()
*
* DESCRIPTION: Makes modifications to the Icon while running
* i.e. without hiding it and showing again
*
* Currently only the following parameters use this:
*
* - Hint
*
* For event parameters (PopUpMenu, OnMouseMove, etc)
* this isn't necessary because they are handled
* througth callbacks that can always call the last value.
*
*******************************************************************}
procedure TCustomTrayIcon.InternalUpdate;
begin
TWSCustomTrayIconClass(WidgetSetClass).InternalUpdate(Self);
end;
{*******************************************************************
* TCustomTrayIcon.ShowBalloonHint ()
*
* DESCRIPTION: Shows a small message balloon near the tray icon
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
procedure TCustomTrayIcon.ShowBalloonHint;
var
UsePopUpNotifier: Boolean;
Pt: TPoint;
begin
UsePopUpNotifier := not TWSCustomTrayIconClass(WidgetSetClass).ShowBalloonHint(Self);
if UsePopUpNotifier then
begin
Pt := Self.GetPosition;
FNotifier.Text := Self.BalloonHint;
FNotifier.Title := Self.BalloonTitle;
FNotifier.ShowAtPos(Pt.x, Pt.y);
FTimer.Interval := Self.BalloonTimeout;
FTimer.Enabled := True;
end;
end;
{*******************************************************************
* TCustomTrayIcon.GetPosition ()
*
* DESCRIPTION: Returns the position of the tray icon on the display.
* This function is utilized to show message boxes near
* the icon
*
* PARAMETERS: None
*
* RETURNS: Nothing
*
*******************************************************************}
function TCustomTrayIcon.GetPosition: TPoint;
begin
Result := TWSCustomTrayIconClass(WidgetSetClass).GetPosition(Self);
end;
{*******************************************************************
* TCustomTrayIcon.GetCanvas ()
*
* DESCRIPTION: Getter method of the Canvas property
*
* PARAMETERS: None
*
* RETURNS: The canvas of the underlaying Widgetset component
*
*******************************************************************}
function TCustomTrayIcon.GetCanvas: TCanvas;
begin
//Result := Icon.Canvas;
Result := TWSCustomTrayIconClass(WidgetSetClass).GetCanvas(Self);
end;
procedure TCustomTrayIcon.SetHint(const AValue: string);
begin
FHint := AValue;
if FVisible then InternalUpdate;
end;
procedure TCustomTrayIcon.SetIcon(const AValue: TIcon);
begin
FIcon.Assign(AValue);
end;
// included by extctrls.pp