mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
148 lines
4.5 KiB
ObjectPascal
148 lines
4.5 KiB
ObjectPascal
{
|
|
Double Commander
|
|
-------------------------------------------------------------------------
|
|
Files views 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 fOptionsFilesViews;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, StdCtrls,
|
|
fOptionsFrame;
|
|
|
|
type
|
|
|
|
{ TfrmOptionsFilesViews }
|
|
|
|
TfrmOptionsFilesViews = class(TOptionsEditor)
|
|
cbDateTimeFormat: TComboBox;
|
|
cbDirBrackets: TCheckBox;
|
|
cbListFilesInThread: TCheckBox;
|
|
cbLoadIconsSeparately: TCheckBox;
|
|
cbShortFileSizeFormat: TCheckBox;
|
|
cbShowSystemFiles: TCheckBox;
|
|
cbSortMethod: TComboBox;
|
|
cbSpaceMovesDown: TCheckBox;
|
|
cbCaseSensitivity: TComboBox;
|
|
cbSortFolderMode: TComboBox;
|
|
gbFormatting: TGroupBox;
|
|
gbSorting: TGroupBox;
|
|
gbMisc: TGroupBox;
|
|
lblSortFolderMode: TLabel;
|
|
lblCaseSensitivity: TLabel;
|
|
lblDateTimeExample: TLabel;
|
|
lblDateTimeFormat: TLabel;
|
|
lblSortMethod: TLabel;
|
|
procedure cbDateTimeFormatChange(Sender: TObject);
|
|
protected
|
|
procedure Init; override;
|
|
procedure Load; override;
|
|
function Save: TOptionsEditorSaveFlags; override;
|
|
public
|
|
class function GetIconIndex: Integer; override;
|
|
class function GetTitle: String; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
uses
|
|
uDCUtils, uGlobs, uLng, uTypes;
|
|
|
|
{ TfrmOptionsFilesViews }
|
|
|
|
procedure TfrmOptionsFilesViews.cbDateTimeFormatChange(Sender: TObject);
|
|
begin
|
|
lblDateTimeExample.Caption:= FormatDateTime(cbDateTimeFormat.Text, Now);
|
|
end;
|
|
|
|
procedure TfrmOptionsFilesViews.Init;
|
|
begin
|
|
ParseLineToList(rsOptSortMethod, cbSortMethod.Items);
|
|
ParseLineToList(rsOptSortCaseSens, cbCaseSensitivity.Items);
|
|
ParseLineToList(rsOptSortFolderMode, cbSortFolderMode.Items);
|
|
end;
|
|
|
|
procedure TfrmOptionsFilesViews.Load;
|
|
begin
|
|
case gSortCaseSensitivity of
|
|
cstNotSensitive: cbCaseSensitivity.ItemIndex := 0;
|
|
cstLocale: cbCaseSensitivity.ItemIndex := 1;
|
|
cstCharValue: cbCaseSensitivity.ItemIndex := 2;
|
|
end;
|
|
if not gSortNatural then
|
|
cbSortMethod.ItemIndex:= 0
|
|
else
|
|
cbSortMethod.ItemIndex:= 1;
|
|
case gSortFolderMode of
|
|
sfmSortNameShowFirst: cbSortFolderMode.ItemIndex := 0;
|
|
sfmSortLikeFileShowFirst: cbSortFolderMode.ItemIndex := 1;
|
|
sfmSortLikeFile: cbSortFolderMode.ItemIndex := 2;
|
|
end;
|
|
cbShortFileSizeFormat.Checked :=gShortFileSizeFormat;
|
|
cbDateTimeFormat.Text := gDateTimeFormat;
|
|
lblDateTimeExample.Caption:= FormatDateTime(cbDateTimeFormat.Text, Now);
|
|
cbSpaceMovesDown.Checked := gSpaceMovesDown;
|
|
cbDirBrackets.Checked := gDirBrackets;
|
|
cbShowSystemFiles.Checked:= gShowSystemFiles;
|
|
cbListFilesInThread.Checked:= gListFilesInThread;
|
|
cbLoadIconsSeparately.Checked:= gLoadIconsSeparately;
|
|
end;
|
|
|
|
function TfrmOptionsFilesViews.Save: TOptionsEditorSaveFlags;
|
|
begin
|
|
case cbCaseSensitivity.ItemIndex of
|
|
0: gSortCaseSensitivity := cstNotSensitive;
|
|
1: gSortCaseSensitivity := cstLocale;
|
|
2: gSortCaseSensitivity := cstCharValue;
|
|
end;
|
|
gSortNatural := (cbSortMethod.ItemIndex = 1);
|
|
case cbSortFolderMode.ItemIndex of
|
|
0: gSortFolderMode := sfmSortNameShowFirst;
|
|
1: gSortFolderMode := sfmSortLikeFileShowFirst;
|
|
2: gSortFolderMode := sfmSortLikeFile;
|
|
end;
|
|
gShortFileSizeFormat := cbShortFileSizeFormat.Checked;
|
|
gDateTimeFormat := cbDateTimeFormat.Text;
|
|
gSpaceMovesDown := cbSpaceMovesDown.Checked;
|
|
gDirBrackets := cbDirBrackets.Checked;
|
|
gShowSystemFiles:= cbShowSystemFiles.Checked;
|
|
gListFilesInThread:= cbListFilesInThread.Checked;
|
|
gLoadIconsSeparately:= cbLoadIconsSeparately.Checked;
|
|
|
|
Result := [];
|
|
end;
|
|
|
|
class function TfrmOptionsFilesViews.GetIconIndex: Integer;
|
|
begin
|
|
Result := 29;
|
|
end;
|
|
|
|
class function TfrmOptionsFilesViews.GetTitle: String;
|
|
begin
|
|
Result := rsOptionsEditorFilesViews;
|
|
end;
|
|
|
|
end.
|
|
|