2023-11-07 17:10:47 +08:00
|
|
|
unit ImportFavorites;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
2023-11-07 23:44:02 +08:00
|
|
|
Dialogs, StdCtrls;
|
2023-11-07 17:10:47 +08:00
|
|
|
|
|
|
|
type
|
2023-11-07 23:44:02 +08:00
|
|
|
TfmImportFavorites = class(TForm)
|
2023-12-02 20:35:55 +08:00
|
|
|
rbAddToCurrent: TRadioButton;
|
|
|
|
rbReplaceCurrent: TRadioButton;
|
|
|
|
bnOk: TButton;
|
2023-11-07 17:10:47 +08:00
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
2023-11-07 23:44:02 +08:00
|
|
|
fmImportFavorites: TfmImportFavorites;
|
2023-11-07 17:10:47 +08:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
end.
|