2002-07-14 23:54:05 +00:00
|
|
|
2002-07-14 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormClassManager.[hm]: Added new methods:
|
|
|
|
- (NSString *) addNewActionToClassNamed: (NSString *)name;
|
|
|
|
- (NSString *) addNewOutletToClassNamed: (NSString *)name;
|
|
|
|
- (BOOL) loadCustomClasses: (NSString*)path;
|
|
|
|
- (BOOL) isCustomClass: (NSString *)className;
|
|
|
|
- (BOOL) isAction: (NSString *)actionName ofClass: (NSString *)className;
|
|
|
|
- (BOOL) isOutlet: (NSString *)outletName ofClass: (NSString *)className;
|
|
|
|
Changed the format of the ".classes" file to store only the custom classes.
|
|
|
|
This is more efficient since the full class list is already loaded when the
|
|
|
|
GormClassManager is initialized. The custom class list is merged with this
|
|
|
|
to create the display shown in the classes view.
|
|
|
|
* GormDocument.m: modified to utilize the above routines in the method which
|
|
|
|
loads the .gorm file and the data source.
|
|
|
|
* GormOutlineView.m: Added new methods to add new actions/outlets with generic
|
|
|
|
names so that the user can edit the actions/outlets once added.
|
|
|
|
|
2002-07-13 19:12:15 +00:00
|
|
|
2002-07-13 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* Gorm.m: Corrected typo in method name. Added check to prevent
|
|
|
|
addition of blank action, outlet or class name.
|
|
|
|
* GormClassManager.m: started on modifications for custom classes.
|
|
|
|
|
2002-07-12 05:46:29 +00:00
|
|
|
2002-07-12 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* Gorm.m: [-removeAttributeFromClass] added method to be
|
|
|
|
used by new menu item "Delete Outlet/Action". Removed some
|
|
|
|
NSLog statements.
|
|
|
|
* GormClassManager.[hm]: Added methods to support adding and
|
|
|
|
replacing actions and outlets.
|
|
|
|
* GormDocument.m: Modified data source methods to use the methods
|
|
|
|
added to the class manager to edit the contents of the class list.
|
|
|
|
* GormOutlineView.[hm]: Added methods to add actions and outlets
|
|
|
|
to the data source from the outline view. Also changed the drawing
|
|
|
|
code so that the outlet/action being edited doesn't shift when
|
|
|
|
clicked.
|
|
|
|
|
2002-07-11 05:50:04 +00:00
|
|
|
2002-07-11 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormClassManager.m: Added stubs for two new method to add actions
|
|
|
|
and outlets based on classname.
|
|
|
|
* GormDocument.m: Added logic set the name in the data source methods.
|
|
|
|
* GormOutlineView.m: Override [-editColumn:row:withEvent:select:]
|
|
|
|
to draw correcty for the outlet/actions.
|
|
|
|
* GormOutlineView.h: Move GormOutletActionHolder to header so it
|
|
|
|
can be used by the data source.
|
|
|
|
|
|
|
|
2002-07-09 Gregory John Casamento <greg_casamento@yahoo.com>
|
2002-07-09 13:30:59 +00:00
|
|
|
|
|
|
|
* Gorm.m: Added new menu item and method to add outlet/action
|
|
|
|
-[Gorm addAttributeToClass:]
|
|
|
|
* GormDocument.m: Added new method which gets called by the one
|
|
|
|
in Gorm.m and passes control to the classesView.
|
|
|
|
* GormOutlineView.m added -[GormOutlineView addAttributeToClass]
|
|
|
|
to add either an outlet or an action depending on what type
|
|
|
|
is currently open. Currently it only adds the name and doesn't
|
|
|
|
modify the datasource. The next version will.
|
|
|
|
|
2002-07-09 00:28:22 +00:00
|
|
|
2002-07-08 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormOutlineView.m -[drawRow:] Added logic to draw inverse
|
|
|
|
image of the outlet or action button to visually indicate which
|
|
|
|
is being edited in the outline view.
|
|
|
|
* GormOutlineView.h: Added typedef to indicate whether actions or
|
|
|
|
outlets are being edited.
|
|
|
|
* Images/GormActionSelected.tiff: Added
|
|
|
|
* Images/GormOutletSelected.tiff: Added
|
|
|
|
* GNUmakefile: Modified to copy images to the resources directory.
|
|
|
|
|
2002-07-08 04:45:23 +00:00
|
|
|
2002-07-08 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormOutlineView.[hm] : Added. This is a NSOutlineView
|
|
|
|
subclass handles outlets and actions for the class view.
|
|
|
|
As of this revision, you can view the actions and outlets of
|
|
|
|
a class, but you can't edit them.
|
|
|
|
* GormDocument.m: Modified to use new class.
|
|
|
|
* GormInspectorsManager.m: Removed some code which was causing
|
|
|
|
the application to dump core on exit.
|
|
|
|
|
2002-05-04 14:54:07 +00:00
|
|
|
2002-05-04 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormClassEditor.m: Added blank implementation of
|
|
|
|
[GormClassEditor -makeSelectionVisible:(BOOL)] method.
|
|
|
|
When creating a new class and editing it, the application was
|
|
|
|
throwing an exception due to the abcense of this method.
|
|
|
|
It now seems to function correctly.
|
|
|
|
|
2002-04-08 23:25:52 +00:00
|
|
|
2002-04-08 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* Palettes/0Menus/GormNSMenu.m
|
|
|
|
[GormNSMenu -_createWindow]: removed NSLog statement before
|
|
|
|
NSPanel *win declaration which was causing Gorm not to build on
|
|
|
|
compilers gcc < 3.0.
|
|
|
|
|
2002-04-07 22:02:41 +00:00
|
|
|
2002-07-01 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* ClassInformation.plist: new outlet for NSWindowController
|
|
|
|
* Gorm.m
|
|
|
|
* GormWindowEditor.m
|
|
|
|
* GormTableViewEditor.m
|
|
|
|
* GormObjectEditor.m
|
|
|
|
Bugfixes for proper drawing/updating of selection.
|
|
|
|
|
|
|
|
* GormDocument.m
|
|
|
|
Only the toplevel menu goes into the objectview panel.
|
|
|
|
The last directory used for opening is now saved and proposed
|
|
|
|
as the default for next time.
|
|
|
|
|
|
|
|
* GormObjectEditor.m
|
|
|
|
* Resources/GormViewSizeInspector.gorm
|
|
|
|
* Resources/GormViewSizeInspector.classes
|
|
|
|
The size inspector is now loaded from a gorm file.
|
|
|
|
|
|
|
|
* GormDocument.m
|
|
|
|
* Palettes/0Menus/GormNSMenu.m
|
|
|
|
* Palettes/0Menus/GormNSMenu.h
|
|
|
|
* Palettes/0Menus/main.m
|
|
|
|
* Palettes/0Menus/GormMenuEditor.m
|
|
|
|
* Palettes/0Menus/GNUmakefile
|
|
|
|
GormNSMenu replaces NSMenu when editing interface.
|
|
|
|
|
|
|
|
* GormInspectorsManager.m: fix selected item in popupbutton when using
|
|
|
|
keyEquivalent (patch from Fabien Vallon).
|
|
|
|
|
2002-04-01 10:29:52 +00:00
|
|
|
2002-04-01 Pierre-Yves <pyrivail@spocky>
|
|
|
|
|
|
|
|
* GormTableViewEditor.m ([GormTableViewEditor -activate]):
|
|
|
|
Bugfix for gcc 2.??.
|
|
|
|
|
2002-03-31 15:59:18 +00:00
|
|
|
2002-03-31 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
2002-03-31 19:05:28 +00:00
|
|
|
|
2002-03-31 15:59:18 +00:00
|
|
|
* GormWindowEditor.m
|
|
|
|
When resizing matrix, use integer values for setCellSize.
|
|
|
|
When dropping an object from the palettes, use integer
|
|
|
|
coordinates for its frame.
|
|
|
|
|
|
|
|
* GNUMakefile
|
|
|
|
* GormObjectEditor.m
|
|
|
|
* Resources/GormViewSizeInspector.gorm
|
|
|
|
* Resources/GormViewSizeInspector.classes
|
|
|
|
Moved GormViewSizeInspector to gorm.
|
|
|
|
|
|
|
|
* ClassInformation.plist: NSOutlineView declaration.
|
|
|
|
* GormDocument.m ([GormDocument -{load, save}Document]):
|
|
|
|
* GormTableViewEditor.m ([-outlineViewSelectionDidChange:])
|
|
|
|
* Palettes/3Containers/GNUMakefile
|
|
|
|
* Palettes/3Containers/main.m
|
|
|
|
* Palettes/3Containers/GormNSOutlineView.m
|
|
|
|
* Palettes/3Containers/GormNSOutlineView.h
|
|
|
|
* Palettes/3Containers/inspectors.m
|
|
|
|
GormNSOutlineView replaces NSOutlineView when editing interface.
|
|
|
|
GormNSOutlineView features a dummy dataSource during editing and
|
|
|
|
testing.
|
|
|
|
|
2002-03-31 19:05:28 +00:00
|
|
|
* Palettes/2Controls/main.m
|
2002-03-31 15:59:18 +00:00
|
|
|
* Palettes/2Controls/GormBoxInspector.gorm
|
|
|
|
* Palettes/2Controls/GormButtonInspector.gorm
|
|
|
|
* Palettes/2Controls/GormFormInspector.gorm
|
|
|
|
* Palettes/2Controls/GormSliderInspector.gorm
|
|
|
|
* Palettes/2Controls/GormTextFieldInspector.gorm
|
|
|
|
Cosmetic changes.
|
|
|
|
|
|
|
|
|
2002-03-29 16:30:01 +00:00
|
|
|
2002-03-29 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* GormDocument.m ([GormDocument -windowAndRect:forObject:]):
|
|
|
|
support for NSTableColumn objects.
|
|
|
|
* GormDocument.m ([GormDocument -attachObject:toParent]):
|
|
|
|
when attaching a NSTableView, attach its tableColumns too.
|
|
|
|
* GormWindowEditor.m ([GormWindowEditor mouseDown:])
|
|
|
|
opens GormTableViewEditor when needed.
|
|
|
|
* GormWindowEditor.m
|
|
|
|
bestKnownSuperview() does now take a second argument which is
|
|
|
|
a point (it was needed for NSTableColumn support).
|
|
|
|
* GormTableViewEditor.m
|
|
|
|
new files.
|
|
|
|
* GNUMakefile : add GormTableViewEditor.m
|
|
|
|
* GormPrivate.h
|
|
|
|
interface for GormTableViewEditor
|
|
|
|
* ClassInformation.plist
|
|
|
|
new version provided by Jeff Teunissen.
|
|
|
|
* Palettes/3Containers/GNUMakefile
|
|
|
|
* Palettes/3Containers/inspectors
|
|
|
|
* Palettes/3Containers/GormTableColumnInspector.classes
|
|
|
|
* Palettes/3Containers/GormTableColumnInspector.gorm
|
|
|
|
* Palettes/3Containers/GormTableColumnSizeInspector.classes
|
|
|
|
* Palettes/3Containers/GormTableColumnSizeInspector.gorm
|
|
|
|
support for NSTableColumn inspector
|
|
|
|
* Palettes/3Containers/GormNSTableView.m
|
|
|
|
* Palettes/3Containers/GormNSTableView.h
|
|
|
|
various update of GormNSTableView.
|
|
|
|
|
|
|
|
|
2002-03-26 17:15:26 +00:00
|
|
|
2002-03-26 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* GormDocument.m ([GormDocument -init]):
|
|
|
|
Call setWidth instead of setMinWidth for non-resizable column.
|
|
|
|
Call sizeToFit on classesView.
|
|
|
|
* GormDocument.m ([GormDocument -{load, save}Document]):
|
|
|
|
Add support for GormNSTableView.
|
|
|
|
* Palettes/3Containers/GNUMakefile
|
|
|
|
* Palettes/3Containers/main.m
|
|
|
|
* Palettes/3Containers/GormNSTableView.m
|
|
|
|
* Palettes/3Containers/GormNSTableView.h
|
|
|
|
* Palettes/3Containers/inspectors.m
|
|
|
|
GormNSTableView replaces NSTableView when editing interface.
|
|
|
|
GormNSTableView features a dummy dataSource during editing and
|
|
|
|
testing.
|
|
|
|
|
2002-03-25 01:54:10 +00:00
|
|
|
2002-03-24 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormDocument.m: Minor cleanup of debug statements.
|
|
|
|
|
2002-03-25 01:44:01 +00:00
|
|
|
2002-03-24 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
|
|
|
|
* GormDocument.m: Made necessary modifications to change the
|
|
|
|
classesView from an NSTableView to an NSOutlineView.
|
|
|
|
* GormClassManager.m: Added method to return all subclasses for
|
|
|
|
a given superclass.
|
|
|
|
* GormClassManager.h: Added declaration for the method described
|
|
|
|
above.
|
|
|
|
|
2002-03-08 15:26:10 +00:00
|
|
|
2002-03-08 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* IBInspector.m: Don't release window on dealloc ... assume it
|
|
|
|
* releases itsself when closed.
|
|
|
|
* IBPalette.m: ditto
|
|
|
|
|
2002-03-06 11:43:38 +00:00
|
|
|
2002-03-06 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* IBInspector.m: Release all ivars on dealloc.
|
|
|
|
* IBPalette.m: ditto
|
|
|
|
* Palettes/0Menus/GormMenuInspectors.m: Don't release superclass
|
|
|
|
ivars in own dealloc method.
|
|
|
|
* Palettes/1Windows/main.m: ditto
|
|
|
|
* Palettes/2Controls/inspectors.m: ditto
|
|
|
|
* Palettes/3Containers/inspectors.m: ditto
|
|
|
|
* Palettes/3Containers/main.m: ditto
|
|
|
|
* Palettes/4Data/inspectors.m: ditto
|
|
|
|
Changes to make retain/release consistent ... subclasses must not
|
|
|
|
release the ivars of a superclass in their dealloc method as the
|
|
|
|
superclass dealloc method should do that. Fixes bug exposed by
|
|
|
|
recent NSWindow dealloc fixes.
|
|
|
|
|
2002-03-04 20:28:20 +00:00
|
|
|
2002-03-04 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* Gorm.m ([GormObjectProxy -initWithCoder:]):
|
|
|
|
typo fixing.
|
|
|
|
|
2002-03-04 18:15:26 +00:00
|
|
|
2002-03-04 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* Gorm.m ([GormObjectProxy -initWithCoder:]):
|
|
|
|
updated to conform with GSNibItem new encoding scheme.
|
|
|
|
|
2002-03-01 14:42:15 +00:00
|
|
|
2002-03-01 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* GormCustomView.m ([GormCustomView -classForCoder]):
|
|
|
|
new method. Easy way to make sure GormCustomView is always
|
|
|
|
encoded as a GSCustomView.
|
|
|
|
* GormCustomView.m ([GormCustomView -initWithCoder:]):
|
|
|
|
([GormCustomView -encodeWithCoder:]):
|
|
|
|
new encoding (works with the new GSCustomView encoding),
|
|
|
|
ability to open old documents.
|
|
|
|
* GormDocument.m:
|
|
|
|
([GormDocument -pasteType:fromPasteboard:parent:]):
|
|
|
|
decode GSCustomView as GormCustomView.
|
|
|
|
|
2002-02-18 12:37:26 +00:00
|
|
|
2002-02-18 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* Palettes/3Containers/GNUmakefile
|
|
|
|
* Palettes/3Containers/main.m
|
|
|
|
* Palettes/3Containers/GormNSBrowser.m
|
|
|
|
* Palettes/3Containers/GormNSBrowser.h
|
|
|
|
* Gorm.m
|
|
|
|
* GormDocument.m
|
|
|
|
Subclass of NSBrowser and NSTableView to be able to set the
|
|
|
|
delegate for runtime only (there is a dummy delegate for edit-time
|
|
|
|
and test-time). Those classes are encoded as NSBrowser/NSTableView
|
|
|
|
and NSTableView/NSBrowser are decoded as GormNSBrowser/GormNSTableView
|
|
|
|
|
|
|
|
* Palettes/1Windows/GNUmakefile
|
|
|
|
* Palettes/1Windows/GormNSWindow.h
|
|
|
|
* Palettes/1Windows/GormNSWindow.m
|
|
|
|
* Palettes/1Windows/main.m
|
|
|
|
* GormDocument.m
|
|
|
|
* Gorm.m
|
|
|
|
Subclass of NSWindow to be able to choose the stylemask
|
|
|
|
and to still be able to resize/close/minimize the window in the editor
|
|
|
|
regardless of the stylemask. This class is encoded as NSWindow and
|
|
|
|
NSWindow is decoded as GormNSWindow.
|
|
|
|
|
|
|
|
* GormDocument.m ([-attachObect:toParent]):
|
|
|
|
NSTableView & NSTextView objects contained in NSScrollView are now
|
|
|
|
added. Connections to and from those objects are now available.
|
|
|
|
|
|
|
|
* GormWindowEditor.m: new bestKnownSuperview function
|
|
|
|
(original patch from Stefan Urbanek <stefanurbanek@yahoo.fr>
|
|
|
|
modified to let the user select the NSScrollView or the NSTextView/
|
|
|
|
NSTableView contained within the NSScrollView).
|
|
|
|
|
|
|
|
* Palettes/3Containers/inspectors.m
|
|
|
|
* Palettes/3Containers/GormBrowserInspector.gorm
|
|
|
|
* Palettes/3Containers/GormTableViewInspector.gorm
|
|
|
|
NSTableView and NSBrowser inspectors updated (new tag field)
|
|
|
|
(patch from Stefan Urbanek <stefanurbanek@yahoo.fr>)
|
|
|
|
|
2002-01-30 22:46:35 +00:00
|
|
|
2002-01-30 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Version: 0.1.0
|
|
|
|
* Documentation/news.texi: Update.
|
|
|
|
|
2002-01-29 16:17:13 +00:00
|
|
|
2002-01-29 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
2002-01-29 22:41:02 +00:00
|
|
|
* GormClassManager.m (-allActionsForObject:): Get actions for
|
|
|
|
first responder as well.
|
2002-01-29 17:47:29 +00:00
|
|
|
* ClassInformation.plist: Update (from stefanurbanek@yahoo.fr).
|
2002-01-29 22:41:02 +00:00
|
|
|
Add FirstResponder actions.
|
|
|
|
|
|
|
|
* Documentation/news.texi: update
|
2002-01-29 16:17:13 +00:00
|
|
|
|
2002-01-14 04:19:01 +00:00
|
|
|
2002-01-13 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormDocument.m ([GormDocument -init]): Autorelease objectsView.
|
|
|
|
|
|
|
|
* GormWindowEditor.m ([GormWindowEditor -mouseDown:]): Set the
|
|
|
|
arrowCursor for dragging, etc. push back the mouseUp event to
|
|
|
|
make cursor tracking work correctly.
|
|
|
|
|
2001-12-19 07:13:54 +00:00
|
|
|
2001-12-18 Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
* Gorm.m: loadClass method added to call the method in GormDocument
|
|
|
|
* GormDocument.m: loadClass method and parseClass method added
|
|
|
|
to parse the contents of a .[hH] file to produce an
|
|
|
|
entry in the classes list.
|
|
|
|
* GormClassManager.[hm]: addClassNamed:... method added.
|
|
|
|
|
2001-12-04 22:26:32 +00:00
|
|
|
2001-12-04 Laurent Julliard <laurent@moldus.org>
|
|
|
|
|
|
|
|
* Palettes/4Data/main.m: Date and Number Formatters added
|
|
|
|
* Palettes/4Data/inspectors.m: Date and Number Formatters added
|
|
|
|
* Palettes/4Data/GNUmakefile: Date and Number Formatters added
|
|
|
|
* GormWindowEditor.m: drag and drop logic for formatters
|
|
|
|
* IBPAlette.m: drag and drop logic for formatters
|
|
|
|
* GormPrivate.h: NSDateFormatter and NSNumberFormatter additions
|
|
|
|
* GormPalettesManager.m: drag and drop logic for formatters
|
|
|
|
* GormInspectorsManager.m: new (optional) popup button item for
|
|
|
|
formatters
|
|
|
|
* Gorm.h: new drag and drop type for formatters
|
|
|
|
* Palettes/4Data/GormDateFormatterInspector.gorm: New Date
|
|
|
|
Formatter Inspector
|
|
|
|
* Palettes/4Data/GormDateFormatterInspector.gorm: New Number
|
|
|
|
Formatter Inspector
|
|
|
|
|
2001-11-20 16:57:48 +00:00
|
|
|
2001-11-20 Laurent Julliard <laurent@julliard-online.org>
|
|
|
|
|
|
|
|
* GNUMakefile: data palette and new icons added
|
|
|
|
* GormInspectorManager.m (-setCurrentInspector): Controls embedded
|
|
|
|
in NSScrollView must be handled differently
|
|
|
|
* GormWindowEditor.m (-mouseDown) : some debugging code added
|
|
|
|
* Palettes/2Controls/GormBoxInspector.gorm: alignment tuning
|
|
|
|
* Palettes/3Containers/GormBrowserInspector.gorm : New NSBrowser
|
|
|
|
inspector
|
|
|
|
* Palettes/3Containers/GormTableViewInspector.gorm: New NSTableView
|
|
|
|
inspector
|
|
|
|
* Palettes/4Data/main.m: new Data Palette
|
|
|
|
* Palettes/4Data/inspectors.m: new Data Palette
|
|
|
|
* Palettes/4Data/GormComboBoxInspector.gorm: new NSComboBox inspector
|
|
|
|
(incomplete)
|
|
|
|
* Palettes/4Data/GormImageViewInspector.gorm: new NSImageView inspector
|
|
|
|
* Palettes/4Data/GormTextViewInspector.gorm: new NSTextView inspector
|
|
|
|
* Images/Sunday_seurat.tiff: new inspector icon
|
|
|
|
* Images/button_nib.tiff: new inspector icon
|
|
|
|
* Images/date_formatter.tiff: new inspector icon
|
|
|
|
* Images/iconBottomLeft_nib.tiff: new inspector icon
|
|
|
|
* Images/iconBottomRight_nib.tiff: new inspector icon
|
|
|
|
* Images/iconBottom_nib.tiff: new inspector icon
|
|
|
|
* Images/iconCenterLeft_nib.tiff: new inspector icon
|
|
|
|
* Images/iconCenterRight_nib.tiff: new inspector icon
|
|
|
|
* Images/iconCenter_nib.tiff: new inspector icon
|
|
|
|
* Images/iconTopLeft_nib.tiff: new inspector icon
|
|
|
|
* Images/iconTopRight_nib.tiff: new inspector icon
|
|
|
|
* Images/iconTop_nib.tiff: new inspector icon
|
|
|
|
* Images/number_formatter.tiff: new inspector icon
|
|
|
|
* Images/photoframe_nib.tiff: new inspector icon
|
|
|
|
|
2001-11-03 06:04:57 +00:00
|
|
|
2001-11-03 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* GormDocument.m: Removed extra RELEASEes (reported by Ludovic
|
|
|
|
Marcotte) and simplified document close code ... fixed bug which
|
|
|
|
was leaving application menus in existence after clsoe.
|
|
|
|
|
2001-11-02 04:59:43 +00:00
|
|
|
2001-11-01 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormDocument.m ([GormDocument -openDocument:]): Open file
|
|
|
|
from current dir.
|
|
|
|
|
|
|
|
* Palettes/1Windows/main.m: Set action/target to ok: in NSForms in
|
|
|
|
GormWindowInspector and GormWindowSizeInspector. Remove all
|
|
|
|
TextDidEndEditing Notifications.
|
|
|
|
* Palettes/2Controls/inspectors.m: Likewise for all control
|
|
|
|
inspectors. Also make sure all setStringValue: messages get sent
|
|
|
|
a non-nil string.
|
|
|
|
|
2001-10-30 17:56:34 +00:00
|
|
|
2001-10-30 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m: Fixed various drawing glitches when managing
|
|
|
|
resizes (of matrix views in particular). By no means perfect, but
|
|
|
|
a big improvement in appearance.
|
|
|
|
|
2001-10-29 12:53:50 +00:00
|
|
|
2001-10-29 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
2001-10-29 16:30:48 +00:00
|
|
|
* GormDocument.m ([GormDocument -init]): set the NSTableView's
|
|
|
|
properties so that it benefits from [NSTableView -sizeToFit]
|
2001-10-29 12:53:50 +00:00
|
|
|
|
2001-10-29 06:10:30 +00:00
|
|
|
2001-10-29 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
2001-10-29 16:30:48 +00:00
|
|
|
* GormClassManager.m: Tidy action names in browser etc.
|
|
|
|
* GormWindowEditor.m: Tidy size of matrix at end of resize.
|
2001-10-29 06:10:30 +00:00
|
|
|
|
2001-10-28 20:09:52 +00:00
|
|
|
2001-10-28 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* Palettes/2Controls/main.m ([ControlsPalette -finishInstantiate]):
|
|
|
|
update NSStepper in the controls' palette (it has a new default size)
|
|
|
|
|
|
|
|
|
2001-10-28 08:39:30 +00:00
|
|
|
2001-10-26 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* GormClassManager.m: Force class, action, and outlet names to be
|
|
|
|
legal identifiers ... ie consist of alhpanumeric and underscore
|
|
|
|
characters with a non-numeric initial character.
|
|
|
|
A roundabout/fundamental fix for a problem generating output files
|
|
|
|
reported by Ludovic Marcotte
|
|
|
|
|
2001-10-27 20:35:10 +00:00
|
|
|
2001-10-27 Laurent Julliard <laurent@julliard-online.org>
|
|
|
|
|
|
|
|
* ClassInformation.plist: IBInspector actions/outlets closer to OS 4.2
|
|
|
|
* Palettes/1Windows/GormMatrixInspector.gorm: new layout and new fields
|
|
|
|
* Palettes/1Windows/GormWindowInspector.gorm: new layout and new fields
|
|
|
|
* Palettes/1Windows/main.m: code for new Window inspector
|
|
|
|
* Palettes/2Controls/GormSliderInspector.gorm: new layout and new fields
|
|
|
|
* Palettes/2Controls/GormTextFieldInspector.gorm: uses icons, new layout, ok button removed
|
|
|
|
* Palettes/2Controls/GormButtonInspector.gorm: uses icons, ok button removed
|
|
|
|
* Palettes/2Controls/GormBoxInspector.gorm: uses icons and sliders
|
|
|
|
* Palettes/2Controls/GormFormInspector.gorm: ok button removed, uses icons.
|
|
|
|
* Palettes/2Controls/GormPopUpButtonInspector.gorm: ok button removed
|
|
|
|
* Palettes/2Controls/GormCellInspector.gorm: ok button removed
|
|
|
|
* Palettes/2Controls/GormBoxInspector.gorm: ok button removed, sliders added
|
|
|
|
* Palettes/2Controls/inspectors.m: code for new/updated inspectors
|
|
|
|
* Images/centeralign_nib.tiff: new inspector icon
|
|
|
|
* Images/justifyalign_nib.tiff: new inspector icon
|
|
|
|
* Images/leftalign_nib.tiff: new inspector icon
|
|
|
|
* Images/naturalalign_nib.tiff: new inspector icon
|
|
|
|
* Images/rightalign_nib.tiff: new inspector icon
|
|
|
|
* Images/iconLeft_nib.tiff: new inspector icon
|
|
|
|
* Images/iconOnly_nib.tiff: new inspector icon
|
|
|
|
* Images/iconRight_nib.tiff: new inspector icon
|
|
|
|
* Images/iconAbove_nib.tiff: new inspector icon
|
|
|
|
* Images/iconBelow_nib.tiff: new inspector icon
|
|
|
|
* Images/titleOnly_nib.tiff: new inspector icon
|
|
|
|
* Images/line_nib.tiff: new inspector icon
|
|
|
|
* Images/bezel_nib.tiff: new inspector icon
|
|
|
|
* Images/noBorder_nib.tiff: new inspector icon
|
|
|
|
* Images/ridge_nib.tiff: new inspector icon
|
|
|
|
|
2001-10-23 21:26:58 +00:00
|
|
|
2001-10-23 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* GormObjectEditor.m: Updated [GormObjectEditor refreshCells] so that
|
|
|
|
setTitle is not called with nil anymore (but with @"").
|
|
|
|
See change <Tue Oct 23 10:32:18 2001> in gnustep/core/gui/Changelog
|
|
|
|
|
2001-10-27 20:35:10 +00:00
|
|
|
2001-10-17 Laurent Julliard <laurent@julliard-online.org>
|
2001-10-17 22:56:17 +00:00
|
|
|
|
|
|
|
* Palettes/2Controls/GormFormInspector.gorm: New Form inspector.
|
|
|
|
* Palettes/2Controls/GormFormInspector.classes: likewise.
|
|
|
|
|
|
|
|
* Palettes/2Controls/GormPopUpButtonInspector.gorm: New PopUp Button inspector
|
|
|
|
* Palettes/2Controls/GormPopUpButtonInspector.classes: likewise
|
|
|
|
* Palettes/2Controls/GormCellInspector.gorm: New Cell Inspector
|
|
|
|
* Palettes/2Controls/GormCellInspector.classes: likewise
|
|
|
|
|
|
|
|
* Palettes/2Controls/inspectors.m: new logic for the new inspectors
|
|
|
|
* Palettes/2Controls/GNUmakefile: new inspectors in resources
|
|
|
|
|
2001-10-17 04:06:11 +00:00
|
|
|
2001-10-16 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormPalettesManager.m ([GormPalettesManager -setCurrentPalette:]):
|
|
|
|
Check for wv before getting frame (Solaris fix).
|
|
|
|
|
2001-10-15 02:16:03 +00:00
|
|
|
2001-10-14 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* ClassInformation.plist: Add IBInspector
|
|
|
|
|
2001-10-05 15:02:55 +00:00
|
|
|
2001-10-05 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormDocument.m (-loadDocument:): Typo fix - don't include
|
2001-10-05 15:03:56 +00:00
|
|
|
GormCustomView in object proxies list (fix suggested by
|
|
|
|
fvallon@fr.alcove.com).
|
2001-10-05 15:02:55 +00:00
|
|
|
|
2001-10-05 02:34:59 +00:00
|
|
|
2001-10-04 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormClassManager.m (-renameClass:): Change sender method to
|
|
|
|
work with fixed popupButtons.
|
|
|
|
|
|
|
|
* GormWindowEditor.m
|
|
|
|
(-_validateFrame:forViewPtr:withEvent:update:update): Don't compute
|
|
|
|
new intercell spacing when only onw row or col.
|
|
|
|
|
2001-10-03 17:38:46 +00:00
|
|
|
2001-10-03 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Add support for custom views
|
|
|
|
* GormClassManager.m (-allActionsForObject:): Add support for
|
|
|
|
GormCustomView
|
|
|
|
(-allOutletsForObject:): Likewise.
|
|
|
|
(-classInfoForObject:): Likewise.
|
|
|
|
* GormDocument.m (-loadDocument:): Decode GSCustomView
|
|
|
|
as GormCustomView.
|
|
|
|
(-saveDocument:): likewise for encoding.
|
|
|
|
* GormCustomView.m: New class.
|
|
|
|
* Palettes/2Controls/main.m: Add customview item.
|
|
|
|
|
2001-10-02 19:04:32 +00:00
|
|
|
2001-10-02 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Palettes/2Controls/inspectors.m: Fix NSButton and popup button
|
|
|
|
logic.
|
|
|
|
* Palettes/2Controls/GormButtonInspector.gorm: Update for new popup
|
|
|
|
coding in gui library.
|
|
|
|
|
2001-09-28 03:37:59 +00:00
|
|
|
2001-09-27 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormInspectorsManager.m (-setCurrentInspector:): Gracefully handle
|
|
|
|
an inspector creation error.
|
|
|
|
* GormWindowEditor.m (-editTextField:withEvent:): TextField value
|
|
|
|
editor method.
|
|
|
|
|
|
|
|
* Palettes/2Controls/inspectors.m: New NSBox, NSButtonCell,
|
|
|
|
NSMatrix, and NSTextField inspectors.
|
|
|
|
|
2001-09-17 17:22:10 +00:00
|
|
|
2001-09-17 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m
|
|
|
|
(-_validateFrame:forViewPtr:withEvent:update:update): Allow resize
|
|
|
|
if frame is already too small.
|
|
|
|
* Palettes/2Controls/inspectors.m: Implement button type popup
|
|
|
|
for button inspector.
|
|
|
|
|
2001-09-16 18:53:33 +00:00
|
|
|
2001-09-16 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Fixes to handle matrixes better. Editable matrix cells. Improved
|
|
|
|
editors for window size and buttons.
|
|
|
|
* GormObjectEditor.m ([GormViewSizeInspector -init]): Add size
|
|
|
|
form for resizing. New methods for resizing and obtaining
|
|
|
|
window sizes.
|
|
|
|
* GormMatrixEditor.m: New class for editing matrix cells.
|
|
|
|
* GormWindowEditor.m (_editTextView:withEvent:) Moved to
|
|
|
|
GormMatrixEditor.m.
|
|
|
|
(-_validateFrame:forViewPtr:withEvent:update:update): When replacing
|
|
|
|
view with matrix detach old view and attach matrix to document.
|
|
|
|
(-mouseDown:): Open matrix subeditor on double-click of matrix.
|
|
|
|
(-deleteSelection): Detach subviews of a box before deleting box.
|
|
|
|
|
|
|
|
* Palettes/2Controls/inspectors.m: New button inspector.
|
|
|
|
|
2001-08-21 13:39:48 +00:00
|
|
|
2001-08-21 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
Added the ability to change the font of the selected objects
|
|
|
|
* Gorm.m:
|
|
|
|
new category : NSCell (GormAdditions) (it gives us full control of
|
|
|
|
the font's changes)
|
|
|
|
added a menu item for the font panel
|
|
|
|
added a shortcut for the palettes panel (@"p")
|
|
|
|
* GormWindowEditor.m : [-acceptsFirstResponder] new method, returns YES
|
|
|
|
[-initWithObject] set self as initialFirstResponder of the window
|
|
|
|
[-changeFont:] new method, change the font of the selected controls
|
|
|
|
[-selectObjects:] update the font in the font panel
|
|
|
|
* Palettes/2Controls/GormSliderInspector.gorm: font updates
|
|
|
|
|
2001-08-20 11:18:09 +00:00
|
|
|
2001-08-20 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
* Palettes/2Controls/main.m: Add stepper control to the controls'
|
|
|
|
palette
|
|
|
|
|
|
|
|
* Add stepper inspector.
|
|
|
|
* Palettes/2Controls/inspectors.m: added GormSliderAttributsInspector
|
|
|
|
class
|
|
|
|
* Palettes/2Controls/GormSliderInspector.gorm: New file.
|
|
|
|
* Palettes/2Controls/GNUmakefile: Update
|
|
|
|
|
2001-08-19 03:46:49 +00:00
|
|
|
2001-08-18 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m (-_editTextView:withEvent:): Size the NSForm
|
|
|
|
to fit when titles are edited.
|
|
|
|
|
|
|
|
* Add slider inspector.
|
|
|
|
* Palettes/2Controls/inspectors.m: New file.
|
|
|
|
* Palettes/2Controls/GormSliderInspector.gorm: Likewise.
|
|
|
|
* Palettes/2Controls/GNUmakefile: Update
|
|
|
|
|
2001-07-19 03:50:01 +00:00
|
|
|
2001-07-18 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Version 0.0.3.
|
|
|
|
|
2001-07-10 05:40:15 +00:00
|
|
|
2001-07-10 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
GormDocument.m: ([-detachObject:]) retain object name on entry and
|
|
|
|
release on exit, or if the object is not in the name table the detach
|
|
|
|
process could cause the name to be released before we try to use it
|
|
|
|
to remove the object from the table.
|
|
|
|
|
2001-07-09 15:39:20 +00:00
|
|
|
2001-07-09 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
Gorm.m: Tidied code a little to conform to coding standards
|
|
|
|
and avoid gcc-3.0 compiler warning. Incorporated Pierres fixes to his
|
|
|
|
last patch.
|
|
|
|
|
2001-07-08 21:23:34 +00:00
|
|
|
2001-07-08 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
|
|
|
|
|
|
|
* GormWindowEditor.m ([GormWindowEditor -_editTextView:withEvent:]):
|
|
|
|
return if mouse not on cell.
|
|
|
|
|
2001-07-07 17:28:28 +00:00
|
|
|
2001-07-07 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
Gomr.m: Fixed typo in info panel and updated a little.
|
|
|
|
|
2001-07-06 17:10:51 +00:00
|
|
|
2001-07-04 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
|
|
|
|
|
|
|
Added the ability to create the .m and .h files of a class created
|
|
|
|
within Gorm (it's a basic implementation but it works)
|
|
|
|
|
|
|
|
Added an "application: openFile:" method in the class Gorm and a
|
|
|
|
GormInfo.plist file, it is now possible to open a Gorm document from
|
|
|
|
ProjectCenter (and I suppose GWorkspace but I have not checked yet)
|
|
|
|
|
|
|
|
a keyEquivalent for the inspector (i was really missing this ...)
|
|
|
|
|
|
|
|
no more [menu display] in the initialization of Gorm, I found out that
|
|
|
|
it prevented a proper docking within WindowMaker's dock, and it does
|
|
|
|
not seem to have any side effect.
|
|
|
|
|
2001-06-23 22:43:35 +00:00
|
|
|
2001-06-24 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
|
|
|
|
|
|
|
* GormWindowEditor.m ([GormWindowEditor -_validateFrame:forViewPtr:
|
|
|
|
withEvent:update:update]): fixed checks for non-matrix control. Allow
|
|
|
|
the matrix to reduce rows and columns.
|
|
|
|
|
2001-06-20 16:00:19 +00:00
|
|
|
2001-06-20 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormDocument.m (-beginArchiving): Add filesOwner class name to
|
|
|
|
archive.
|
|
|
|
(-loadDocument:): Retreive and set filesOwner class.
|
|
|
|
|
|
|
|
* GormClassManager.m (-removeOutlet:forObject:): Remove from
|
|
|
|
allOutlets even if not in extraOutlets.
|
|
|
|
(-ok:): Implement renaming outlets.
|
|
|
|
|
2001-06-18 23:04:20 +00:00
|
|
|
2001-06-18 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m
|
|
|
|
(-_validateFrame:forViewPtr:withEvent:update:update): Allow the frame
|
|
|
|
to increase even if it's already too small.
|
|
|
|
|
|
|
|
* Palettes/1Windows/main.m: Implement GormWindowSizeInspector.
|
|
|
|
* Palettes/1Windows/GormWindowSizeInspector.gorm: New file.
|
|
|
|
* Palettes/1Windows/GormWindowSizeInspector.class: Likewise.
|
|
|
|
|
2001-06-16 03:20:25 +00:00
|
|
|
2001-06-15 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m (-_editTextView:withEvent:):
|
|
|
|
New method to edit text in place (handles only NSForms now).
|
|
|
|
(-mouseDown:): Double-click on NSForm edits NSFormCell.
|
|
|
|
|
2001-06-07 03:57:51 +00:00
|
|
|
2001-06-06 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Changes to allow an NSBox to be 'edited' and add subviews, move
|
|
|
|
them around inside the box, etc.
|
|
|
|
* GormPalettesManager.m (-mouseDown): Make sure the drag view is
|
|
|
|
the proper one, not a subview of the indented item.
|
|
|
|
* GormViewKnobs.m (GormDrawOpenKnobsForRect): New function.
|
|
|
|
* GormWindowEditor: Add edit_view ivar to show which view accepts
|
|
|
|
DnD, selections, etc. Changes to allow double-click to 'edit' an
|
|
|
|
NSBox.
|
|
|
|
|
2001-05-10 03:49:57 +00:00
|
|
|
2001-05-09 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GormWindowEditor.m (-_validateFrame:forViewPtr:withEvent:update:):
|
|
|
|
New method - validate and update view during resize.
|
|
|
|
|
2001-05-08 09:43:11 +00:00
|
|
|
2001-05-08 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
Applied patch by Raphael Sebbe to add support for custom objects.
|
|
|
|
Went through the code and tried to make it conform to GNUstep
|
|
|
|
coding standards.
|
|
|
|
* GNUmakefile: Custom class modifications
|
|
|
|
* Gorm.h: ditto
|
|
|
|
* Gorm.m: ditto
|
|
|
|
* GormClassManager.h: ditto
|
|
|
|
* GormClassManager.m: ditto
|
|
|
|
* GormDocument.h: ditto
|
|
|
|
* GormDocument.m: ditto
|
|
|
|
* GormInspectorsManager.m: ditto
|
|
|
|
* GormObjectEditor.m: ditto
|
|
|
|
* GormPrivate.h: ditto
|
|
|
|
* GormWindowEditor.m: ditto
|
|
|
|
|
2001-04-25 03:08:40 +00:00
|
|
|
2001-04-24 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Version: 0.0.2 snapshot
|
|
|
|
* GNUmakefile: Add rpm package info
|
|
|
|
* Gorm.spec.in: New file.
|
|
|
|
* Documentation/{readme,news,install}.texi: Update
|
|
|
|
* README, INSTALL, NEWS: Regenerate
|
|
|
|
|
2001-02-07 07:06:16 +00:00
|
|
|
2001-02-07 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* GormInspectorsManager.m: Resize a few buttons to fit text neatly.
|
|
|
|
|
2001-02-06 08:37:33 +00:00
|
|
|
2001-02-06 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* Palettes/2Control/main.m: Added patch to tidy up and add more
|
|
|
|
objects to the controls palette ... patch by
|
|
|
|
Jason H Clouse <jhclouse@juno.com>
|
|
|
|
Removed bogus code that selected a window when it was made key.
|
|
|
|
|
2001-01-27 06:18:17 +00:00
|
|
|
2001-01-27 Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
|
|
|
* GormPalettesManager.m: Ensure that palette manager window can never
|
|
|
|
become key or main. Accept first mouse events so drag start works.
|
|
|
|
|
2000-11-07 05:11:57 +00:00
|
|
|
2000-11-06 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* Documenation: Remove use of tmpl texi files
|
|
|
|
|
2000-02-25 17:26:57 +00:00
|
|
|
Fri Feb 25 16:31:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Gorm.m: Fix a few window deallocation problems.
|
|
|
|
* GormDocument.m: Fix error in renaming objects.
|
|
|
|
|
2000-02-22 04:20:36 +00:00
|
|
|
2000-02-21 Adam Fedor <fedor@gnu.org>
|
|
|
|
|
|
|
|
* GNUmakefile: Don't make Documentation by default for those who
|
|
|
|
don't have TeX setup.
|
|
|
|
|
2000-02-14 07:50:01 +00:00
|
|
|
Sun Feb 14 06:56:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Palettes/2Control/main.m: Add popup and pulldown menu controls
|
|
|
|
though there is no way to edit them yet.
|
|
|
|
|
2000-02-06 09:33:37 +00:00
|
|
|
Sun Feb 6 8:44:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Removed InfoPanel.m and updated Gorm to use standard panel now that
|
|
|
|
NSApplication supports it.
|
|
|
|
|
2000-02-04 12:02:17 +00:00
|
|
|
Fri Feb 4 11:10:59 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Palettes/0Menu/GormMenuInspectors.m: Added code for setting
|
|
|
|
key-equivalent in menu item inspector.
|
|
|
|
|
2000-02-03 17:04:37 +00:00
|
|
|
Thu Feb 3 16:16:59 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Gorm.m: tidied start/end testing.
|
|
|
|
* GormDocument.m: ditto
|
|
|
|
|
2000-01-14 19:25:09 +00:00
|
|
|
Sat Jan 15 04:35:59 2000 Nicola Pero <n.pero@mi.flashnet.it>
|
|
|
|
|
|
|
|
* GormObjectEditor.m ([GormObjectEditor -activate]),
|
|
|
|
([GormObjectEditor -orderFront]): Trivial fix to make it compile.
|
|
|
|
|
2000-01-14 17:07:44 +00:00
|
|
|
Fri Jan 14 16:22:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormDocument.m: Fix to deactivate editors while copying to pb
|
|
|
|
and add support for a few more document setup types.
|
|
|
|
* Gorm.m: Add Inspector, Panel and Empty documents.
|
|
|
|
|
2000-01-14 10:19:57 +00:00
|
|
|
Fri Jan 14 9:34:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Palettes/OMenus/GormMenuEditor.m: ([mouseDown:]) support for
|
|
|
|
dragging menu items to rearrange their order.
|
|
|
|
|
2000-01-13 21:19:03 +00:00
|
|
|
Thu Jan 13 20:34:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Preliminary menu support (very limited).
|
|
|
|
|
2000-01-07 11:11:08 +00:00
|
|
|
Fri Jan 7 11:03:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GNUmakefile: Set Gorm_PRINCIPAL_CLASS
|
|
|
|
* Gorm.m: Do startup stuff in [-finishLaunching] and use the
|
|
|
|
NSApplicationMain() function to run the app (as well-behaved apps do).
|
|
|
|
|
2000-01-05 17:06:48 +00:00
|
|
|
Wed Jan 5 17:00:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
2000-01-05 16:34:53 +00:00
|
|
|
|
2000-01-05 17:21:07 +00:00
|
|
|
* Palettes/0Menu/main.m: First cut at code for providing menus items
|
2000-01-05 16:34:53 +00:00
|
|
|
on the palette.
|
|
|
|
* GormWindowEditor.m: accept first mouse so we act immediately that
|
|
|
|
the mouse is clicked anywhere in the window.
|
2000-01-05 17:21:07 +00:00
|
|
|
* Palettes/1Window/main.m: Tidy attributes editor and add support
|
2000-01-05 17:06:48 +00:00
|
|
|
for setting window title.
|
2000-01-05 16:34:53 +00:00
|
|
|
|
2000-01-04 17:46:26 +00:00
|
|
|
Tue Jan 4 17:42:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Added 'miniaturize', 'close', and 'revert to saved' menu items and
|
|
|
|
implemented their actions.
|
|
|
|
|
2000-01-04 12:21:17 +00:00
|
|
|
Tue Jan 4 12:13:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Various tidyups
|
|
|
|
Somewhat improved documentation
|
|
|
|
Added registration ddefaults stuff
|
|
|
|
|
2000-01-03 11:00:14 +00:00
|
|
|
Mon Jan 3 10:50:00 2000 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Rewrote testing mechanism so that we test by creating an in-memory
|
|
|
|
nib, and load that nib. This way, the testing process has no effect
|
|
|
|
on the original objects in the document we are working on.
|
|
|
|
Also changed the editor api so that we have a deactivate method.
|
|
|
|
Editors are deactivated on archiving and reactivated afterwords -
|
|
|
|
this means that we no longer need to destroy all editors during
|
|
|
|
archiving in order to stop them being included in the archive.
|
|
|
|
|
1999-12-23 16:36:51 +00:00
|
|
|
Thu Dec 23 16:32:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Added generic object inspector.
|
|
|
|
|
1999-12-22 12:20:22 +00:00
|
|
|
Wed Dec 22 12:16:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Replaced the two NeXT images for sounds and classes.
|
|
|
|
Improved drag and drop.
|
|
|
|
|
1999-12-21 15:32:54 +00:00
|
|
|
Tue Dec 21 15:30:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Added size inspector for autoresizing of views.
|
|
|
|
|
1999-12-21 08:13:35 +00:00
|
|
|
Tue Dec 21 8:10:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Added inspector for files owner so we can create connections from
|
|
|
|
objects inside the nib to the files owner.
|
|
|
|
|
1999-12-20 14:20:06 +00:00
|
|
|
Mon Dec 20 14:16:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Added connections inspector so connecting objects should work.
|
|
|
|
Use information from 'ClassInformation.plist' to specify outlets
|
|
|
|
and actions for a class.
|
|
|
|
Added GormClassManager stuff to manage this information.
|
|
|
|
|
1999-12-18 21:27:22 +00:00
|
|
|
Sat Dec 18 21:24:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Add partial support for draagging into object view.
|
|
|
|
Fix move/resize of window subviews to make sure subviews can't be
|
|
|
|
dragged outside visible area.
|
|
|
|
|
1999-12-17 18:46:03 +00:00
|
|
|
Fri Dec 17 18:44:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Add some support for connections - handle link dragging within window
|
|
|
|
editor - raise connection inspector on completion.
|
|
|
|
|
1999-12-16 21:41:21 +00:00
|
|
|
Thu Dec 16 21:35:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Change directory structure - add palettes directory, move palettes
|
|
|
|
into it, rename them, change automatic loading of palettes to do
|
|
|
|
it in palette name order.
|
|
|
|
|
1999-12-16 18:06:22 +00:00
|
|
|
Thu Dec 16 15:45:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormWindowEditor.m: Implemented support for moving and resizing
|
|
|
|
subviews within a window.
|
|
|
|
* Gorm.m: Implemented edit menu (mostly) with cut and paste.
|
|
|
|
|
1999-12-16 06:56:02 +00:00
|
|
|
Thu Dec 16 6:54:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormWindowEditor.m: Implemented selection mechanism including
|
|
|
|
marking subviews within a window by drawing knobs on them.
|
|
|
|
|
1999-12-15 15:29:27 +00:00
|
|
|
Wed Dec 15 15:27:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
1999-12-15 11:12:52 +00:00
|
|
|
|
|
|
|
Archive save/restore fixes.
|
1999-12-15 15:29:27 +00:00
|
|
|
Implementation of framework for interactive testing mode.
|
1999-12-15 11:12:52 +00:00
|
|
|
|
1999-12-14 20:20:41 +00:00
|
|
|
Tue Dec 14 20:13:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Enough for today.
|
|
|
|
* View/View.m: Added a single button to the 'View' palette.
|
|
|
|
* GormPaletteManager.m: improve DnD image ffset code.
|
|
|
|
* GormWindowEditor.m: accept dropped views in window.
|
|
|
|
|
1999-12-14 19:55:18 +00:00
|
|
|
Tue Dec 14 19:53:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
Removed GormResourcesManager - merged functionality into GormDocument
|
1999-12-14 20:20:41 +00:00
|
|
|
Loads of other minor changes too - hopefully all simplified a bit.
|
1999-12-14 19:55:18 +00:00
|
|
|
|
1999-12-14 17:38:17 +00:00
|
|
|
Tue Dec 14 17:33:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormDocument.m: Major changes - nearly all methods implemented to
|
|
|
|
including all the editor related methods.
|
|
|
|
* GormWindowEditor.m: Loads of stuff fleshed out, mostly just leaving
|
|
|
|
drawing code to do.
|
|
|
|
|
1999-12-13 20:04:31 +00:00
|
|
|
Mon Dec 13 20:04:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormViewKnobs.m: imported from IM
|
|
|
|
|
1999-12-13 17:01:35 +00:00
|
|
|
Mon Dec 13 14:57:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Gorm.h: Added NSView additions
|
|
|
|
* GormWindowEditor.m: new skeleton file.
|
|
|
|
* GormDocument.m: handle class replacement on archiving/unarchiving.
|
|
|
|
Add filesOwner and firstResponder dummy objects.
|
|
|
|
* GormResourcesManager.m: tidy files owner and first responder stuff.
|
|
|
|
* GormObjectEditor.m: Use neater mechanism for determining image to
|
|
|
|
be displayed in matrix.
|
|
|
|
|
1999-12-08 20:54:05 +00:00
|
|
|
Wed Dec 8 20:54:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* Gorm.m: ([-init]) make sure that the palettes manager is loaded.
|
|
|
|
|
1999-12-08 16:33:50 +00:00
|
|
|
Wed Dec 8 16:33:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|
|
|
|
|
|
|
* GormObjecteditor.m: ([-refreshCells]) cell highlighting fixed so
|
|
|
|
that empty cells in the matrix can't be highlighted.
|