mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-23 06:20:47 +00:00
* GormCore/GormCustomView.m
* GormCore/GormDocument.m * GormCore/GormFilePrefsManager.m * GormCore/GormHelpInspector.m * GormCore/GormPrivate.h * GormCore/GormPrivate.m * Palettes/1Windows/GormNSPanel.m * Palettes/1Windows/GormNSWindow.m * Palettes/1Windows/GormWindowSizeInspector.m * Palettes/1Windows/WindowsPalette.m * Plugins/Gorm/GormGormWrapperBuilder.m * Plugins/Nib/GormNibWrapperBuilder.m * Plugins/Nib/GormNibWrapperLoader.h: Use new header files for nib/gorm loading. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@27190 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d319fbee70
commit
c1baf0ea52
14 changed files with 32 additions and 15 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,20 @@
|
|||
2008-12-02 02:58-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormCustomView.m
|
||||
* GormCore/GormDocument.m
|
||||
* GormCore/GormFilePrefsManager.m
|
||||
* GormCore/GormHelpInspector.m
|
||||
* GormCore/GormPrivate.h
|
||||
* GormCore/GormPrivate.m
|
||||
* Palettes/1Windows/GormNSPanel.m
|
||||
* Palettes/1Windows/GormNSWindow.m
|
||||
* Palettes/1Windows/GormWindowSizeInspector.m
|
||||
* Palettes/1Windows/WindowsPalette.m
|
||||
* Plugins/Gorm/GormGormWrapperBuilder.m
|
||||
* Plugins/Nib/GormNibWrapperBuilder.m
|
||||
* Plugins/Nib/GormNibWrapperLoader.h: Use new header files for
|
||||
nib/gorm loading.
|
||||
|
||||
2008-11-27 11:43-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GNUmakefile: Remove default install to SYSTEM, per bug #24673.
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
#include <AppKit/NSFont.h>
|
||||
#include <AppKit/NSNibLoading.h>
|
||||
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include <GNUstepGUI/GSNibLoading.h>
|
||||
|
||||
@class GSCustomView;
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
#include <AppKit/NSSound.h>
|
||||
#include <AppKit/NSNibConnector.h>
|
||||
#include <AppKit/NSNibLoading.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include "NSView+GormExtensions.h"
|
||||
#include "GormSound.h"
|
||||
#include "GormImage.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
/* All Rights reserved */
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include "GormFilePrefsManager.h"
|
||||
#include "GormFunctions.h"
|
||||
#include "GormDocument.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include "GormHelpInspector.h"
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSNibLoading.h>
|
||||
|
||||
@implementation GormHelpInspector
|
||||
- (id) init
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
#include <GormCore/GormPalettesManager.h>
|
||||
#include <GormCore/GormProtocol.h>
|
||||
#include <GormCore/GormClassEditor.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include <GNUstepGUI/GSNibLoading.h>
|
||||
|
||||
extern NSString *GormLinkPboardType;
|
||||
extern NSString *GormToggleGuidelineNotification;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "GormPrivate.h"
|
||||
#include "GormFontViewController.h"
|
||||
#include "GormSetNameController.h"
|
||||
#include "GNUstepGUI/GSNibCompatibility.h"
|
||||
#include "GNUstepGUI/GSNibLoading.h"
|
||||
#include "GNUstepBase/GSObjCRuntime.h"
|
||||
|
||||
// for templates...
|
||||
|
|
|
@ -23,10 +23,11 @@
|
|||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <InterfaceBuilder/InterfaceBuilder.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include "GormNSPanel.h"
|
||||
|
||||
|
||||
// the default style mask we start with.
|
||||
static unsigned int defaultStyleMask = NSTitledWindowMask | NSClosableWindowMask
|
||||
| NSResizableWindowMask | NSMiniaturizableWindowMask;
|
||||
|
|
|
@ -23,8 +23,8 @@
|
|||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <InterfaceBuilder/InterfaceBuilder.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include "GormNSWindow.h"
|
||||
|
||||
// the default style mask we start with.
|
||||
|
|
|
@ -36,13 +36,13 @@
|
|||
|
||||
#include <Foundation/NSNotification.h>
|
||||
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <AppKit/NSButton.h>
|
||||
#include <AppKit/NSForm.h>
|
||||
#include <AppKit/NSNibLoading.h>
|
||||
#include <AppKit/NSPanel.h>
|
||||
#include <AppKit/NSWindow.h>
|
||||
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
|
||||
/*
|
||||
IBObjectAdditions category for NSPanel
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
|
||||
#include <GormCore/GormDocument.h>
|
||||
#include <GormCore/NSColorWell+GormExtensions.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
|
||||
#include "GormNSPanel.h"
|
||||
#include "GormNSWindow.h"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <GNUstepGUI/GSNibTemplates.h>
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
#include <GormCore/GormWrapperBuilder.h>
|
||||
#include <GormCore/GormClassManager.h>
|
||||
#include <GormCore/GormFilePrefsManager.h>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include <Foundation/Foundation.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSNibLoading.h>
|
||||
#include <GormCore/GormWrapperBuilder.h>
|
||||
#include <GormCore/GormClassManager.h>
|
||||
#include <GormCore/GormFilePrefsManager.h>
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#define GORM_NIBWRAPPERLOADER
|
||||
|
||||
#include <GormCore/GormWrapperLoader.h>
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSNibLoading.h>
|
||||
|
||||
@interface GormNibWrapperLoader : GormWrapperLoader
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue