lazarus/lcl/include
2010-06-18 03:28:25 +00:00
..
actionlink.inc lcl: make TActionLink.SetImageIndex argument delphi compatible TImageIndex -> Integer 2009-11-23 15:08:19 +00:00
application.inc LCL: fixed FindApplicationComponent to ignore designer forms 2010-06-12 08:40:58 +00:00
applicationproperties.inc lcl: properly initialize and finalize more application properties handlers 2010-01-30 17:48:30 +00:00
bevel.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
bitbtn.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
bitmap.inc
bitmapcanvas.inc
boundlabel.inc
brush.inc lcl: use GetSysColorBrush if solid brush needs to be created with system color 2010-05-02 09:25:41 +00:00
buttoncontrol.inc
buttonglyph.inc
buttons.inc lcl: move button flags to TCustomButton.CreateParams 2010-05-14 09:16:51 +00:00
canvas.inc LCL: TCanvas.RealizeAntialiasing: do not call changed 2010-05-15 11:42:47 +00:00
clipbrd.inc
colorbutton.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
colordialog.inc
commondialog.inc
containedaction.inc
control.inc LCL: fixed unreferencing in TControl, bug #16571 2010-06-18 03:28:25 +00:00
controlactionlink.inc
controlcanvas.inc LCL: added warning when painting outside of paint message 2010-05-27 16:02:21 +00:00
controlscrollbar.inc LCL: TScrollingWincontrol: fixed GetLogicalClientRect - only use Range if bar is visible, use preferredsize if Parent.ChildSizing.Layout<>cclNone 2010-05-22 11:52:45 +00:00
controlsproc.inc
cursorimage.inc lcl: native resource support: 2009-12-26 15:10:14 +00:00
customaction.inc
customactionlist.inc lcl: add TActionListEnumerator class and TCustomActionList.GetEnumerator method 2009-11-03 15:43:49 +00:00
custombitmap.inc lcl, win32: implement loading icon,cursor from an icon handle (HICON) (GetInfoInfo needs to be implement for other widgetsets to support on other platforms), issue #0016356 2010-04-28 08:52:16 +00:00
customcheckbox.inc lcl, win32, wince: move button controls flags into CreateParams methods 2010-05-17 01:10:18 +00:00
customcheckgroup.inc lcl: simplify and cleanup TGraphic.DefineProperties, TPicture.DefineProperties 2009-11-26 01:52:35 +00:00
customcombobox.inc lcl: move combobox style from win32 to LCL createparams, override unsupported styles in wince 2010-05-31 06:22:37 +00:00
customcontrol.inc lcl: properly release control resources on TWinControl.DestroyWnd: 2009-07-17 02:44:31 +00:00
customdbcombobox.inc LCL, improvement for dblookup components, now they work without datasource/datafield, from Leslie Kaye, issue #13868 2009-07-22 20:15:17 +00:00
customdblistbox.inc
customdockform.inc LCL: TCalculatorForm, TCustomDockForm, TSynBaseCompletionForm, ShowInputDialog: combine creation 2010-04-05 00:03:39 +00:00
customedit.inc LCL: Fix Memo/Edit, preserve caret when dealing with ecUpperCase,ecLowerCase / issue #16490 2010-05-17 10:31:43 +00:00
customform.inc anchordocking: started default layouts 2010-06-15 15:02:08 +00:00
customframe.inc LCL: do not autosize a root frame at designtime 2010-05-31 20:27:16 +00:00
customgroupbox.inc lcl, win32, wince: move button controls flags into CreateParams methods 2010-05-17 01:10:18 +00:00
customimage.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
customlabel.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
customlabelededit.inc
customlistbox.inc lcl: don't set ListBox BorderStyle after handle creation since widgetset already does. 2010-05-14 03:51:18 +00:00
customlistview.inc lcl: fix for ownerdata list view selection bug #16437 2010-05-10 19:08:27 +00:00
custommemo.inc lcl,win32,wince: move edit control flags to createparams 2010-05-17 07:34:07 +00:00
customnotebook.inc lcl: publish TPageControl.MultiLine property and map it to TCustomNotebook.Options nboMultiLine 2010-05-19 08:40:32 +00:00
custompage.inc lcl: TCustomPage.IsControlVisible, TCustomPage.HandleObjectShouldBeVisible must take TCustomPage.Visible setting into account (Samuel Herzog note in issue #0009344) 2010-05-14 17:05:56 +00:00
custompanel.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
customsplitter.inc LCL: TSplitter: protected SetResizeAnchor 2010-06-01 16:42:58 +00:00
customstatictext.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
customtrayicon.inc lcl: add symmetric RemoveFreeNotification for some FreeNotification calls 2009-09-25 14:13:31 +00:00
customupdown.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
dbcalendar.inc
dbcheckbox.inc
dbcombobox.inc
dbcustomnavigator.inc LCL: default DBNavigator hints now get localized at designtime and runtime automatically (of course only if lclstrconsts.*.po file is present) 2010-05-11 22:27:17 +00:00
dbedit.inc lcl: (dbedit) Disable mask and show the TField.DisplayText when not focused and Enable mask and show TField.Text when has focus. This allows to display a value not compatible with the mask when not editing (Delphi compatible) 2010-05-09 02:30:19 +00:00
dbgroupbox.inc
dbimage.inc lcl: remove few db controls properties which should not be saved/loaded with forms 2010-03-09 03:00:24 +00:00
dblistbox.inc lcl: remove few db controls properties which should not be saved/loaded with forms 2010-03-09 03:00:24 +00:00
dblookup.inc LCL, fix exception caused by dblookup controls opening dataset, from Leslie Kaye, issue #14197 2009-08-10 18:10:51 +00:00
dblookupcombobox.inc LCL, improvement for dblookup components, now they work without datasource/datafield, from Leslie Kaye, issue #13868 2009-07-22 20:15:17 +00:00
dblookuplistbox.inc LCL, improvement for dblookup components, now they work without datasource/datafield, from Leslie Kaye, issue #13868 2009-07-22 20:15:17 +00:00
dbmemo.inc lcl: remove few db controls properties which should not be saved/loaded with forms 2010-03-09 03:00:24 +00:00
dbradiogroup.inc
dbtext.inc lcl: remove few db controls properties which should not be saved/loaded with forms 2010-03-09 03:00:24 +00:00
docktree.inc IDEIntf: started TIDEWindowDefaultLayout 2010-05-22 10:59:28 +00:00
dockzone.inc
dragdock.inc
dragimagelist.inc
dragmanager.inc LCL: docking: debugging 2010-06-12 19:05:26 +00:00
dragobject.inc lcl: initialize all points of FDockRect on drag-dock start (issue #0015040) 2009-11-20 08:03:42 +00:00
edit.inc
filedialog.inc
fileutil.inc lcl: use THandle instead of integer for the file handles 2010-06-03 07:09:46 +00:00
finddialog.inc LCL, FindDialog, ReplaceDialog: Focus and select find edit when dialog is shown (issue #14261) 2009-08-06 08:02:14 +00:00
font.inc lcl: make lcl resource cache thread-safe (based on patch of Bernd Engelhardt, issue #0016092) 2010-04-19 09:01:04 +00:00
fontdialog.inc
fpimagebitmap.inc lcl: add TPicture.LoadFromStream, TPicture.SaveToStream based on image header sign (issue #0010006) 2010-04-26 03:44:52 +00:00
glyphlist.inc
graphic.inc lcl: add TPicture.LoadFromStream, TPicture.SaveToStream based on image header sign (issue #0010006) 2010-04-26 03:44:52 +00:00
graphiccontrol.inc lcl: properly release control resources on TWinControl.DestroyWnd: 2009-07-17 02:44:31 +00:00
graphicsobject.inc
headercontrol.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
hintwindow.inc lcl: draw hintwindow with themes if color = clDefault 2010-05-15 15:07:30 +00:00
icnsicon.inc lcl: apply patch of Dmitry to support .icns writer (mantis #0014638) 2009-09-21 08:47:55 +00:00
icon.inc lcl, win32: implement loading icon,cursor from an icon handle (HICON) (GetInfoInfo needs to be implement for other widgetsets to support on other platforms), issue #0016356 2010-04-28 08:52:16 +00:00
idletimer.inc
imglist.inc Adds support to FPC 2.2.0 for Windows CE 2010-05-01 10:59:17 +00:00
inputdialog.inc lcl: fix inputdialog (issue #0016415) 2010-05-08 01:43:47 +00:00
interfacebase.inc LCL: added ASystemTopAlso bool param to TApplication.RemoveStayOnTop & TApplication.RestoreStayOnTop, WS.AppRemoveStayOnTop & WS.AppRestoreStayOnTop, because TApplication.HandleException should normalize all stayontop (app, sys), but app activate/deactivate only fsStayOnTop. 2010-05-20 10:54:19 +00:00
intfbaselcl.inc Brings back control painting and label displaying to a more or less working condition under WinCE 2010-05-05 12:31:02 +00:00
intfbasewinapi.inc lcl: add LPtoDP - symmetrical to DPtoLP winapi compatibility method 2010-05-07 07:08:43 +00:00
jpegimage.inc lcl: add TPicture.LoadFromStream, TPicture.SaveToStream based on image header sign (issue #0010006) 2010-04-26 03:44:52 +00:00
lclaction.inc
lclintf.inc lcl: remove TWidgetset.DrawArrow which got a TArrow control and TCanvas as arguments, move some implementations to TWSArrow classes 2010-02-04 04:06:00 +00:00
lclintfh.inc lcl: remove TWidgetset.DrawArrow which got a TArrow control and TCanvas as arguments, move some implementations to TWSArrow classes 2010-02-04 04:06:00 +00:00
listcolumn.inc lcl: allow to request true column width during listview destruction (based on patch of José Mejuto) 2010-05-02 06:45:23 +00:00
listcolumns.inc lcl: TListColumns must return valid owner on GetOwner 2009-12-02 03:22:17 +00:00
listitem.inc lcl: fix memory leak in TListItemSubItems 2010-04-26 07:52:15 +00:00
listitems.inc lcl: TListItems.BeginUpdate, TListItems.EndUpdate implementation, fixes #10997 2010-04-26 07:42:40 +00:00
mainmenu.inc lcl: rename AttachMenuToWindow to SetMenu for winapi compatibility 2009-09-25 16:09:33 +00:00
memo.inc
memoscrollbar.inc
memostrings.inc
menu.inc lcl: cleanup + formatting 2010-03-23 08:11:26 +00:00
menuactionlink.inc lcl: make TActionLink.SetImageIndex argument delphi compatible TImageIndex -> Integer 2009-11-23 15:08:19 +00:00
menuitem.inc lcl: recreate menu item if it is owned by another menu before showing (issue #0014144) 2010-03-23 08:12:12 +00:00
messagedialogs.inc
monitor.inc
mouse.inc lcl: remove dummy constructor and destructor from TMouse class 2009-10-05 03:25:02 +00:00
notebook.inc
page.inc
pagecontrol.inc formatting 2010-05-12 07:27:08 +00:00
paintbox.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
pen.inc lcl: make lcl resource cache thread-safe (based on patch of Bernd Engelhardt, issue #0016092) 2010-04-19 09:01:04 +00:00
picture.inc * Graphics: Added TTiffImage 2010-05-02 14:36:41 +00:00
pixmap.inc
png.inc lcl: add TPicture.LoadFromStream, TPicture.SaveToStream based on image header sign (issue #0010006) 2010-04-26 03:44:52 +00:00
pnm.inc lcl: add TPicture.LoadFromStream, TPicture.SaveToStream based on image header sign (issue #0010006) 2010-04-26 03:44:52 +00:00
popupmenu.inc lcl: don't destroy popup menu handle on Close method as suggested by Zeljan (issue #0015614) 2010-01-29 03:56:00 +00:00
progressbar.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
promptdialog.inc LCL: support any line endings in messages and question dialog 2010-06-16 08:06:10 +00:00
radiobutton.inc lcl, win32, wince: move button controls flags into CreateParams methods 2010-05-17 01:10:18 +00:00
radiogroup.inc
rasterimage.inc LCL: reduced debugging under wince 2009-11-25 22:16:26 +00:00
reginifile.inc
region.inc codetools: fixed modeswitch 2009-09-13 14:13:08 +00:00
replacedialog.inc LCL, FindDialog, ReplaceDialog: Focus and select find edit when dialog is shown (issue #14261) 2009-08-06 08:02:14 +00:00
rubberband.inc
screen.inc LCL: fixed FindApplicationComponent to ignore designer forms 2010-06-12 08:40:58 +00:00
scrollbar.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
scrollbox.inc lcl: make AutoScroll delphi compatible: 2009-08-29 03:03:10 +00:00
scrollingwincontrol.inc LCL: TScrollingWincontrol: fixed GetLogicalClientRect - only use Range if bar is visible, use preferredsize if Parent.ChildSizing.Layout<>cclNone 2010-05-22 11:52:45 +00:00
shape.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
sharedcustombitmap.inc
sharedimage.inc
sharedrasterimage.inc
shortcutlist.inc
sizeconstraints.inc removed OldAutoSize 2010-05-04 19:16:18 +00:00
speedbutton.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
spinedit.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
statusbar.inc lcl: apply patch of Juha Manninen which registers more VCL compatibility properties which LCL should skip while reading 2010-04-01 00:49:45 +00:00
statuspanel.inc lcl: TListColumns must return valid owner on GetOwner 2009-12-02 03:22:17 +00:00
statuspanels.inc lcl: TListColumns must return valid owner on GetOwner 2009-12-02 03:22:17 +00:00
tabcontrol.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
tabsheet.inc lcl: GetTabIndex should return the index of Tab, not the index of Page. Remove SetTabIndex. 2010-05-12 08:23:49 +00:00
tiffimage.inc * Graphics: Added TTiffImage 2010-05-02 14:36:41 +00:00
timer.inc
togglebox.inc lcl, win32, wince: move button controls flags into CreateParams methods 2010-05-17 01:10:18 +00:00
toolbar.inc LCL: fixed TAnchorSIde.IsAnchoredToParent 2010-05-09 08:16:14 +00:00
toolbutton.inc lcl: fix GetControlClassDefaultSize - use TSize instead of TPoint 2010-05-05 07:59:04 +00:00
toolwindow.inc
trackbar.inc lcl: prevent trackbar from calling OnChange while the control is loaded from .lfm 2010-05-27 17:22:46 +00:00
treeview.inc lcl: don't start node editing on icon click (by Anton Kavalenka, bug #0016012) 2010-05-31 02:55:21 +00:00
winapi.inc lcl: add LPtoDP - symmetrical to DPtoLP winapi compatibility method 2010-05-07 07:08:43 +00:00
winapih.inc lcl: add LPtoDP - symmetrical to DPtoLP winapi compatibility method 2010-05-07 07:08:43 +00:00
wincontrol.inc anchordocking: dock one control to docksite 2010-06-10 00:37:40 +00:00