mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
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:
parent
73cf5625be
commit
6a8e6d49f0
8 changed files with 13 additions and 7 deletions
|
@ -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>
|
||||
|
||||
* GormButtonEditor.m: Added a line between some methods to
|
||||
|
|
|
@ -138,6 +138,7 @@ Gorm_HEADERS = \
|
|||
GormPrivate.h \
|
||||
GormCustomView.h \
|
||||
GormOutlineView.h \
|
||||
GormBoxEditor.h \
|
||||
GormCustomClassInspector.h \
|
||||
GormScrollViewAttributesInspector.h \
|
||||
GormNSSplitViewInspector.h \
|
||||
|
@ -150,15 +151,12 @@ Gorm_HEADERS = \
|
|||
GormViewWithContentViewEditor.h \
|
||||
GormViewWindow.h \
|
||||
GormViewKnobs.h \
|
||||
GormBoxEditor.h \
|
||||
GormClassManager.h \
|
||||
GormControlEditor.h \
|
||||
GormDocument.h \
|
||||
GormFilesOwner.h \
|
||||
GormInspectorsManager.h \
|
||||
GormInternalViewEditor.h \
|
||||
GormButtonEditor.h \
|
||||
GormTabViewEditor.h \
|
||||
GormSplitViewEditor.h \
|
||||
GormPlacementInfo.h \
|
||||
GormPrefController.h\
|
||||
|
@ -176,6 +174,7 @@ Gorm_OBJC_FILES = \
|
|||
Gorm.m \
|
||||
GormDocument.m \
|
||||
GModelDecoder.m \
|
||||
GormBoxEditor.m \
|
||||
GormCustomView.m \
|
||||
GormViewKnobs.m \
|
||||
GormFilesOwner.m \
|
||||
|
@ -194,11 +193,8 @@ Gorm_OBJC_FILES = \
|
|||
GormViewWithSubviewsEditor.m \
|
||||
GormViewWithContentViewEditor.m \
|
||||
GormViewWindow.m \
|
||||
GormBoxEditor.m \
|
||||
GormControlEditor.m \
|
||||
GormButtonEditor.m \
|
||||
GormSplitViewEditor.m \
|
||||
GormTabViewEditor.m \
|
||||
GormInternalViewEditor.m \
|
||||
GormPalettesManager.m \
|
||||
GormOutlineView.m \
|
||||
|
|
|
@ -28,7 +28,8 @@ PALETTE_NAME = 2Controls
|
|||
2Controls_OBJC_FILES = \
|
||||
main.m \
|
||||
inspectors.m \
|
||||
GormPopUpButtonEditor.m
|
||||
GormPopUpButtonEditor.m \
|
||||
GormButtonEditor.m
|
||||
|
||||
2Controls_PRINCIPAL_CLASS = ControlsPalette
|
||||
|
||||
|
|
|
@ -31,12 +31,14 @@ PALETTE_NAME = 3Containers
|
|||
GormNSBrowser.m \
|
||||
GormNSTableView.m \
|
||||
GormTableViewEditor.m \
|
||||
GormTabViewEditor.m \
|
||||
GormNSOutlineView.m
|
||||
|
||||
3Containers_HEADER_FILES = \
|
||||
GormNSBrowser.h \
|
||||
GormNSTableView.h \
|
||||
GormTableViewEditor.h \
|
||||
GormTabViewEditor.h \
|
||||
GormNSOutlineView.h
|
||||
|
||||
3Containers_PRINCIPAL_CLASS = ContainersPalette
|
||||
|
|
Loading…
Reference in a new issue