File: AdvancedEntityInspector.m

package info (click to toggle)
gnustep-dl2 0.12.0%2Bgit20250112-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,092 kB
  • sloc: objc: 68,223; makefile: 60; sh: 48
file content (252 lines) | stat: -rw-r--r-- 6,666 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 AdvancedEntityInspector.m
 
 Author: David Wetzel <dave@turbocat.de>
 Date: 2010
 
 This file is part of EOModelEditor.
 
 EOModelEditor is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or
 (at your option) any later version.
 
 EOModelEditor 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 General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with EOModelEditor; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "AdvancedEntityInspector.h"
#include <EOModeler/EOMInspector.h>
#include "EOModeler/EOModelerApp.h"
#import <EOAccess/EOAccess.h>

#include <AppKit/AppKit.h>

#ifndef GNUSTEP
#include <GNUstepBase/GNUstep.h>
#endif

#import "../TableViewController.h"

EOModelerApp *EOMApp;

@implementation AdvancedEntityInspector

- (void) dealloc
{
  DESTROY(_tableViewController);
  DESTROY(_allEntites);
  DESTROY(_parentEntity);
  DESTROY(_currentEntity);
  
  [super dealloc];
}

- (float) displayOrder
{
  return 3;
}

- (void) buildAllEntities
{
  NSMutableArray * entArray = [NSMutableArray array];
  NSEnumerator   * enumer   = [[[[EOMApp activeDocument] eomodel] entities] objectEnumerator];
  EOEntity       * entity;
  
  while ((entity = [enumer nextObject])) {
    NSMutableDictionary * dict = [NSMutableDictionary dictionaryWithObjectsAndKeys:[entity name], @"name",
                                  [entity className], @"className",
                                  [NSNumber numberWithInt:0], @"selected",
                                  nil];
    if ((_parentEntity) && ([_parentEntity isEqual:entity])) {
      [dict setObject:[NSNumber numberWithInt:1]
               forKey:@"selected"];
    }
    [entArray addObject:dict];
  }
  
  ASSIGN(_allEntites, entArray);
  [_tableViewController setRepresentedObject:_allEntites];
  [parentTableView reloadData];
}

- (NSButtonCell*) _cellWithImageNamed:(NSString*) aName
{
  NSButtonCell *cell = [[NSButtonCell alloc] initImageCell:nil];
  [cell setButtonType:NSSwitchButton];
  [cell setImagePosition:NSImageOnly];
  [cell setBordered:NO];
  [cell setBezeled:NO];
  [cell setAlternateImage:[NSImage imageNamed:aName]];
  [cell setControlSize: NSSmallControlSize];
  [cell setEditable:NO];
  
  return AUTORELEASE(cell);
}

- (void) initColums
{
  NSTableColumn * column;
  NSButtonCell  * cell;
  
  column = [parentTableView tableColumnWithIdentifier:@"selected"];
  if (column) {
    cell = [self _cellWithImageNamed:@"dimple"];
    [cell setEnabled:NO];
    [cell setImageDimsWhenDisabled:NO];
    [column setEditable: NO];
    [column setDataCell:cell];
    
  }
}

- (void) awakeFromGSMarkup
{
  [self initColums];
  _tableViewController = [TableViewController new];
  [parentTableView setDataSource:_tableViewController];
  [parentTableView setDelegate:_tableViewController];
  
  [[NSNotificationCenter defaultCenter] addObserver:self
                                           selector:@selector(tableViewSelectionDidChange:) 
                                               name:NSTableViewSelectionDidChangeNotification 
                                             object:parentTableView];
  
  
}

- (NSString *)displayName
{
  return @"Advanced Entity";
}
- (BOOL) canInspectObject:(id)anObject
{
  return [anObject isKindOfClass:[EOEntity class]];
}

- (IBAction) readOnlyClicked:(id) sender
{
  [_currentEntity setReadOnly:[sender state]];
}

- (IBAction) cacheClicked:(id) sender
{
  [_currentEntity setCachesObjects:[sender state]];
}

- (IBAction) abstractClicked:(id) sender
{
  [_currentEntity setIsAbstractEntity:[sender state]];
}

- (IBAction) parentButtonClicked:(id) sender
{
  EOEntity *selectedParent;
  NSInteger selectedRow = [parentTableView selectedRow];
  
  selectedParent = [[[_currentEntity model] entities] objectAtIndex:selectedRow];
  if (_parentEntity)
  {
    [_parentEntity removeSubEntity:_currentEntity];
    DESTROY(_parentEntity);
  }
  else
  {
    [selectedParent addSubEntity:_currentEntity];
    ASSIGN(_parentEntity, selectedParent);
  }
  [self buildAllEntities];
}

- (void) controlTextDidEndEditing:(NSNotification *)notif
{
  id sender = [notif object];
  
  if (sender == batchFaultingSizeText) {
    int iValue = [sender intValue];
    [_currentEntity setMaxNumberOfInstancesToBatchFetch:(iValue >= 0) ? iValue:0];
    return;
  }
  if (sender == externalQueryText) {
    [_currentEntity setExternalQuery:[externalQueryText stringValue]];
    return;
  }
  if (sender == qualifierText) {
    // checkme!
    [_currentEntity setRestrictingQualifier:[externalQueryText stringValue]];
    return;
  }
}

- (IBAction) tableViewClicked:(id) sender
{
}

- (void) refresh
{
  NSString * tmpStr;

  ASSIGN(_currentEntity, (EOEntity *) [self selectedObject]);

  [batchFaultingSizeText setIntValue:[_currentEntity maxNumberOfInstancesToBatchFetch]];
  
  tmpStr = [_currentEntity externalQuery];
  
  [externalQueryText setStringValue:(tmpStr != nil) ? tmpStr : @""];
  
  
  // I am not sure if this is correct. How to convert a Qualifier to / from a string?
  tmpStr = [_currentEntity restrictingQualifier];
  
  [qualifierText setStringValue:(tmpStr != nil) ? tmpStr : @""];
    
  [readOnlySwitch setState:[_currentEntity isReadOnly]];
  [cacheSwitch setState:[_currentEntity cachesObjects]];
  [abstactSwitch setState:[_currentEntity isAbstractEntity]];
  
  
  ASSIGN(_parentEntity,[_currentEntity parentEntity]);
  if (_parentEntity) {
    [parentButton setState: NSOnState];
    [parentButton setEnabled:NO];
  } else {
    [parentButton setState: NSOffState];
    [parentButton setEnabled:YES];
  }

  [self buildAllEntities];

}


- (void)tableViewSelectionDidChange:(NSNotification *) notification
{
  NSArray * selectedObjects = nil;
    selectedObjects = [_tableViewController selectedObjects];
    
    if ([selectedObjects count] > 0) {
      NSMutableDictionary * dict = [selectedObjects objectAtIndex:0];
      
      if ((_parentEntity) && ([[dict objectForKey:@"name"] isEqual:[_parentEntity name]])) {
        [parentButton setState: NSOnState];
        [parentButton setEnabled:YES];
        return;
      }
      
      if ((!_parentEntity)) {
        [parentButton setState: NSOffState];
        [parentButton setEnabled:YES];
      } else {
        [parentButton setEnabled:NO];
      }
      
    }
}

@end