File: Controller.m

package info (click to toggle)
viewpdf.app 1%3A0.2dfsg1-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 512 kB
  • sloc: objc: 2,436; makefile: 18; sh: 9
file content (507 lines) | stat: -rw-r--r-- 13,838 bytes parent folder | download | duplicates (7)
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/*
 * Copyright (C) 2005  Stefan Kleine Stegemann
 *
 * This program 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 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#import "Controller.h"
#import "Document.h"
#import "CenteringClipView.h"

/**
 * Non-Public methods.
 */
@interface Controller (Private)
- (Document*) _myDocument;
- (void) _updatePage: (NSNotification*)aNotification;
- (void) _zoomFactorUpdated: (NSNotification*)aNotification;
- (void) _toggleResizePolicy: (ResizePolicy)aPolicy;
- (void) _setResizePolicy: (ResizePolicy)aPolicy;
- (void) _setupScrollView;
- (void) _addDocumentTools;
- (void) _createSinglePageView;
- (void) _setInitialWindowSize;
- (NSRect) _calcPreferredFrameInFrame: (NSRect)maxFrame withPDFSize: (NSSize)aPDFSize;
- (NSSize) _calcPDFContentSize: (NSSize)aSize add: (BOOL)addToSize;
@end


@implementation Controller

- (id) initWithWindow: (NSWindow*)aWindow
{
   self = [super initWithWindow: aWindow];
   if (self)
   {
      singlePageView = nil;
      scrollView = nil;
      tools = nil;
      menuState = nil;
      windowIsVisible = NO;
   }

   return self;
}

- (void) dealloc
{
   NSLog(@"dealloc Controller");

   [[NSNotificationCenter defaultCenter] removeObserver: self];
   [menuState release];
   [singlePageView release];
   [super dealloc];
}

- (void) windowDidLoad
{
   [super windowDidLoad];
   
   [self _setupScrollView];
   [self _addDocumentTools];
   [self _createSinglePageView];
   [self goSinglePage: nil];

   // initialize the SinglePageView with the document's
   // PDFDocument.
   [singlePageView setDocument: [self _myDocument]];
   
   [[NSNotificationCenter defaultCenter]
         addObserver: self
            selector: @selector(_zoomFactorUpdated:)
                name: kZoomFactorChangedNotification
              object: singlePageView];

   [[NSNotificationCenter defaultCenter]
         addObserver: self
            selector: @selector(_updatePage:)
                name: kDocumentPageChangedNotification
              object: [self _myDocument]];
   
   // setup the multipageview
   //multipageview = [[MultiPageView alloc] initWithFrame: [pdfview frame]
   //                                            scaleFactor: 25];
   //[multipageview setDocument: [[self _myDocument] pdfDocument]];
   //[scrollview setDocumentView: multipageview];
   
   [self _setInitialWindowSize];

   // trigger initial setup
   [[self _myDocument] setPageByIndex: 1];
   
   // display initial zoom factor & page count
   [tools setZoom: [singlePageView zoom]];
   [tools setPageCount: [[self _myDocument] countPages]];
   
   // setup a delegate that keeps track of the menu's state
   menuState = [[MenuState alloc] initWithDocument: [self _myDocument]
                                       contentView: singlePageView];
}

- (void) windowDidBecomeMain: (NSNotification*)aNotification
{
   // We need to ensure, that the top of the content is visible
   // right after the window appears on the screen for the first
   // time. windowDidLoad here doesn"t work because the window manager
   // may decide to change the window size when it is put on the
   // screen (which takes place AFTER windowDidLoad)
   if (!windowIsVisible)
   {
      [singlePageView displayContentTop];
      windowIsVisible = YES;
   }
   
   [menuState stateChanged];
}

- (NSRect) windowWillUseStandardFrame: (NSWindow*)aWindow defaultFrame: (NSRect)aFrame
{
   return [self _calcPreferredFrameInFrame: aFrame
                               withPDFSize: [singlePageView preferredSize]];
}

- (IBAction) nextPage: (id)aSender
{
   [[self _myDocument] nextPage];
}

- (IBAction) previousPage: (id)aSender
{
   [[self _myDocument] previousPage];
}

- (IBAction) firstPage: (id)aSender
{
   [[self _myDocument] setPageByIndex: 1];
}

- (IBAction) lastPage: (id)aSender
{
   [[self _myDocument] setPageByIndex: [[self _myDocument] countPages]];
}

- (IBAction) takePageFrom: (id)aSender
{
   int page = [aSender intValue];
   if ((page > 0) && (page <= [[self _myDocument] countPages]))
   {
      [[self _myDocument] setPageByIndex: page];
   }
   else
   {
      // if the user entered "0", go to last page
      NSString* test = [[aSender stringValue] stringByTrimmingCharactersInSet:
                          [NSCharacterSet whitespaceCharacterSet]];
      if ([test hasPrefix: @"0"])
      {
         [self lastPage: nil];
      }
      else
      {
         [self _updatePage: nil];
      }
   }
}

- (IBAction) enterPageNumber: (id)aSender
{
   [tools focusPageField];
}

