1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
{
Double Commander Components
-------------------------------------------------------------------------
Extended ProgressBar class
Copyright (C) 2010 Przemyslaw Nagay (cobines@gmail.com)
Copyright (C) 2011-2018 Alexander Koblov (alexx2000@mail.ru)
Windows 7 implementation based on "Windows 7 Component Library"
by Daniel Wischnewski (http://www.gumpi.com/blog)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
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. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
}
unit KASProgressBar;
{$mode objfpc}{$H+}
interface
uses
LCLType, Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ComCtrls
{$IFDEF LCLWIN32}
, InterfaceBase, ComObj, LMessages, Windows, Themes, dwTaskbarList
{$ENDIF}
{$IFDEF LCLGTK2}
, Gtk2
{$ENDIF}
{$IFDEF LCLQT}
, qt4, qtwidgets
{$ENDIF}
{$IFDEF LCLQT5}
, qt5, qtwidgets
{$ENDIF}
;
type
{ TKASProgressBar }
TKASProgressBar = class(TProgressBar)
private
FShowInTaskbar: Boolean;
{$IFDEF LCLWIN32}
FBarText: String;
FTaskBarEntryHandle: HWND;
FTaskbarList: ITaskbarList;
FTaskbarList3: ITaskbarList3;
{$ENDIF}
protected
{$IFDEF LCLWIN32}
procedure InitializeWnd; override;
procedure WMPaint(var Msg: TLMPaint); message LM_PAINT;
{$ENDIF}
procedure DoOnResize; override;
public
constructor Create(AOwner: TComponent); override;
procedure SetProgress(CurrentValue: Int64; MaxValue: Int64; BarText: String = '');
published
property ShowInTaskbar: Boolean read FShowInTaskbar write FShowInTaskbar default False;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('KASComponents',[TKASProgressBar]);
end;
{ TKASProgressBar }
{$IFDEF LCLWIN32}
procedure TKASProgressBar.InitializeWnd;
var
aOwnerForm: TWinControl;
begin
inherited InitializeWnd;
if CheckWin32Version(6, 1) then
begin
aOwnerForm:= GetParentForm(Self);
if Assigned(aOwnerForm) and (aOwnerForm <> Application.MainForm) then
FTaskBarEntryHandle := aOwnerForm.Handle
else
FTaskBarEntryHandle := Widgetset.AppHandle;
end;
BarShowText:= BarShowText and CheckWin32Version(8);
end;
procedure TKASProgressBar.WMPaint(var Msg: TLMPaint);
var
OldFont: HFONT;
OldBkMode: Integer;
Details: TThemedElementDetails;
begin
inherited WMPaint(Msg);
if BarShowText and ThemeServices.ThemesEnabled then
begin
OldBkMode:= SetBkMode(Msg.DC, TRANSPARENT);
Details:= ThemeServices.GetElementDetails(tpBar);
OldFont:= SelectObject(Msg.DC, Font.Reference.Handle);
ThemeServices.DrawText(Msg.DC, Details, FBarText, Msg.PaintStruct^.rcPaint, DT_SINGLELINE or DT_CENTER or DT_VCENTER, 0);
SelectObject(Msg.DC, OldFont);
SetBkMode(Msg.DC, OldBkMode);
end;
end;
{$ENDIF}
procedure TKASProgressBar.DoOnResize;
begin
inherited;
Max := Width;
end;
constructor TKASProgressBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
{$IFDEF LCLWIN32}
FTaskbarList3 := nil;
FTaskBarEntryHandle := INVALID_HANDLE_VALUE;
// Works only under Windows 7 and higher
if CheckWin32Version(6, 1) then
try
FTaskbarList := ITaskbarList(CreateComObject(CLSID_TaskbarList));
FTaskbarList.HrInit;
FTaskbarList.QueryInterface(CLSID_TaskbarList3, FTaskbarList3);
except
FTaskbarList3 := nil;
end;
{$ENDIF}
{$IFDEF LCLGTK2}
// Have to disable LCLGTK2 default progress bar text
// set in TGtk2WSProgressBar.UpdateProgressBarText.
BarShowText := False;
{$ENDIF}
end;
procedure TKASProgressBar.SetProgress(CurrentValue: Int64; MaxValue: Int64;
BarText: String);
{$IFDEF LCLGTK2}
var
wText: String;
{$ENDIF}
{$IF DEFINED(LCLQT) OR DEFINED(LCLQT5)}
var
wText: WideString;
{$ENDIF}
begin
if MaxValue <> 0 then
Position := Round(CurrentValue * Max / MaxValue)
else
Position := 0;
{$IFDEF LCLWIN32}
if BarShowText then
begin
if MaxValue = 0 then
FBarText := BarText
else if BarText = '' then
FBarText := FloatToStrF((CurrentValue / MaxValue) * 100, ffFixed, 0, 0) + '%'
else
FBarText := BarText + ' (' + FloatToStrF((CurrentValue / MaxValue) * 100, ffFixed, 0, 0) + '%)';
end;
if FShowInTaskbar and (FTaskBarEntryHandle <> INVALID_HANDLE_VALUE) and Assigned(FTaskbarList3) then
begin
FTaskbarList3.SetProgressValue(FTaskBarEntryHandle, Position, Max);
end;
{$ENDIF}
{$IFDEF LCLGTK2}
{
%v - the current progress value.
%l - the lower bound for the progress value.
%u - the upper bound for the progress value.
%p - the current progress percentage.
}
if BarText <> '' then
wText := BarText + ' (%p%%)'
else
wText := '%p%%';
gtk_progress_set_format_string(PGtkProgress(Self.Handle), PChar(wText));
// Have to reset 'show_text' every time because LCLGTK2 will set it according to BarShowText.
gtk_progress_set_show_text(PGtkProgress(Self.Handle), True);
{$ENDIF}
{$IF DEFINED(LCLQT) OR DEFINED(LCLQT5)}
{
%p - is replaced by the percentage completed.
%v - is replaced by the current value.
%m - is replaced by the total number of steps.
}
if BarText <> '' then
wText := WideString(BarText) + ' (%p%)'
else
wText := '%p%';
QProgressBar_setFormat(QProgressBarH(TQtProgressBar(Self.Handle).Widget), @wText);
//QProgressBar_setTextVisible(QProgressBarH(TQtProgressBar(Self.Handle).Widget), True);
{$ENDIF}
end;
end.
|