fpspreadsheet: Update docs
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5245 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
47a09340ee
commit
b75e220a8d
@ -1,25 +1,47 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set DOX_CMD="D:\Programme\Doc-O-Matic 7 Express\domexpress.exe"
|
set DOX_CMD="C:\Program Files (x86)\Doc-O-Matic 7 Express\domexpress.exe"
|
||||||
|
if not exist %DOX_CMD% goto :dox_error
|
||||||
|
|
||||||
|
rem *** Prepare files ***
|
||||||
if not exist output mkdir output
|
if not exist output mkdir output
|
||||||
|
|
||||||
rem Prepare files...
|
|
||||||
path=%PROGRAMFILES%;%PATH%
|
|
||||||
pushd .
|
pushd .
|
||||||
cd ..\..
|
cd ..\..
|
||||||
|
|
||||||
|
if not exist fps.inc goto :next1
|
||||||
ren fps.inc ---fps.inc
|
ren fps.inc ---fps.inc
|
||||||
|
|
||||||
|
:next1
|
||||||
|
if not exist fpspreadsheetctrls.lrs goto :next2
|
||||||
ren fpspreadsheetctrls.lrs ---fpspreadsheetctrls.lrs
|
ren fpspreadsheetctrls.lrs ---fpspreadsheetctrls.lrs
|
||||||
|
|
||||||
|
:next2
|
||||||
popd
|
popd
|
||||||
|
|
||||||
rem Extract help topics and create chm files...
|
rem Extract help topics and create chm files...
|
||||||
|
echo Running %DOX_CMD% -config "HTML Help" fpspreadsheet.dox-express
|
||||||
%DOX_CMD% -config "HTML Help" fpspreadsheet.dox-express > doc-o-matic.txt
|
%DOX_CMD% -config "HTML Help" fpspreadsheet.dox-express > doc-o-matic.txt
|
||||||
|
|
||||||
rem Clean up
|
rem *** Clean up ***
|
||||||
pushd .
|
pushd .
|
||||||
|
|
||||||
cd ..\..
|
cd ..\..
|
||||||
chdir
|
chdir
|
||||||
|
if not exist ---fps.inc goto :next3
|
||||||
ren ---fps.inc fps.inc
|
ren ---fps.inc fps.inc
|
||||||
|
|
||||||
|
:next3
|
||||||
|
if not exist ---fpspreadsheetctrls.lrs goto :next4
|
||||||
ren ---fpspreadsheetctrls.lrs fpspreadsheetctrls.lrs
|
ren ---fpspreadsheetctrls.lrs fpspreadsheetctrls.lrs
|
||||||
|
|
||||||
|
:next4
|
||||||
popd
|
popd
|
||||||
|
|
||||||
if exist output\fpspreadsheet.chm copy output\fpspreadsheet.chm ..\fpspreadsheet-api.chm /y
|
if exist output\fpspreadsheet.chm copy output\fpspreadsheet.chm ..\fpspreadsheet-api.chm /y
|
||||||
|
|
||||||
|
goto :end
|
||||||
|
|
||||||
|
:dox_error
|
||||||
|
echo Doc-O-Matic program not found. Check the script.
|
||||||
|
|
||||||
|
:end
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -42,13 +42,14 @@ object MainForm: TMainForm
|
|||||||
Font.Height = -13
|
Font.Height = -13
|
||||||
Font.Name = 'Arial'
|
Font.Name = 'Arial'
|
||||||
MouseWheelOption = mwGrid
|
MouseWheelOption = mwGrid
|
||||||
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goRowSizing, goColSizing, goEditing, goThumbTracking, goDblClickAutoSize, goHeaderHotTracking, goCellHints]
|
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goRowSizing, goColSizing, goEditing, goThumbTracking, goDblClickAutoSize, goCellHints]
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
RowCount = 101
|
RowCount = 101
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TitleFont.Color = clBlack
|
TitleFont.Color = clBlack
|
||||||
TitleFont.Height = -13
|
TitleFont.Height = -13
|
||||||
TitleFont.Name = 'Arial'
|
TitleFont.Name = 'Arial'
|
||||||
|
TitleStyle = tsNative
|
||||||
OnClickHyperlink = WorksheetGridClickHyperlink
|
OnClickHyperlink = WorksheetGridClickHyperlink
|
||||||
OnMouseWheel = WorksheetGridMouseWheel
|
OnMouseWheel = WorksheetGridMouseWheel
|
||||||
end
|
end
|
||||||
|
@ -775,8 +775,10 @@ begin
|
|||||||
FSaveFormats := GetSpreadFormats(faWrite, priorityFormats);
|
FSaveFormats := GetSpreadFormats(faWrite, priorityFormats);
|
||||||
|
|
||||||
{$IFDEF WINDOWS}
|
{$IFDEF WINDOWS}
|
||||||
if Win32MajorVersion >= 10 then
|
if Win32MajorVersion >= 10 then begin
|
||||||
WorksheetGrid.TitleStyle := tsLazarus;
|
WorksheetGrid.TitleStyle := tsLazarus;
|
||||||
|
Inspector.TitleStyle := tsLazarus;
|
||||||
|
end;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user