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. 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 distribution also contains files for using PascalScript in Delphi and
additional documentation. additional documentation.
Files in this distributions may also be modified or outdated. 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. Package lhelpcontrolpkg for using chm files in the IDE.
codetools 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 compilers
Work in progress. Packages to extend the IDE for other languages. Work in progress. Packages to extend the IDE for other languages.
@ -17,7 +17,7 @@ custom
customform customform
Registering custom form descendants in the IDE. Registering custom form descendants in the IDE.
daemon: daemon
Package to create programs that run as daemon under linux or service under Package to create programs that run as daemon under linux or service under
windows. windows.
@ -28,7 +28,7 @@ dbexport
Export databases to various file formats. Export databases to various file formats.
editortoolbar editortoolbar
A customizable tolbar for the source editor. A customizable toolbar for the source editor.
educationlaz educationlaz
Extends/configures the IDE for education, training, courses Extends/configures the IDE for education, training, courses
@ -40,7 +40,7 @@ fpcunit
template for a fpcunit gui test runner template for a fpcunit gui test runner
fpweb fpweb
? Units that support web server and web client programming.
h2pas h2pas
Adds graphical interface to the IDE for the h2pas command line tool. Adds graphical interface to the IDE for the h2pas command line tool.
@ -49,7 +49,7 @@ images
More image formats for LCL applications. More image formats for LCL applications.
interbase interbase
Database support for interbase. Database support for Interbase/Firebird.
jcf2 jcf2
Jedi code formatter 2. Jedi code formatter 2.
@ -79,13 +79,16 @@ mouseandkeyinput
A package demonstrating how to manipulate mouse and keyboard input. A package demonstrating how to manipulate mouse and keyboard input.
mpaslex mpaslex
A small and fast pascal parser. A small and fast Pascal parser.
opengl opengl
A OpenGL control. An OpenGL control.
paradox paradox
Support for paradox databases. Support for paradox databases.
PascalScript
Version of RemObjects Pascal Script adapted for use in the Lazarus IDE.
plotfunction plotfunction
A LCL control for drawing plots and graphs. A LCL control for drawing plots and graphs.
@ -103,15 +106,15 @@ projecttemplates
Create project templates from your projects. Create project templates from your projects.
rtticontrols 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 can be connected to a published boolean property of an arbitrary class without
writing any code. writing any code.
rx rx
? Controls based on rxlib.
sdf sdf
SDF database package. SDF (CSV+fixed length dataset) database package.
simpleideintf simpleideintf
A test environment for IDE packages. A test environment for IDE packages.
@ -137,3 +140,8 @@ trayicon
turbopower_ipro turbopower_ipro
A HTML control. 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 aarreupdatelist
This tool is under construction. 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) - 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: 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 - 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 - 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: It is organized according to the following structure:
interfaces interfaces
|
+--- carbon
|
+--- cocoa
| |
+--- fpgui +--- fpgui
| |
@ -10,15 +14,23 @@ interfaces
| |
+--- gtk2 +--- gtk2
| |
+--- nogui
|
+--- qt +--- qt
| |
+--- win32 +--- 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: interfaces/fpgui:
All fpgui (http://opensoft.homeip.net/fpgui/) specific code goes here. 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. All gtk 2.x specific code goes here.
The gtk 2 interface inherits from the gtk 1 interface. The gtk 2 interface inherits from the gtk 1 interface.
interfaces/nogui:
All nogui (a "blank" interface) specific code goes here.
interfaces/qt: interfaces/qt:
All QT (Trolltech, KDE) specific code goes here. All QT (Trolltech, KDE) specific code goes here.
interfaces/win32: interfaces/win32:
All win32 (native MS windows interface) specific code goes here. All win32 (native MS windows interface) specific code goes here.
interfaces/carbon: interfaces/wince:
All Carbon (native MacOSX interface) specific code goes here. All Windows CE/Windows mobile specific code goes here.