doublecmd/src/frames/foptionsmisc.pas
2013-02-24 11:59:42 +00:00

101 lines
2.7 KiB
ObjectPascal

{
Double Commander
-------------------------------------------------------------------------
Miscellaneous options page
Copyright (C) 2006-2011 Koblov Alexander (Alexx2000@mail.ru)
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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
unit fOptionsMisc;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, StdCtrls, Spin, DividerBevel, fOptionsFrame;
type
{ TfrmOptionsMisc }
TfrmOptionsMisc = class(TOptionsEditor)
btnThumbCompactCache: TButton;
chkGoToRoot: TCheckBox;
chkThumbSave: TCheckBox;
chkShowWarningMessages: TCheckBox;
dblThumbnails: TDividerBevel;
gbExtended: TGroupBox;
lblThumbPixels: TLabel;
lblThumbSize: TLabel;
lblThumbSeparator: TLabel;
speThumbWidth: TSpinEdit;
speThumbHeight: TSpinEdit;
procedure btnThumbCompactCacheClick(Sender: TObject);
protected
procedure Load; override;
function Save: TOptionsEditorSaveFlags; override;
public
class function GetIconIndex: Integer; override;
class function GetTitle: String; override;
end;
implementation
{$R *.lfm}
uses
uGlobs, uLng, uThumbnails;
{ TfrmOptionsMisc }
class function TfrmOptionsMisc.GetIconIndex: Integer;
begin
Result := 14;
end;
class function TfrmOptionsMisc.GetTitle: String;
begin
Result := rsOptionsEditorMiscellaneous;
end;
procedure TfrmOptionsMisc.btnThumbCompactCacheClick(Sender: TObject);
begin
TThumbnailManager.CompactCache;
end;
procedure TfrmOptionsMisc.Load;
begin
chkShowWarningMessages.Checked := gShowWarningMessages;
chkThumbSave.Checked := gThumbSave;
speThumbWidth.Value := gThumbSize.cx;
speThumbHeight.Value := gThumbSize.cy;
chkGoToRoot.Checked := gGoToRoot;
end;
function TfrmOptionsMisc.Save: TOptionsEditorSaveFlags;
begin
Result := [];
gShowWarningMessages := chkShowWarningMessages.Checked;
gThumbSave := chkThumbSave.Checked;
gThumbSize.cx := speThumbWidth.Value;
gThumbSize.cy := speThumbHeight.Value;
gGoToRoot := chkGoToRoot.Checked;
end;
end.