mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-19 17:50:47 +00:00
* GDL2Palette/README: New file.
* EOInterface/TODO: New file. * GDL2Palette/ResourceManager.m: Uncomment some code. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@24341 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0a02721cbe
commit
7572547ef9
4 changed files with 47 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-01-11 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
|
* GDL2Palette/README: New file.
|
||||||
|
* EOInterface/TODO: New file.
|
||||||
|
* GDL2Palette/ResourceManager.m: Uncomment some code.
|
||||||
|
|
||||||
2007-01-10 Matt Rice <ratmice@gmail.com>
|
2007-01-10 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
* DBModeler/AdaptorsPanel.m: Add responder chain, key equivalents,
|
* DBModeler/AdaptorsPanel.m: Add responder chain, key equivalents,
|
||||||
|
@ -62,7 +68,7 @@
|
||||||
* Documentation/GDL2Intro/library.eomodel: Add a connection
|
* Documentation/GDL2Intro/library.eomodel: Add a connection
|
||||||
dictionary.
|
dictionary.
|
||||||
|
|
||||||
2006-01-02 Matt Rice <ratmice@gmail.com>
|
2007-01-02 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
* EOAdaptors/SQLiteAdaptor/GNUmakefile.in: Add login panel.
|
* EOAdaptors/SQLiteAdaptor/GNUmakefile.in: Add login panel.
|
||||||
* EOAdaptors/SQLiteAdaptor/LoginPanel: New directory.
|
* EOAdaptors/SQLiteAdaptor/LoginPanel: New directory.
|
||||||
|
|
32
EOInterface/TODO
Normal file
32
EOInterface/TODO
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Completed Associations:
|
||||||
|
EOActionAssociation
|
||||||
|
EOColumnAssociation
|
||||||
|
EOMasterDetailAssociation
|
||||||
|
EOMatrixAssociation
|
||||||
|
EOPopUpAssociation
|
||||||
|
EORadioMatixAssociation
|
||||||
|
|
||||||
|
# Incomplete Associations:
|
||||||
|
EOControlAssociation:
|
||||||
|
done: value, enabled
|
||||||
|
needs: URL
|
||||||
|
EOGenericControlAssociation:
|
||||||
|
done: value, enabled
|
||||||
|
needs: URL
|
||||||
|
EOTableViewAssociation:
|
||||||
|
done: value, color, enabled, source
|
||||||
|
needs: italic, bold
|
||||||
|
EOTextAssociation:
|
||||||
|
done: value, editable
|
||||||
|
needs: URL
|
||||||
|
|
||||||
|
# Unimplemented Associations:
|
||||||
|
EOActionCellAssociation
|
||||||
|
EOActionInsertionAssociation
|
||||||
|
EOComboBoxAssociation
|
||||||
|
EODetailSelectionAssociation
|
||||||
|
EOMasterCopyAssociation
|
||||||
|
EOMasterPeerAssociation
|
||||||
|
EOPickTextAssociation
|
||||||
|
EORecursiveBrowserAssociation
|
||||||
|
|
7
GDL2Palette/README
Normal file
7
GDL2Palette/README
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
The GDL2 Palette uses runtime introspection to know which Associations/Aspects
|
||||||
|
are available. EOInterface has skeleton classes (ready to be implemented)
|
||||||
|
for all the associations, some of which are incomplete. So not everything
|
||||||
|
creatable with gorm will actually work.
|
||||||
|
|
||||||
|
Please see the EOInterface TODO file for a list of implemented association
|
||||||
|
classes and aspects.
|
|
@ -194,7 +194,7 @@
|
||||||
[dsConn setLabel: [NSString stringWithFormat:@"dataSource - %@", [ds class]]];
|
[dsConn setLabel: [NSString stringWithFormat:@"dataSource - %@", [ds class]]];
|
||||||
[[self document] attachObject:detailDG toParent:nil];
|
[[self document] attachObject:detailDG toParent:nil];
|
||||||
[[self document] setName:relName forObject:detailDG];
|
[[self document] setName:relName forObject:detailDG];
|
||||||
// [[(id<IB>)NSApp activeDocument] addConnector: conn];
|
[[(id<IB>)NSApp activeDocument] addConnector: conn];
|
||||||
[[(id<IB>)NSApp activeDocument] addConnector: AUTORELEASE(dsConn)];
|
[[(id<IB>)NSApp activeDocument] addConnector: AUTORELEASE(dsConn)];
|
||||||
RELEASE(masterDG);
|
RELEASE(masterDG);
|
||||||
RELEASE(detailDG);
|
RELEASE(detailDG);
|
||||||
|
|
Loading…
Reference in a new issue