Move of editor code into palettes. In general, editor classes should live in the palettes unless it's a class that Gorm can create without one, such as a box, splitview, or scrollview.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19331 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-05-14 22:39:24 +00:00
parent 73cf5625be
commit 6a8e6d49f0
8 changed files with 13 additions and 7 deletions

View file

@ -1,3 +1,10 @@
2004-05-14 17:46 Gregory John Casamento <greg_casamento@yahoo.com>
* GormButtonEditor.[hm]: Moved to the Controls palette, removed from
the main directory. In general, inspectors and editors should
appear in the palette which provides those things.
* GormTabViewEditor.[hm]: Moved to Containers palette.
2004-05-14 11:36 Gregory John Casamento <greg_casamento@yahoo.com> 2004-05-14 11:36 Gregory John Casamento <greg_casamento@yahoo.com>
* GormButtonEditor.m: Added a line between some methods to * GormButtonEditor.m: Added a line between some methods to

View file

@ -138,6 +138,7 @@ Gorm_HEADERS = \
GormPrivate.h \ GormPrivate.h \
GormCustomView.h \ GormCustomView.h \
GormOutlineView.h \ GormOutlineView.h \
GormBoxEditor.h \
GormCustomClassInspector.h \ GormCustomClassInspector.h \
GormScrollViewAttributesInspector.h \ GormScrollViewAttributesInspector.h \
GormNSSplitViewInspector.h \ GormNSSplitViewInspector.h \
@ -150,15 +151,12 @@ Gorm_HEADERS = \
GormViewWithContentViewEditor.h \ GormViewWithContentViewEditor.h \
GormViewWindow.h \ GormViewWindow.h \
GormViewKnobs.h \ GormViewKnobs.h \
GormBoxEditor.h \
GormClassManager.h \ GormClassManager.h \
GormControlEditor.h \ GormControlEditor.h \
GormDocument.h \ GormDocument.h \
GormFilesOwner.h \ GormFilesOwner.h \
GormInspectorsManager.h \ GormInspectorsManager.h \
GormInternalViewEditor.h \ GormInternalViewEditor.h \
GormButtonEditor.h \
GormTabViewEditor.h \
GormSplitViewEditor.h \ GormSplitViewEditor.h \
GormPlacementInfo.h \ GormPlacementInfo.h \
GormPrefController.h\ GormPrefController.h\
@ -176,6 +174,7 @@ Gorm_OBJC_FILES = \
Gorm.m \ Gorm.m \
GormDocument.m \ GormDocument.m \
GModelDecoder.m \ GModelDecoder.m \
GormBoxEditor.m \
GormCustomView.m \ GormCustomView.m \
GormViewKnobs.m \ GormViewKnobs.m \
GormFilesOwner.m \ GormFilesOwner.m \
@ -194,11 +193,8 @@ Gorm_OBJC_FILES = \
GormViewWithSubviewsEditor.m \ GormViewWithSubviewsEditor.m \
GormViewWithContentViewEditor.m \ GormViewWithContentViewEditor.m \
GormViewWindow.m \ GormViewWindow.m \
GormBoxEditor.m \
GormControlEditor.m \ GormControlEditor.m \
GormButtonEditor.m \
GormSplitViewEditor.m \ GormSplitViewEditor.m \
GormTabViewEditor.m \
GormInternalViewEditor.m \ GormInternalViewEditor.m \
GormPalettesManager.m \ GormPalettesManager.m \
GormOutlineView.m \ GormOutlineView.m \

View file

@ -28,7 +28,8 @@ PALETTE_NAME = 2Controls
2Controls_OBJC_FILES = \ 2Controls_OBJC_FILES = \
main.m \ main.m \
inspectors.m \ inspectors.m \
GormPopUpButtonEditor.m GormPopUpButtonEditor.m \
GormButtonEditor.m
2Controls_PRINCIPAL_CLASS = ControlsPalette 2Controls_PRINCIPAL_CLASS = ControlsPalette

View file

@ -31,12 +31,14 @@ PALETTE_NAME = 3Containers
GormNSBrowser.m \ GormNSBrowser.m \
GormNSTableView.m \ GormNSTableView.m \
GormTableViewEditor.m \ GormTableViewEditor.m \
GormTabViewEditor.m \
GormNSOutlineView.m GormNSOutlineView.m
3Containers_HEADER_FILES = \ 3Containers_HEADER_FILES = \
GormNSBrowser.h \ GormNSBrowser.h \
GormNSTableView.h \ GormNSTableView.h \
GormTableViewEditor.h \ GormTableViewEditor.h \
GormTabViewEditor.h \
GormNSOutlineView.h GormNSOutlineView.h
3Containers_PRINCIPAL_CLASS = ContainersPalette 3Containers_PRINCIPAL_CLASS = ContainersPalette