Commit Graph

66897 Commits

Author SHA1 Message Date
Martin
1f072c2e58 Installer, Win: Updating URLs to use lazarus.ide.org (including url in image) 2023-12-22 18:39:25 +01:00
dsiders
b583b3fa04 Docs: LCL/imglist. Updates Scaled and OnGetWidthForPPI topics in TCustomImageList.
* Restores details about OnGetWidthForPPI removed in the previous commit from the TCustomImageList.Scaled topic.
* Adds a code example in the TCustomImageList.OnGetWidthForPPI topic,
2023-12-22 16:09:27 +00:00
Maxim Ganetsky
1783ee35d1 LCL-Gtk2: fixed handling of dragging image coordinates when it is dragged to non-client widget area, patch by Alexander (Rouse_) Bagel, issue #40658 2023-12-22 18:47:19 +03:00
wp_xyz
4feb9205c3 TurboPower_Ipro: fix compilation of sample projects for printpreview support. 2023-12-22 13:57:47 +01:00
wp_xyz
73ebfa7da7 TurboPower_IPro: Replaced missing laztitle.png image in sample project by splash_logo.png 2023-12-22 13:22:01 +01:00
dsiders
eb3b34bd97 Docs: LazUtils/lazutf8. Fixes invalid identifiers for topics.
* TUTF8TrimFlag.u8u8tKeepTabs => TUTF8TrimFlag.u8tKeepTabs
* TUTF8TrimFlag.u8u8tKeepLineBreaks => TUTF8TrimFlag.u8tKeepLineBreaks
2023-12-22 07:35:11 +00:00
Martin
94f76cd340 SynEdit: PasHighLighter, fix empty "type" in "class" blocks followed by class-section 2023-12-21 17:41:45 +01:00
Martin
cca9327230 SynEdit: PasHighLighter, fix "type" in "class" blocks. Broken in 9db0c4e54e 2023-12-21 17:32:29 +01:00
Maxim Ganetsky
c4773c0a42 IDE: Code Templates dialog improvements by n7800, issue #40654 2023-12-21 03:24:26 +03:00
dsiders
b2b86ebaef Docs: LCL/imglist. Updates topics based on forum suggestions.
* https://forum.lazarus.freepascal.org/index.php/topic,65576.0.html
* Updates:
* TCustomImageList.WidthForPPI
* TCustomImageList.Scaled
2023-12-20 02:30:21 +00:00
Martin
9db0c4e54e SynEdit: PasHighLighter, fix parsing "=" after "generic foo<_A>" (without spaces, looks like ">=") 2023-12-19 22:31:19 +01:00
Martin
3d0e418a24 SynEdit: PasHighLighter, recognize TFoo = type class|object|record 2023-12-19 22:31:19 +01:00
rich2014
3d48d3f0e6 Cocoa: Fix the issue where the Key Modifiers Flag was not set correctly after DragDrop
Cocoa enable separate RunLoop when DragDrop
2023-12-19 23:59:29 +08:00
mattias
0b4013a8fe ide: fixed delting EndOfTokenChars at end of code template, fixed #40498 2023-12-19 10:38:35 +01:00
mattias
3f6dc2d6ad codetools: clean up 2023-12-19 09:46:35 +01:00
mattias
dacecb3f91 codetools: started test for namespaced units in fpc sources 2023-12-18 10:12:02 +01:00
rich2014
f52d11eb6e Cocoa/Scroller: fix issues, Merge branch 'cocoa/scroller' 2023-12-17 18:14:10 +08:00
rich2014
fc3071a276 Cocoa/Scroller: replace deprecated functions 2023-12-17 18:08:01 +08:00
rich2014
9f16f34839 Cocoa/Scroller: updateDocSize() refactored 2023-12-17 17:44:05 +08:00
rich2014
9a71c99c2c Cocoa/Scroller: Fix missing updates in setHasVerticalScroller() / setHasHorizontalScroller() 2023-12-17 17:38:30 +08:00
rich2014
74ea280dc4 Cocoa/Scroller: Fix position and size error in updateDocSize() 2023-12-17 16:43:26 +08:00
Martin
eec994965e Merge branch 'fpdebug-avr-unwind-fixes' into 'main'
Minor fixes to AVR stack unwinding code.

