readmes: updates

git-svn-id: trunk@39618 -
This commit is contained in:
mattias 2012-12-21 16:06:57 +00:00
parent 7dac737b38
commit 780febb55a
5 changed files with 41 additions and 19 deletions

View File

@ -9,12 +9,12 @@ For details also see the description in the lpk file (Lazarus Package).
For license details see Source/license.txt or the package file.
This copy only provides the files requires by Lazarus. The original
This copy only provides the files required by Lazarus. The original
distribution also contains files for using PascalScript in Delphi and
additional documentation.
Files in this distributions may also be modified or outdated.
In case of any issues you are adviced to check the original distribution.
In case of any issues you are advised to check the original distribution.

View File

@ -5,7 +5,7 @@ chmhelp
Package lhelpcontrolpkg for using chm files in the IDE.
codetools
The builtin pascal parser and pascal completion/refactoring tools of the IDE.
The builtin Pascal parser and Pascal completion/refactoring tools of the IDE.
compilers
Work in progress. Packages to extend the IDE for other languages.
@ -17,7 +17,7 @@ custom
customform
Registering custom form descendants in the IDE.
daemon:
daemon
Package to create programs that run as daemon under linux or service under
windows.
@ -28,7 +28,7 @@ dbexport
Export databases to various file formats.
editortoolbar
A customizable tolbar for the source editor.
A customizable toolbar for the source editor.
educationlaz
Extends/configures the IDE for education, training, courses
@ -40,7 +40,7 @@ fpcunit
template for a fpcunit gui test runner
fpweb
?
Units that support web server and web client programming.
h2pas
Adds graphical interface to the IDE for the h2pas command line tool.
@ -49,7 +49,7 @@ images
More image formats for LCL applications.
interbase
Database support for interbase.
Database support for Interbase/Firebird.
jcf2
Jedi code formatter 2.
@ -79,13 +79,16 @@ mouseandkeyinput
A package demonstrating how to manipulate mouse and keyboard input.
mpaslex
A small and fast pascal parser.
A small and fast Pascal parser.
opengl
A OpenGL control.
An OpenGL control.
paradox
Support for paradox databases.
PascalScript
Version of RemObjects Pascal Script adapted for use in the Lazarus IDE.
plotfunction
A LCL control for drawing plots and graphs.
@ -103,15 +106,15 @@ projecttemplates
Create project templates from your projects.
rtticontrols
A set of controls using the run time type information. For example a checkbox
A set of controls using the Run Time Type Information. For example, a checkbox
can be connected to a published boolean property of an arbitrary class without
writing any code.
rx
?
Controls based on rxlib.
sdf
SDF database package.
SDF (CSV+fixed length dataset) database package.
simpleideintf
A test environment for IDE packages.
@ -137,3 +140,8 @@ trayicon
turbopower_ipro
A HTML control.
vlc
A video player component based on the VLC libraries.
wiki
Tools to convert a wiki to offline help.

View File

@ -1,5 +1,5 @@
aarreupdatelist
This tool is under construction.
The goal is to scan a directory and gather information of all lpk files.
The goal is to scan a directory and gather information of all lpk files.

View File

@ -11,6 +11,6 @@ It also demonstrates
- setting the cursor to hourglass and reset it to indicate a long-running operation is going on (e.g. when recursively loading directories with a large amount of images)
Possible improvements:
= add support for other file formats (e.g. tiff)
- add support for other file formats
- add a setting that allows automatic scaling down if a picture is larger than the control
- use a cache in a different thread to preload images the user is likely to look at next

View File

@ -3,6 +3,10 @@ Interfaces
It is organized according to the following structure:
interfaces
|
+--- carbon
|
+--- cocoa
|
+--- fpgui
|
@ -10,15 +14,23 @@ interfaces
|
+--- gtk2
|
+--- nogui
|
+--- qt
|
+--- win32
|
+--- carbon
+--- wince
|
+--- ...
|
interfaces/carbon:
All Carbon (an older native MacOSX interface) specific code goes here.
interfaces/cocoa:
All Cocoa (a newer native MacOSX interface) specific code goes here.
interfaces/fpgui:
All fpgui (http://opensoft.homeip.net/fpgui/) specific code goes here.
@ -29,12 +41,14 @@ interfaces/gtk2:
All gtk 2.x specific code goes here.
The gtk 2 interface inherits from the gtk 1 interface.
interfaces/nogui:
All nogui (a "blank" interface) specific code goes here.
interfaces/qt:
All QT (Trolltech, KDE) specific code goes here.
interfaces/win32:
All win32 (native MS windows interface) specific code goes here.
interfaces/carbon:
All Carbon (native MacOSX interface) specific code goes here.
interfaces/wince:
All Windows CE/Windows mobile specific code goes here.