Skip to content

Commit

Permalink
Add new views
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed Dec 26, 2024
1 parent 4a23bc8 commit f22ba14
Show file tree
Hide file tree
Showing 7 changed files with 154 additions and 630 deletions.
4 changes: 4 additions & 0 deletions GormCore/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ GormCore_HEADER_FILES = \
GormNSWindow.h \
GormObjectEditor.h \
GormObjectInspector.h \
GormObjectMainView.h \
GormObjectOutlineView.h \
GormOpenGLView.h \
GormOutlineView.h \
GormPalettesManager.h \
Expand Down Expand Up @@ -148,6 +150,8 @@ GormCore_OBJC_FILES = \
GormNSWindow.m \
GormObjectEditor.m \
GormObjectInspector.m \
GormObjectMainView.m \
GormObjectOutlineView.m \
GormOpenGLView.m \
GormOutlineView.m \
GormPalettesManager.m \
Expand Down
45 changes: 45 additions & 0 deletions GormCore/GormObjectMainView.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/* Definition of class GormObjectMainView
Copyright (C) 2024 Free Software Foundation, Inc.
By: Gregory John Casamento
Date: 25-12-2024
This file is part of GNUstep.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
*/

#ifndef _GormObjectMainView_h_INCLUDE
#define _GormObjectMainView_h_INCLUDE

#import <AppKit/NSView.h>
#import <GNUstepBase/GSVersionMacros.h>

#if defined(__cplusplus)
extern "C" {
#endif

GS_EXPORT_CLASS
@interface GormObjectMainView : NSView

@end

#if defined(__cplusplus)
}
#endif

#endif /* _GormObjectMainView_h_INCLUDE */

30 changes: 30 additions & 0 deletions GormCore/GormObjectMainView.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* Implementation of class GormObjectMainView
Copyright (C) 2024 Free Software Foundation, Inc.
By: Gregory John Casamento
Date: 25-12-2024
This file is part of GNUstep.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110 USA.
*/

#import "GormObjectMainView.h"

@implementation GormObjectMainView

@end

43 changes: 0 additions & 43 deletions GormCore/GormObjectOutline.h

This file was deleted.

Loading

0 comments on commit f22ba14

Please sign in to comment.