See merge request freepascal.org/lazarus/lazarus!262
2023-12-16 20:06:36 +00:00
ccrause
ceeaf52439 Minor fixes to unwinding code. 2023-12-16 20:00:36 +00:00
Maxim Ganetsky
4f7e9aee22 LCL-Gtk2: fixed cursor changing when performing a dragging action, patch from Alexander (Rouse_) Bagel, issue #40651 2023-12-16 20:13:05 +03:00
rich2014
0bd3e44eb4 Cocoa/TabControl: improve Robustness 2023-12-16 18:09:06 +08:00
wp_xyz
ac40dd08e1 Revert unintentional changes in commit 33801729a2 2023-12-15 15:55:13 +01:00
wp_xyz
0933dadcaf TAChart: Improved alignment of legend text when single- and multi-line legend items are mixed. 2023-12-15 15:44:40 +01:00
wp_xyz
33801729a2 TAChart: Add event OnGetMarkText to TChartSeries providing more parameters. Deprecate OnGetMark. Issue #40647. 2023-12-15 15:07:11 +01:00
dsiders
0a423300ae Docs: LazUtils/lazfileutils. Updates the ForceDirectoriesUTF8 topic for changes in 5335e147.
* Related to https://gitlab.com/freepascal.org/fpc/source/-/issues/40558
2023-12-15 01:14:14 +00:00
Bart
5335e14783 Fix ForceDirectoriesUtf8 for Windows Apps. See related fpc bugreport https://gitlab.com/freepascal.org/fpc/source/-/issues/40558. 2023-12-14 17:54:29 +01:00
wp_xyz
78816cede1 FPDoc Editor: Activate new "InsertURLTag" icon. 2023-12-14 17:00:08 +01:00
wp_xyz
b2f90d2880 FPDoc Editor: New button images, by Roland Hahn. 2023-12-14 15:57:14 +01:00
dsiders
0601e5d055 Docs: LCL/dbgrids. Updates the TCustomDBGrid.OptionsExtra topic to describe actions performed when the property is changed. 2023-12-14 03:29:21 +00:00
Maxim Ganetsky
e4acac0e1a Designer: Avoid artifacts when moving non-visual components by keyboard. Patch by n7800, issue #40643. 2023-12-14 02:27:31 +03:00
dsiders
b194126eca Docs: LCL/controls. Updates TDragImageListResolution.ShowDragImage topic for changes in 85aa06c1. Issue #40640. 2023-12-13 20:26:38 +00:00
Martin
7934bce59f SynEdit: fixed uninitialized result for keyword "public". Introduced in cbf59cc75a 2023-12-13 17:39:59 +01:00
Martin
fb19ff053a Merge branch 'lazarus-codecompletion_dpi'
See merge request freepascal.org/lazarus/lazarus!249
2023-12-13 16:38:39 +01:00
Martin
31f39995af SourceEdit, completion: Scale icons to match font height. 2023-12-13 16:31:48 +01:00
Martin
2f37d08e22 fix 2023-12-13 16:31:48 +01:00
regs01
a395296c21 High DPI scaling for Code Completion icons 2023-12-13 16:31:48 +01:00
Željan Rikalo
228481190b Qt,Qt5,Qt6: fix for hiding dragimagelist manually.issue #40644 2023-12-13 16:07:31 +01:00
Željan Rikalo
85aa06c1d8 LCL: proper initialization of dragimagelist position in ShowDragImage manually. Issue #40640 2023-12-13 16:02:55 +01:00
Martin
092cae8ceb Merge branch 'avr-fix-lpm-spm' into 'main'
FPDebug - [AVR] fix formatting of variable operand instructions elpm, lpm and spm.

See merge request freepascal.org/lazarus/lazarus!261
2023-12-12 23:44:01 +00:00
ccrause
135d8c1094 FPDebug - [AVR] fix formatting of variable operand instructions elpm, lpm and spm. 2023-12-12 18:57:59 +02:00
Maxim Ganetsky
6b54bbc996 Merge branch 'Update-Qt6pas6-Windows' into 'main'
Update Version of Windows dll to qt6pas6

See merge request freepascal.org/lazarus/lazarus!260
2023-12-12 14:25:54 +00:00
0x4A4D00
e84cc69788 Update Version of Windows qt6pas6 dll 2023-12-12 13:56:48 +00:00
Martin
736f8182f9 * Merge branch 'lazarus-fpdebug-readregisterasaddress' into 'main'
See merge request freepascal.org/lazarus/lazarus!43
2023-12-12 13:21:03 +01:00
Martin
c2e59c7885 FpDebug,LazDebugger: changes to MemManager to allow avr-read-register-as-address 2023-12-12 13:15:32 +01:00
ccrause
86c274950e Implement a ReadRegisterasAddress MemManager method so that it can be overridden for AVR to read register based addresses from two consecutive registers. 2023-12-12 13:15:32 +01:00
Martin
e902195110 Merge branch 'avr-stack-unwind-tweak' into 'main'
FPDebug - AVR tweak stack unwinding

See merge request freepascal.org/lazarus/lazarus!259
2023-12-12 12:14:52 +00:00