martin
cadda54bee
SynEdit, Examples: fix syn hl example / register attributes
...
git-svn-id: trunk@52009 -
2016-03-21 19:59:59 +00:00
bart
e016dd6bb6
IDE: Fix not showing Chars > Chr(127) in ANSI Tab of CharactermapDlg. Improve ANSI charater map. Patch by wp, minor modifications by me. Issue #0029856 .
...
git-svn-id: trunk@52008 -
2016-03-21 15:41:23 +00:00
ondrej
764da242fd
lcl: add copyright info for LCL images, Issue #29869
...
git-svn-id: trunk@52007 -
2016-03-21 14:10:57 +00:00
ondrej
e26b2a0a3c
lcl: change anchor space parameters to TSpacingSize. Issue #29567
...
git-svn-id: trunk@52006 -
2016-03-21 11:22:28 +00:00
mattias
de6e0945f8
LCL: TLazIntfImage.Assign: copy DataDescription
...
git-svn-id: trunk@52005 -
2016-03-20 23:46:20 +00:00
bart
5d6e5012ea
LazFileUtils: fix uninitialized result in ChompPathDelim. Issue #0029866 .
...
git-svn-id: trunk@52004 -
2016-03-20 22:08:06 +00:00
mattias
e07c89f611
translations: German: updates from Swen Heinig
...
git-svn-id: trunk@52003 -
2016-03-20 16:56:43 +00:00
mattias
52b89347f6
lcl: updated makefiles
...
git-svn-id: trunk@52002 -
2016-03-20 13:05:51 +00:00
mattias
25f7a697e5
updated makefiles
...
git-svn-id: trunk@52001 -
2016-03-20 11:19:40 +00:00
mattias
c6262f1fed
lazbuild: create-makefile: hide output depending on verbosity, check fileage of fpmake
...
git-svn-id: trunk@52000 -
2016-03-20 11:19:13 +00:00
mattias
ba03ed5199
updated makefile
...
git-svn-id: trunk@51999 -
2016-03-20 10:58:08 +00:00
mattias
f2e4d7db58
lazutils: comments
...
git-svn-id: trunk@51998 -
2016-03-20 10:55:55 +00:00
ondrej
f6f9223b30
win32: spin: disable margins
...
git-svn-id: trunk@51988 -
2016-03-19 13:03:55 +00:00
ondrej
b89b37d107
win32: edit: disable margins
...
git-svn-id: trunk@51985 -
2016-03-19 12:53:18 +00:00
ondrej
9d06134900
ide: revert r51944 #34015a1f71, issue #29832
...
git-svn-id: trunk@51984 -
2016-03-19 08:30:52 +00:00
bart
7ccb2f58d2
Win32: first attempt to implement TWin32WidgetSet.FontIsMonoSpace. Issue #0028898 .
...
git-svn-id: trunk@51983 -
2016-03-18 16:45:35 +00:00
ondrej
fcdb715877
win32: spin edit: reverting accidentially commited code in r51981 #1d676f1919
...
git-svn-id: trunk@51982 -
2016-03-18 13:56:59 +00:00
ondrej
1d676f1919
win32: spin edit: erase not painted space between buttons.
...
git-svn-id: trunk@51981 -
2016-03-18 13:53:38 +00:00
jesus
54cfaed2a6
LCL, grids: fixes MouseToGridZone which in some cases failed to return gzInvalid (related to r51914 #5224c3c339), fixes issue #29842
...
git-svn-id: trunk@51980 -
2016-03-17 21:15:58 +00:00
sekelsenmat
88029919d6
fpvectorial: Improves the positioning of SVG inside tables
...
git-svn-id: trunk@51979 -
2016-03-17 12:20:00 +00:00
bart
7c9fc905a6
LazUtf8: In UTF8CompareStrCollated only call AnsiCompareStr is ACP_RTL is defined, since in all other cases
...
AnsiCompareStr = widestringmanager.CompareStrAnsiStringProc = UTF8CompareStr.
If ACP_RTL is not defined call Utf8CompareStr, since this is now does proper collation and is faster than
converting to WideString.
git-svn-id: trunk@51978 -
2016-03-17 12:07:57 +00:00
bart
77e5428b3f
LazUtf8: firts attempt to rewrite Utf8CompareStr and Utf8CompareText so that it's results will be more consistent with
...
AnsiCompareStr/WideCompareStr and AnsiCompareTex/WideCompareText.
(
The old implementation was in effect a copy of CompareStr and, this made the claim about proper collation in
Utf8CompareText (which uses Utf8CompareStr) rather ludicrous.
The new implementaion is slower, mainly becaus of the fact we cannot use CompareMemrange/CompareByte anymore,
and we have to iterate the bytes ourselves. This fact alone contributes much more to the loss in speed than
the fact we use WideCompareStr on the 2 differing codepoints:
- iterating in a for loop: adss a factor of appr. 10 to the time needed
- using the final WideCompareStr adds a factor of about 1.6 to the time meeded.
Because of the slowdown in speed in Utf8CompareStr, Utf8CompareText now calls WideCompareText directly, which is
now appr. the same speed as converting to lowercase and then calling Utf8CompareStr
)
git-svn-id: trunk@51977 -
2016-03-17 11:38:56 +00:00
ondrej
c61e060c8f
win32: spin edit: disable WM_ERASEBKGND - solves painting issues and flicker
...
git-svn-id: trunk@51976 -
2016-03-17 11:18:26 +00:00
ondrej
0c8bbd0f25
win32: spin edit: fix placement for bsNone
...
git-svn-id: trunk@51975 -
2016-03-17 10:55:10 +00:00
juha
33013ddac8
LCL: Don't set Parent for a standalone form. Issue #18710 , patch from cobines.
...
git-svn-id: trunk@51974 -
2016-03-17 10:52:19 +00:00
bart
b192fb9760
LazUtf8: Refactor UTF8FindNearestCharStart. Resolves Issue #0029851 .
...
git-svn-id: trunk@51973 -
2016-03-17 10:42:52 +00:00
bart
34be9ae2d0
LazUtf8: implement Utf8TryFindCodepointStart.
...
git-svn-id: trunk@51972 -
2016-03-17 10:39:52 +00:00
ondrej
4642421795
win32: better spin edit (spin placed inside edit)
...
git-svn-id: trunk@51971 -
2016-03-17 10:26:20 +00:00
ondrej
ae57408e17
docs: add fugue icons to acknowledgements
...
git-svn-id: trunk@51970 -
2016-03-17 08:58:39 +00:00
ondrej
705328d2e1
components: datetime picker: rewrite drop down drawing, use themes by default
...
git-svn-id: trunk@51969 -
2016-03-17 08:06:00 +00:00
ondrej
516b7dd2cc
components: datetime picker: add FlatButton property
...
git-svn-id: trunk@51968 -
2016-03-17 07:04:35 +00:00
ondrej
6850c3787f
components: datetimepicker: invoke Change/OnChange also when DateTime was changed programatically (like edit).
...
git-svn-id: trunk@51967 -
2016-03-17 06:58:50 +00:00
ondrej
bc17ed1345
lcl: updown: add flat property.
...
git-svn-id: trunk@51966 -
2016-03-17 06:57:22 +00:00
sekelsenmat
4111ab4964
fpvectorial: Multiline text finally fixed without breaking images
...
git-svn-id: trunk@51965 -
2016-03-16 20:46:21 +00:00
sekelsenmat
7ee06844a2
fpvectorial: Minor changes
...
git-svn-id: trunk@51964 -
2016-03-16 20:41:16 +00:00
sekelsenmat
a5e03310ce
fpvectorial: Fixes bug where sometimes text would be drawn with white font due to lack of propagation of background color through table drawing
...
git-svn-id: trunk@51963 -
2016-03-16 20:25:57 +00:00
juha
31428e33d6
LCL: Fix the unfired OnClick event issue better. Issue #29845 , patch from FTurtle.
...
git-svn-id: trunk@51962 -
2016-03-16 12:51:20 +00:00
sekelsenmat
feaab08673
fpvectorial: Reverts fix for multiline text
...
git-svn-id: trunk@51961 -
2016-03-16 11:28:29 +00:00
sekelsenmat
3afa6fb8de
fpvectorial: Fixes issue introduced by last commit
...
git-svn-id: trunk@51960 -
2016-03-16 11:20:06 +00:00
sekelsenmat
d7aa15e3e2
fpvectorial-html: (last commit fixed inverted vectorial image rendering) Fixes multiline text inside table cells
...
git-svn-id: trunk@51959 -
2016-03-16 11:11:00 +00:00
sekelsenmat
5aa799810a
fpvectorial-html: Fixes bug in positioning of raster image inside table, fixes crash in table without caption
...
git-svn-id: trunk@51958 -
2016-03-16 10:59:05 +00:00
juha
d93952201f
LazUtils: Fix compilation on darwin. Issue #29843 , patch from lks.
...
git-svn-id: trunk@51957 -
2016-03-16 07:05:26 +00:00
ondrej
ad30a9f3e2
components: datetime picker: keep parent form active when calendar window is shown (win32 only, should do nothing on other OS)
...
git-svn-id: trunk@51956 -
2016-03-15 21:24:58 +00:00
juha
1ec8af0aab
LCL: Clear variables in TRadioGroup so that OnClick gets fired. Issue #29845 , patch from Luca Bertoncini.
...
git-svn-id: trunk@51955 -
2016-03-15 21:16:50 +00:00
juha
5d75afb30f
Order uses sections.
...
git-svn-id: trunk@51954 -
2016-03-15 21:16:43 +00:00
sekelsenmat
421e396441
fpvectorial: Improves html with images on tables
...
git-svn-id: trunk@51953 -
2016-03-15 16:26:12 +00:00
sekelsenmat
76f8f165ea
fpvectorial: Fixes crash
...
git-svn-id: trunk@51952 -
2016-03-15 16:04:51 +00:00
sekelsenmat
ee424ff37f
fpvectorial-html: Implements support for inline html text, fixes column size construction when Page size is zero (unknown), fixes support for </br>
...
git-svn-id: trunk@51951 -
2016-03-15 15:17:31 +00:00
juha
4b11aaff8c
Designer: Prevent copying/cutting TCustomTabControl and TCustomPage. Can lead to halt or crash.
...
git-svn-id: trunk@51950 -
2016-03-15 11:22:28 +00:00
juha
2ac2eea1d5
IDE: Minor optimization, keep value from Designer.CanCopy in boolean variables.
...
git-svn-id: trunk@51949 -
2016-03-15 11:22:26 +00:00