mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-11 18:08:35 +02:00
IDE: clean up
git-svn-id: trunk@42302 -
This commit is contained in:
parent
46ea5ac433
commit
c16df66c27
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -3759,7 +3759,6 @@ designer/designer.pp svneol=native#text/pascal
|
||||
designer/designermenu.lfm svneol=native#text/plain
|
||||
designer/designermenu.pp svneol=native#text/pascal
|
||||
designer/designerprocs.pas svneol=native#text/pascal
|
||||
designer/filesystem.pp svneol=native#text/pascal
|
||||
designer/framedesigner.pas svneol=native#text/pascal
|
||||
designer/jitforms.pp svneol=native#text/pascal
|
||||
designer/menueditorform.lfm svneol=native#text/pascal
|
||||
|
@ -1,124 +0,0 @@
|
||||
{
|
||||
/***************************************************************************
|
||||
FileSystem.pp
|
||||
-------------------
|
||||
|
||||
|
||||
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
***************************************************************************
|
||||
* *
|
||||
* This source 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 code 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. *
|
||||
* *
|
||||
* A copy of the GNU General Public License is available on the World *
|
||||
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
|
||||
* obtain it by writing to the Free Software Foundation, *
|
||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
* *
|
||||
***************************************************************************
|
||||
}
|
||||
unit FileSystem;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
classes;
|
||||
|
||||
type
|
||||
|
||||
{ TFileSystem
|
||||
FileAgeUTF8 -- Returns the date/time of the file in a longint.
|
||||
|
||||
GetFileStream -- Creates and returns a TStream for the Filename
|
||||
passed into it.
|
||||
|
||||
RenameFileUTF8 -- Renames a file. Returns TRUE is successful
|
||||
|
||||
IsReadOnly -- Returns TRUE if file is READONLY.
|
||||
|
||||
DeleteFileUTF8 -- Returns TRUE if successful;
|
||||
|
||||
FileExistsUTF8 -- Returns TRUE if the file exists
|
||||
|
||||
GetBackupFileName -- Returns a string which represents the backup name for
|
||||
the filename passed into the function. It uses the
|
||||
name passed into it to calculate the backup name.
|
||||
}
|
||||
|
||||
TFileSystem = class(TAbstractFileSystem)
|
||||
private
|
||||
FileStream : TFileStream;
|
||||
public
|
||||
constructor Create;
|
||||
Function FileAgeUTF8(const Filename : TFilename) : Longint; override;
|
||||
Function GetFileStream(const Filename : TFilename; Mode : Integer): TStream; override;
|
||||
Function RenameFileUTF8(const Oldname, Newname : TFilename): Boolean; override;
|
||||
Function IsReadOnly(const Filename : TFilename): Boolean; override;
|
||||
Function DeleteFileUTF8(const Filename : TFilename): Boolean; override;
|
||||
Function FileExistsUTF8(const Filename : TFilename) : Boolean; override;
|
||||
Function GetBackupFileName(const Filename : TFilename): TFilename; override;
|
||||
end;
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
constructor TFileSystem.Create;
|
||||
Begin
|
||||
//don't create the file stream here. It's created by the GEtFileStream
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.FileAgeUTF8(const Filename : TFilename) : Longint;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.GetFileStream(const Filename : TFilename; Mode : Integer): TStream;
|
||||
Begin
|
||||
if Assigned(FileStream) then
|
||||
Begin
|
||||
|
||||
end;
|
||||
FFileStream := TFileStream.Create(UTF8ToSys(FileName),Mode);
|
||||
Result := FFileStream;
|
||||
end;
|
||||
|
||||
Function TFileSystem.RenameFileUTF8(const Oldname, Newname : TFilename): Boolean;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.IsReadOnly(const Filename : TFilename): Boolean;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.DeleteFileUTF8(const Filename : TFilename): Boolean;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.FileExistsUTF8(const Filename : TFilename) : Boolean;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
Function TFileSystem.GetBackupFileName(const Filename : TFilename): TFilename;
|
||||
Begin
|
||||
|
||||
end;
|
||||
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user