You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3924 8e941d3f-bd1b-0410-a28a-d453659cc2b4
196 lines
4.7 KiB
ObjectPascal
196 lines
4.7 KiB
ObjectPascal
unit mainform;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls, Menus, ExtCtrls, ActnList, Spin, Buttons,
|
|
ButtonPanel, fpspreadsheetgrid, fpspreadsheet, {%H-}fpsallformats;
|
|
|
|
type
|
|
|
|
{ TForm1 }
|
|
|
|
TForm1 = class(TForm)
|
|
BtnOpen: TButton;
|
|
BtnSave: TButton;
|
|
BtnNew: TButton;
|
|
SheetsCombo: TComboBox;
|
|
Label1: TLabel;
|
|
OpenDialog: TOpenDialog;
|
|
Panel1: TPanel;
|
|
Panel2: TPanel;
|
|
SaveDialog: TSaveDialog;
|
|
WorksheetGrid: TsWorksheetGrid;
|
|
procedure BtnNewClick(Sender: TObject);
|
|
procedure BtnOpenClick(Sender: TObject);
|
|
procedure BtnSaveClick(Sender: TObject);
|
|
procedure SheetsComboSelect(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
procedure LoadFile(const AFileName: String);
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
uses
|
|
fpcanvas, fpsutils;
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
procedure TForm1.BtnNewClick(Sender: TObject);
|
|
var
|
|
dlg: TForm;
|
|
edCols, edRows: TSpinEdit;
|
|
begin
|
|
dlg := TForm.Create(nil);
|
|
try
|
|
dlg.Width := 220;
|
|
dlg.Height := 128;
|
|
dlg.Position := poMainFormCenter;
|
|
dlg.Caption := 'New workbook';
|
|
edCols := TSpinEdit.Create(dlg);
|
|
with edCols do begin
|
|
Parent := dlg;
|
|
Left := dlg.ClientWidth - Width - 24;
|
|
Top := 16;
|
|
Value := WorksheetGrid.ColCount - ord(WorksheetGrid.ShowHeaders);
|
|
end;
|
|
with TLabel.Create(dlg) do begin
|
|
Parent := dlg;
|
|
Left := 24;
|
|
Top := edCols.Top + 3;
|
|
Caption := 'Columns:';
|
|
FocusControl := edCols;
|
|
end;
|
|
edRows := TSpinEdit.Create(dlg);
|
|
with edRows do begin
|
|
Parent := dlg;
|
|
Left := edCols.Left;
|
|
Top := edCols.Top + edCols.Height + 8;
|
|
Value := WorksheetGrid.RowCount - ord(WorksheetGrid.ShowHeaders);
|
|
end;
|
|
with TLabel.Create(dlg) do begin
|
|
Parent := dlg;
|
|
Left := 24;
|
|
Top := edRows.Top + 3;
|
|
Caption := 'Rows:';
|
|
FocusControl := edRows;
|
|
end;
|
|
with TButtonPanel.Create(dlg) do begin
|
|
Parent := dlg;
|
|
Align := alBottom;
|
|
ShowButtons := [pbCancel, pbOK];
|
|
end;
|
|
if dlg.ShowModal = mrOK then begin
|
|
WorksheetGrid.NewWorkbook(edCols.Value, edRows.Value);
|
|
SheetsCombo.Items.Clear;
|
|
SheetsCombo.Items.Add('Sheet 1');
|
|
SheetsCombo.ItemIndex := 0;
|
|
end;
|
|
finally
|
|
dlg.Free;
|
|
end;
|
|
end;
|
|
|
|
procedure TForm1.BtnOpenClick(Sender: TObject);
|
|
begin
|
|
if OpenDialog.FileName <> '' then begin
|
|
OpenDialog.InitialDir := ExtractFileDir(OpenDialog.FileName);
|
|
OpenDialog.FileName := ChangeFileExt(ExtractFileName(OpenDialog.FileName), '');
|
|
end;
|
|
if OpenDialog.Execute then begin
|
|
LoadFile(OpenDialog.FileName);
|
|
end;
|
|
end;
|
|
|
|
// Saves sheet in grid to file, overwriting existing file
|
|
procedure TForm1.BtnSaveClick(Sender: TObject);
|
|
var
|
|
err, fn: String;
|
|
begin
|
|
if WorksheetGrid.Workbook = nil then
|
|
exit;
|
|
|
|
if WorksheetGrid.Workbook.Filename <>'' then begin
|
|
fn := AnsiToUTF8(WorksheetGrid.Workbook.Filename);
|
|
SaveDialog.InitialDir := ExtractFileDir(fn);
|
|
SaveDialog.FileName := ChangeFileExt(ExtractFileName(fn), '');
|
|
end;
|
|
|
|
if SaveDialog.Execute then
|
|
begin
|
|
Screen.Cursor := crHourglass;
|
|
try
|
|
WorksheetGrid.SaveToSpreadsheetFile(UTF8ToAnsi(SaveDialog.FileName));
|
|
finally
|
|
Screen.Cursor := crDefault;
|
|
// Show a message in case of error(s)
|
|
err := WorksheetGrid.Workbook.ErrorMsg;
|
|
if err <> '' then
|
|
MessageDlg(err, mtError, [mbOK], 0);
|
|
end;
|
|
end;
|
|
end;
|
|
|
|
procedure TForm1.SheetsComboSelect(Sender: TObject);
|
|
begin
|
|
WorksheetGrid.SelectSheetByIndex(SheetsCombo.ItemIndex);
|
|
end;
|
|
|
|
// Loads first worksheet from file into grid
|
|
procedure TForm1.LoadFile(const AFileName: String);
|
|
var
|
|
err: String;
|
|
begin
|
|
// Load file
|
|
Screen.Cursor := crHourglass;
|
|
try
|
|
try
|
|
WorksheetGrid.LoadFromSpreadsheetFile(UTF8ToSys(AFileName));
|
|
|
|
// Update user interface
|
|
Caption := Format('fpsGrid - %s (%s)', [
|
|
AFilename,
|
|
GetFileFormatName(WorksheetGrid.Workbook.FileFormat)
|
|
]);
|
|
|
|
// Collect the sheet names in the combobox for switching sheets.
|
|
WorksheetGrid.GetSheets(SheetsCombo.Items);
|
|
SheetsCombo.ItemIndex := 0;
|
|
except
|
|
on E:Exception do begin
|
|
// Empty worksheet instead of the loaded one
|
|
WorksheetGrid.NewWorkbook(26, 100);
|
|
Caption := 'fpsGrid - no name';
|
|
SheetsCombo.Items.Clear;
|
|
// Grab the error message
|
|
WorksheetGrid.Workbook.AddErrorMsg(E.Message);
|
|
end;
|
|
end;
|
|
|
|
finally
|
|
Screen.Cursor := crDefault;
|
|
|
|
// Show a message in case of error(s)
|
|
err := WorksheetGrid.Workbook.ErrorMsg;
|
|
if err <> '' then
|
|
MessageDlg(err, mtError, [mbOK], 0);
|
|
end;
|
|
end;
|
|
|
|
|
|
initialization
|
|
{$I mainform.lrs}
|
|
|
|
end.
|
|
|