mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-01 01:27:24 +01:00
added grids.pas from Jesus Reyes A.
git-svn-id: trunk@3788 -
This commit is contained in:
parent
f80cd88791
commit
a3837f23be
@ -16,8 +16,8 @@ options=-gl
|
||||
units=allcodetoolunits
|
||||
implicitunits=codetoolsstrconsts avl_tree basiccodetools codecache sourcelog \
|
||||
customcodetool multikeywordlisttool pascalparsertool finddeclarationtool \
|
||||
stdcodetools resourcecodetool methodjumptool eventcodetool \
|
||||
codecompletiontool codeatom codetree definetemplates expreval \
|
||||
identcompletiontool stdcodetools resourcecodetool methodjumptool \
|
||||
eventcodetool codecompletiontool codeatom codetree definetemplates expreval \
|
||||
keywordfunclists linkscanner sourcechanger fileprocs \
|
||||
memcheck
|
||||
|
||||
|
||||
@ -41,7 +41,7 @@ interface
|
||||
uses
|
||||
Classes, LclLinux, Process,StdCtrls, Forms, Buttons, Menus, ComCtrls, Arrow,
|
||||
Spin, SysUtils, Controls, CompReg, Graphics, ExtCtrls, Dialogs, Calendar,
|
||||
ImgList, LResources
|
||||
ImgList, Grids, LResources
|
||||
{$IFDEF DATABASE}
|
||||
,db
|
||||
{$ENDIF}
|
||||
@ -322,12 +322,13 @@ begin
|
||||
RegisterComponents('Standard','Buttons',[TButton]);
|
||||
RegisterComponents('Standard','StdCtrls',[TToggleBox, TCheckBox,
|
||||
TRadioButton, TListBox,TComboBox,TScrollBar,TGroupBox]);
|
||||
RegisterComponents('Standard', 'ExtCtrls',[TRadioGroup,TPanel]);
|
||||
RegisterComponents('Standard','ExtCtrls',[TRadioGroup,TPanel]);
|
||||
|
||||
RegisterComponents('Additional','Buttons',[TBitBtn,TSpeedButton]);
|
||||
RegisterComponents('Additional','ExtCtrls',[TImage, TShape, TBevel, TPaintBox]);
|
||||
RegisterComponents('Additional','ComCtrls',[TStaticText, TScrollBox]);
|
||||
RegisterComponents('Additional','ExtCtrls',[TNoteBook]);
|
||||
RegisterComponents('Additional','Grids',[TStringGrid,TDrawGrid]);
|
||||
|
||||
RegisterComponents('Common Controls','ImgList',[TImageList]);
|
||||
RegisterComponents('Common Controls','ComCtrls',[TTrackbar, TProgressBar,
|
||||
|
||||
@ -42,6 +42,7 @@ const
|
||||
DefaultMessagesViewName = 'MessagesView';
|
||||
DefaultUnitDependenciesName = 'UnitDependencies';
|
||||
DefaultCodeExplorerName = 'CodeExplorer';
|
||||
DefaultClipbrdHistoryName = 'ClipBrdHistory';
|
||||
|
||||
type
|
||||
{ TIDEWindowLayout stores information about the position, min/maximized state
|
||||
|
||||
18
lcl/Makefile
18
lcl/Makefile
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2002/10/25]
|
||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2002/09/21]
|
||||
#
|
||||
default: all
|
||||
MAKEFILETARGETS=linux go32v2 win32 os2 freebsd beos netbsd amiga atari sunos qnx netware openbsd wdosx
|
||||
@ -58,9 +58,6 @@ ifdef inUnix
|
||||
PATHSEP=/
|
||||
else
|
||||
PATHSEP:=$(subst /,\,/)
|
||||
ifneq ($(findstring sh.exe,$(SHELL)),)
|
||||
PATHSEP=/
|
||||
endif
|
||||
endif
|
||||
ifdef PWD
|
||||
BASEDIR:=$(subst \,/,$(shell $(PWD)))
|
||||
@ -142,16 +139,6 @@ ifndef OS_TARGET
|
||||
OS_TARGET:=$(shell $(FPC) -iTO)
|
||||
endif
|
||||
endif
|
||||
ifndef CPU_TARGET
|
||||
ifdef CPU_TARGET_DEFAULT
|
||||
CPU_TARGET=$(CPU_TARGET_DEFAULT)
|
||||
endif
|
||||
endif
|
||||
ifndef OS_TARGET
|
||||
ifdef OS_TARGET_DEFAULT
|
||||
OS_TARGET=$(OS_TARGET_DEFAULT)
|
||||
endif
|
||||
endif
|
||||
FULL_TARGET=$(CPU_TARGET)-$(OS_TARGET)
|
||||
FULL_SOURCE=$(CPU_SOURCE)-$(OS_SOURCE)
|
||||
ifneq ($(FULL_TARGET),$(FULL_SOURCE))
|
||||
@ -215,7 +202,7 @@ override PACKAGE_NAME=lazarus/lcl
|
||||
override PACKAGE_VERSION=0.8a
|
||||
override TARGET_DIRS+=interfaces
|
||||
override TARGET_UNITS+=allunits
|
||||
override TARGET_IMPLICITUNITS+=arrow actnlist buttons calendar clipbrd clistbox comctrls commctrl controls dialogs dynhasharray extctrls extendedstrings filectrl forms graphics graphmath graphtype imglist interfacebase lazqueue lclmemmanager lcllinux lclstrconsts lcltype lmessages lresources menus messages registry spin stdctrls stringhashlist toolwin utrace vclglobals
|
||||
override TARGET_IMPLICITUNITS+=arrow actnlist buttons calendar clipbrd clistbox comctrls commctrl controls dialogs dynamicarray dynhasharray extctrls extendedstrings filectrl forms graphics graphmath graphtype grids imglist interfacebase lazqueue lclmemmanager lcllinux lclstrconsts lcltype lmessages lresources menus messages registry spin stdctrls stringhashlist toolwin utrace vclglobals
|
||||
override TARGET_RSTS+=dialogs
|
||||
override CLEAN_FILES+=$(wildcard units/*$(OEXT)) $(wildcard units/*$(PPUEXT)) $(wildcard units/*$(RSTEXT))$(wildcard *$(OEXT)) $(wildcard *$(PPUEXT)) $(wildcard *$(RSTEXT))
|
||||
override INSTALL_BUILDUNIT=allunits
|
||||
@ -1422,7 +1409,6 @@ fpc_baseinfo:
|
||||
@$(ECHO) Rm........ $(RMPROG)
|
||||
@$(ECHO) GInstall.. $(GINSTALL)
|
||||
@$(ECHO) Echo...... $(ECHO)
|
||||
@$(ECHO) Shell..... $(SHELL)
|
||||
@$(ECHO) Date...... $(DATE)
|
||||
@$(ECHO) FPCMake... $(FPCMAKE)
|
||||
@$(ECHO) PPUMove... $(PPUMOVE)
|
||||
|
||||
@ -11,11 +11,11 @@ version=0.8a
|
||||
dirs=interfaces
|
||||
units=allunits
|
||||
implicitunits=arrow actnlist buttons calendar clipbrd clistbox comctrls \
|
||||
commctrl controls dialogs dynhasharray extctrls extendedstrings \
|
||||
filectrl forms graphics graphmath graphtype imglist interfacebase \
|
||||
lazqueue lclmemmanager lcllinux lclstrconsts lcltype lmessages \
|
||||
lresources menus messages registry spin stdctrls stringhashlist \
|
||||
toolwin utrace vclglobals
|
||||
commctrl controls dialogs dynamicarray dynhasharray extctrls \
|
||||
extendedstrings filectrl forms graphics graphmath graphtype grids \
|
||||
imglist interfacebase lazqueue lclmemmanager lcllinux lclstrconsts \
|
||||
lcltype lmessages lresources menus messages registry spin stdctrls \
|
||||
stringhashlist toolwin utrace vclglobals
|
||||
# and do not add allunits. It is just a dummy unit used for compiling.
|
||||
|
||||
rsts=dialogs
|
||||
|
||||
Loading…
Reference in New Issue
Block a user