- (IBAction) takeZoomFrom: (id)aSender
{
   float zoom = [aSender floatValue];
   if (zoom > 0)
   {
      [singlePageView setZoom: zoom];
   }
   else
   {
      [self _zoomFactorUpdated: nil];
   }
}

- (IBAction) zoomIn: (id)aSender
{
   [self _setResizePolicy: ResizePolicyNone];
   [singlePageView zoomIn];
}

- (IBAction) zoomOut: (id)aSender
{
   [self _setResizePolicy: ResizePolicyNone];
   [singlePageView zoomOut];
}

- (IBAction) zoomActualSize: (id)aSender
{
   [self _setResizePolicy: ResizePolicyNone];
   [singlePageView setZoom: 100.0];
}

- (IBAction) zoomToFit: (id)aSender
{
   [self _setResizePolicy: ResizePolicyNone];
   [singlePageView zoomContentToFit: [scrollView contentSize]];
}

- (IBAction) toggleFitWidth: (id)aSender
{
   [self _toggleResizePolicy: ResizePolicyFitWidth];
}

- (IBAction) toggleFitHeight: (id)aSender
{
   [self _toggleResizePolicy: ResizePolicyFitHeight];
}

- (IBAction) toggleFitPage: (id)aSender
{
   [self _toggleResizePolicy: ResizePolicyFitPage];
}

- (IBAction) scrollPageUp: (id)aSender
{
   [singlePageView scrollUpOnePage];
}

- (IBAction) scrollPageDown: (id)aSender
{
   [singlePageView scrollDownOnePage];
}

- (IBAction) scrollLineUp: (id)aSender
{
   [singlePageView scrollUpOneLine];
}

- (IBAction) scrollLineDown: (id)aSender
{
   [singlePageView scrollDownOneLine];
}

- (IBAction) scrollToTop: (id)aSender
{
   [singlePageView displayContentTop];
}

- (IBAction) scrollToBottom: (id)aSender
{
   [singlePageView displayContentBottom];
}

- (IBAction) scrollLineLeft: (id)aSender
{
   [singlePageView scrollLeftOneLine];
}

- (IBAction) scrollLineRight: (id)aSender
{
   [singlePageView scrollRightOneLine];
}

- (IBAction) scrollToLeftEdge: (id)aSender
{
   [singlePageView displayContentLeft];
}

- (IBAction) scrollToRightEdge: (id)aSender;
{
   [singlePageView displayContentRight];
}

- (IBAction) goSinglePage: (id)aSender
{
   [scrollView setDocumentView: singlePageView];
   NSAssert([singlePageView paperColor], @"content view does not have a paper color");
   [scrollView setBackgroundColor: [singlePageView paperColor]];
}

- (IBAction) close: (id)aSender
{
   [self close];
}

@end

/* ----------------------------------------------------- */
/*  Category Private                                     */
/* ----------------------------------------------------- */

@implementation Controller (Private)

- (Document*) _myDocument
{
   return (Document*)[self document];
}

- (void) _updatePage: (NSNotification*)aNotification
{
   [tools setPage: [[self _myDocument] pageIndex]];
   [singlePageView update];
}

- (void) _zoomFactorUpdated: (NSNotification*)aNotification
{
   [tools setZoom: [singlePageView zoom]];
   [singlePageView update];
}

- (void) _toggleResizePolicy: (ResizePolicy)aPolicy
{
   ResizePolicy newPolicy;

   if ([singlePageView resizePolicy] == aPolicy)
   {
      newPolicy = ResizePolicyNone;
   }
   else
   {
      newPolicy = aPolicy;
   }

   [self _setResizePolicy: newPolicy];
}

- (void) _setResizePolicy: (ResizePolicy)aPolicy
{
   if ([singlePageView resizePolicy] == aPolicy)
   {
      return;
   }

   [singlePageView setResizePolicy: aPolicy];
   [tools setResizePolicy: [singlePageView resizePolicy]];
   [menuState stateChanged];
}

- (void) _setupScrollView
{
   NSAssert(scrollView, @"scrollview not set");
   
   // make the scrollview center it's document view
   id docView = [[scrollView documentView] retain];
   NSRect clipViewFrame = [[scrollView contentView] frame];
   NSClipView* newClipView = [[CenteringClipView alloc] initWithFrame: clipViewFrame];
   [newClipView  setBackgroundColor: [NSColor windowBackgroundColor]];
   [scrollView setContentView: newClipView];
   [scrollView setDocumentView: docView];
   [newClipView release];
   [docView release];
   
   [scrollView setHasVerticalScroller: YES];
   [scrollView setHasHorizontalScroller: YES];
   [scrollView setDrawsBackground: YES];
}

- (void) _addDocumentTools
{
   tools = [[DocumentTools alloc] initWithFrame: NSMakeRect(0, 0, 0, 0) target: self];
   
   // we need to re-frame the scrollview such that the tools view
   // fits underneath it
   NSRect scrollViewF = [scrollView frame];
   [scrollView setFrame: 
      NSMakeRect(NSMinX(scrollViewF), NSMinY(scrollViewF) + NSHeight([tools frame]),
                 NSWidth(scrollViewF), NSHeight(scrollViewF) - NSHeight([tools frame]))];
                 
   [[[self window] contentView] addSubview: tools];
   [tools release];
}

- (void) _createSinglePageView
{
   NSSize viewSize = [scrollView contentSize];
   NSRect frame = NSMakeRect(0, 0, viewSize.width, viewSize.height);
   singlePageView = [[SinglePageView alloc] initWithFrame: frame];
}

- (void) _setInitialWindowSize
{
   NSRect screenFrame = [[NSScreen mainScreen] frame];

#ifndef GNUSTEP
   // Reserve a little space at the top such that the window
   // does not appear "glued" to the menu bar
   screenFrame.size.height = NSHeight(screenFrame) - 30;
#endif

   NSRect winFrame = [self _calcPreferredFrameInFrame: screenFrame
                                          withPDFSize: [singlePageView preferredSize]];

   NSRect contentRect = [NSWindow contentRectForFrameRect: winFrame
                                                styleMask: [[self window] styleMask]];

   NSSize availableSize = [self _calcPDFContentSize: contentRect.size add: NO];
   NSSize usedSize = [singlePageView zoomContentToFit: availableSize];
   // recalc frame with actually used size
   winFrame = [self _calcPreferredFrameInFrame: screenFrame
                                   withPDFSize: usedSize];

   [[self window] setFrame: winFrame display: YES];
}

- (NSRect) _calcPreferredFrameInFrame: (NSRect)maxFrame withPDFSize: (NSSize)aPDFSize
{
#ifdef GNUSTEP
   // Reserve a little extra space at the top of the screen. This is necessary
   // if GNUstep does not draw the window decorations but the window manager.
   // Otherwise, the window might appear with the titlebar off-screen
   maxFrame.size.height = NSHeight(maxFrame) - 40;
#endif

   NSSize newContentSize = [self _calcPDFContentSize: aPDFSize add: YES];

   NSRect contentRect = [NSWindow contentRectForFrameRect: [[self window] frame]
                                                styleMask: [[self window] styleMask]];
   contentRect.size = newContentSize;

   NSRect newFrame = [NSWindow frameRectForContentRect: contentRect
                                             styleMask: [[self window] styleMask]];

   // constrain the computed frame inside the screen dimensions (aFrame)
   // (OSX works fine without, but I guess, with GNUstep, we're better of
   // taking care of this)

   //NSLog(@"NEW FRAME 1: %f @ %f - %f @ %f",
   //      NSMinX(newFrame), NSMinY(newFrame), NSMaxX(newFrame), NSMaxY(newFrame));

   // constrain height
   if (NSMinY(newFrame) < NSMinY(maxFrame))
   {
      newFrame.origin.x = NSMinY(maxFrame);
   }
   if (NSMaxY(newFrame) > NSHeight(maxFrame))
   {
      newFrame.origin.y = NSHeight(maxFrame) - NSHeight(newFrame);
      if (NSMinY(newFrame) < NSMinY(maxFrame))
      {
         newFrame.origin.y = NSMinY(maxFrame);
         newFrame.size.height = NSHeight(maxFrame);
      }
   }

   // constrain width
   if (NSMinX(newFrame) < NSMinX(maxFrame))
   {
      newFrame.origin.y = NSMinX(maxFrame);
   }
   if (NSMaxX(newFrame) > NSWidth(maxFrame))
   {
      newFrame.origin.x = NSWidth(maxFrame) - NSWidth(newFrame);
      if (NSMinX(newFrame) < NSMinX(maxFrame))
      {
         newFrame.origin.x = NSMinX(maxFrame);
         newFrame.size.width = NSWidth(maxFrame);
      }
   }

   // if the new frame has any anomalies, and return the maximum frame
   // (otherwise, the window may dissapear from the screen)
   if ((NSWidth(newFrame) <= 0) || (NSHeight(newFrame) <= 0))
   {
      return maxFrame;
   }

   //NSLog(@"NEW FRAME 2: %f @ %f - %f @ %f",
   //      NSMinX(newFrame), NSMinY(newFrame), NSMaxX(newFrame), NSMaxY(newFrame));

   return newFrame;
}

/** Add or subtract the size of additional components in the window (tools, scroller)
    to or from a rectangle.  */
- (NSSize) _calcPDFContentSize: (NSSize)aSize add: (BOOL)addToSize
{
   float factor = (addToSize ? 1 : -1);
   
   NSSize newSize = aSize;
   
   newSize.height += NSHeight([tools frame]) * factor;
   newSize.height += NSHeight([[scrollView horizontalScroller] frame]) * factor;
   newSize.width += NSWidth([[scrollView verticalScroller] frame]) * factor;

#ifdef GNUSTEP
   // add a little extra space, otherwise scrollbars appear
   // on GNUstep
   float additionalSpace = 2 * (addToSize ? 1 : -1);
   newSize.width += additionalSpace;
   newSize.height += additionalSpace;
#endif

   return newSize;
}

@end