File: Affiche.m

package info (click to toggle)
affiche 0.6.0-10
  • links: PTS
  • area: main
  • in suites: buster
  • size: 620 kB
  • sloc: objc: 2,402; makefile: 21
file content (687 lines) | stat: -rw-r--r-- 17,381 bytes parent folder | download | duplicates (6)
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
/*
**  Affiche.m
**
**  Copyright (c) 2001, 2002
**
**  Author: Ludovic Marcotte <ludovic@Sophos.ca>
**
**  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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#import "Affiche.h"

#import "Constants.h"
#import "Note.h"
#import "NoteInfoWindowController.h"
#import "NoteView.h"
#import "NoteWindowController.h"
#import "PreferencesPanelController.h"

NSString *PathToNotes()
{
  return [NSString stringWithFormat: @"%@/%@",
                   AfficheUserLibraryPath(), @"Notes"];
}

static PreferencesPanelController *preferencesPanelController;

@implementation Affiche

//
//
//
- (id) init
{
  self = [super init];
  
  return self;
}

- (void) dealloc
{
  RELEASE(allNotes);

  [super dealloc];
}

//
// action methods
//

- (IBAction) closeNote: (id) sender
{
  if ( [NoteWindowController lastNoteWindowOnTop] )
    {
      if ( [[[NoteWindowController lastNoteWindowOnTop] 
	      windowController] windowShouldClose: nil] )
	{
	  [[NoteWindowController lastNoteWindowOnTop] close];
	}
    }
  else
    {
      NSBeep();
    }
}

- (IBAction) exportText: (id) sender
{
  if ( [NoteWindowController lastNoteWindowOnTop] )
    {
      NoteWindowController *noteWindowController;
      NSSavePanel *aSavePanel;
      int aChoice;
      
      noteWindowController = [[NoteWindowController lastNoteWindowOnTop] delegate];
      
      aSavePanel = [NSSavePanel savePanel];
      [aSavePanel setAccessoryView: nil];
      [aSavePanel setRequiredFileType: @""];
      
      aChoice = [aSavePanel runModalForDirectory: NSHomeDirectory()
			    file: @"note.txt"];
      
      /* if successful, save file under designated name */
      if (aChoice == NSOKButton)
	{
	  if (! [[[noteWindowController textView] string] writeToFile: [aSavePanel filename]
							  atomically: YES] )
	    {
	      NSBeep();
	    }
	}
    }
  else
    {
      NSBeep();
    }
}

- (IBAction) importText: (id) sender
{
  NSArray *fileToOpen;
  NSOpenPanel *oPanel;
  int count, result;
  
  oPanel = [NSOpenPanel openPanel];
  [oPanel setAllowsMultipleSelection:NO];
  result = [oPanel runModalForDirectory:NSHomeDirectory() file:nil types:nil];
  
  if (result == NSOKButton)
    {
      fileToOpen = [oPanel filenames];
      count = [fileToOpen count];
      
      if (count > 0)
	{
	  NSAttributedString *anAttributedString;
	  NSString *fileName;
	  Note *aNote;
	  
	  fileName = [fileToOpen objectAtIndex: 0];
	  
	  aNote = AUTORELEASE([[Note alloc] init]);
	  anAttributedString = [[NSAttributedString alloc] initWithString: [NSString stringWithContentsOfFile: fileName]];
	  [aNote setValue: anAttributedString];
	  RELEASE(anAttributedString);

	  [allNotes addObject: aNote];
	  [self synchronize];

	  [self _showNewNote: aNote];
	}
    }
}

- (IBAction) newNote: (id) sender
{
  Note *aNote;
  
  aNote = AUTORELEASE([[Note alloc] init]);
  [allNotes addObject: aNote];
  
  [self _showNewNote: aNote];

  // We sync for saving that new note right now
  [self synchronize];
}


//
// Our Affiche service!
//
- (void) newNote: (NSPasteboard *) pboard
	userData: (NSString *) userData
	   error: (NSString **) error
{
  NSString *aString;
  NSArray *allTypes;
  Note *aNote;

  allTypes = [pboard types];
  
  if ( ![allTypes containsObject: NSStringPboardType])
    {
      *error = @"No string type supplied on pasteboard";
      return;
    }
  
  aString = [pboard stringForType: NSStringPboardType];
  
  if (aString == nil)
    {
      *error = @"No string value supplied on pasteboard";
      return;
    }
  
  aNote = AUTORELEASE([[Note alloc] init]);
  [aNote setValue: AUTORELEASE([[NSAttributedString alloc] initWithString: aString]) ];
  
  [allNotes addObject: aNote];
  [self synchronize];
  
  [self _showNewNote: aNote];
}

- (IBAction) quitApplication: (id) sender
{
  [self synchronize];
  
  [NSApp terminate: self];  
}

- (IBAction) showPreferencesPanel: (id) sender
{
  [[self preferencesPanelController] showWindow: self];
}

- (IBAction) saveAllNotes: (id) sender
{
  [self synchronize];
}

- (IBAction) setNoteColor: (id) sender
{
  if ( [NoteWindowController lastNoteWindowOnTop] )
    {
      NoteWindowController *aNoteWindowController;
      NSColor *aColor;
      int colorCode;
      
      aNoteWindowController = [[NoteWindowController lastNoteWindowOnTop] delegate];
      
      if (sender == blueMenuItem)
	{
	  colorCode = BLUE;
	}
      else if (sender == grayMenuItem)
	{
	  colorCode = GRAY;
	}
      else if (sender == greenMenuItem)
	{
	  colorCode = GREEN;
	}
      else if (sender == purpleMenuItem)
	{
	  colorCode = PURPLE;
	} 
      // The default color is always yellow.
      else
	{
	  colorCode = YELLOW;
	}
      
      aColor = [Affiche colorForCode: colorCode];
      
      [[aNoteWindowController note] setBackgroundColor: aColor];
      [[aNoteWindowController note] setColorCode: colorCode];
      
      [[aNoteWindowController textView] setBackgroundColor: aColor];
      [[aNoteWindowController noteView] setColorCode: colorCode];
      [[aNoteWindowController textView] setNeedsDisplay: YES];
    }
  else
    {
      NSBeep();
    }
}

- (IBAction) showNoteInfo: (id) sender
{
  if ( [NoteWindowController lastNoteWindowOnTop] )
    {
      NoteInfoWindowController *aNoteInfoWindowController;    
      Note *aNote;

      aNote = [(NoteWindowController *)[[NoteWindowController lastNoteWindowOnTop] delegate] note];
      aNoteInfoWindowController = [NoteInfoWindowController singleInstance];
      [aNoteInfoWindowController setNote: aNote];
      [aNoteInfoWindowController showWindow: self];
    }
}

//
// delegate methods
//
- (void) applicationDidFinishLaunching: (NSNotification *) not
{
  NSFileManager *fileManager;
  BOOL isDir;
  int i;
  
  fileManager = [NSFileManager defaultManager];
  
  if ( [fileManager fileExistsAtPath: (NSString *)AfficheUserLibraryPath()
                    isDirectory: &isDir] )
    {
      if ( ! isDir )
        {
          NSLog(@"%@ exists but it is a file not a directory.",
                AfficheUserLibraryPath());
          exit(1);
        }
    }
  else    {
    if ( ! [fileManager createDirectoryAtPath: (NSString *)AfficheUserLibraryPath()
			attributes: nil] )
      {
	// directory creation failed.  quit.
	NSLog(@"Could not create directory: %@", AfficheUserLibraryPath());
	exit(1);
      }
    else
        {
          NSLog(@"Created directory: %@", AfficheUserLibraryPath());
        }
  }
    
  // We verify if our archived NSMutableArray exists, if not,
  // we create. If yes, we decode it.
  if ( [fileManager fileExistsAtPath: PathToNotes()] )
    {
      allNotes = [NSUnarchiver unarchiveObjectWithFile: PathToNotes()];
      RETAIN(allNotes);
    }
  else
    {
      allNotes = [[NSMutableArray alloc] init];
      [self synchronize];
    }
  
  // For all notes, we show their window.
  for (i = 0; i < [allNotes count]; i++)
    {
      [self showNote: [allNotes objectAtIndex: i]];
    }

  // We register our service
  [NSApp setServicesProvider: self];
}

- (void) applicationWillFinishLaunching: (NSNotification *) not
{
  // Local variable
#ifndef MACOSX  
  SEL action = NULL;
#endif

  // We begin by setting our NSApp's logo
  [NSApp setApplicationIconImage: [NSImage imageNamed: @"Affiche.tiff"]];

    // We continue by creating our NSMenu
#ifndef MACOSX
  menu = [[NSMenu alloc] init];
  
  [menu addItemWithTitle:_(@"Info") action: action keyEquivalent: @""];
  [menu addItemWithTitle:_(@"File") action: action  keyEquivalent: @""];
  [menu addItemWithTitle:_(@"Edit") action: action  keyEquivalent: @""];
  [menu addItemWithTitle:_(@"Note") action: action  keyEquivalent: @""];
  [menu addItemWithTitle:_(@"Color") action: action  keyEquivalent: @"h"];
  [menu addItemWithTitle:_(@"Windows") action: action keyEquivalent: @"p"];
  [menu addItemWithTitle:_(@"Print") action: action keyEquivalent: @"p"];
  [menu addItemWithTitle:_(@"Services") action: action keyEquivalent: @""];
  [menu addItemWithTitle:_(@"Hide") action: @selector (hide:) keyEquivalent: @"h"];
  [menu addItemWithTitle:_(@"Quit") action:@selector(quitApplication:) keyEquivalent: @"q"];

  // Our Info menu / submenus
  info = [[NSMenu alloc] init];
  [menu setSubmenu:info forItem:[menu itemWithTitle:_(@"Info")]];
  [info addItemWithTitle:_(@"Info Panel...")
        action: @selector(orderFrontStandardInfoPanel:)   
        keyEquivalent:@""];
  [info addItemWithTitle:_(@"Preferences...")
        action: @selector(showPreferencesPanel:)
        keyEquivalent:@""];
  [info addItemWithTitle:_(@"Help...")
        action: action
        keyEquivalent:@"?"];
  RELEASE(info);

  // Our File menu / submenus
  file = [[NSMenu alloc] init];
  [menu setSubmenu:file forItem:[menu itemWithTitle:_(@"File")]];
  [file addItemWithTitle: _(@"New Note")
	action: @selector(newNote:) 
	keyEquivalent: @"n"];
  [file addItemWithTitle: _(@"Close")
	action: @selector(closeNote:)
	keyEquivalent: @""];
  [file addItemWithTitle: _(@"Save All")
	action: @selector(saveAllNotes:)
	keyEquivalent: @""];
  [file addItemWithTitle: _(@"Import Text")
	action: @selector(importText:)
	keyEquivalent: @""];
  [file addItemWithTitle: _(@"Export Text")
	action: @selector(exportText:)
	keyEquivalent: @""];
  RELEASE(file);

   // Our Edit menu / submenus
  edit = [[NSMenu alloc] init];
  [menu setSubmenu:edit forItem:[menu itemWithTitle:_(@"Edit")]];
  [edit addItemWithTitle: _(@"Cut")
	action: @selector(cut:)
	keyEquivalent: @"x"];
  [edit addItemWithTitle: _(@"Copy")
	action: @selector(copy:)
	keyEquivalent: @"c"];
  [edit addItemWithTitle: _(@"Paste")
	action: @selector(paste:)
	keyEquivalent: @"v"];
  [edit addItemWithTitle: _(@"Delete")
	action: @selector(delete:)
	keyEquivalent: @""];
  [edit addItemWithTitle: _(@"Select All")
	action: @selector(selectAll:)
	keyEquivalent: @"a"];
  RELEASE(edit);

  // Our Edit menu / submenus
  note = [[NSMenu alloc] init];
  [menu setSubmenu: note 
	forItem: [menu itemWithTitle:_(@"Note")]];
  [note addItemWithTitle: _(@"Format")
	action: action
	keyEquivalent: @""];
  format = [[NSFontManager sharedFontManager] fontMenu: YES];
  [note setSubmenu: format
	forItem: [note itemWithTitle: _(@"Format")]];
  RELEASE(format);
  [note addItemWithTitle: _(@"Note Info")
	action: @selector(showNoteInfo:)
	keyEquivalent: @""];
  RELEASE(note);

  // Our Color menu / submenus
  color = [[NSMenu alloc] init];
  [menu setSubmenu:color forItem:[menu itemWithTitle:_(@"Color")]];
  RELEASE(color);

  blueMenuItem = [[NSMenuItem alloc] init];
  [blueMenuItem setTitle: _(@"Blue")];
  [blueMenuItem setAction: @selector(setNoteColor:)];
  [blueMenuItem setKeyEquivalent: @""];
  [color addItem: blueMenuItem];
  RELEASE(blueMenuItem);

  grayMenuItem = [[NSMenuItem alloc] init];
  [grayMenuItem setTitle: _(@"Gray")];
  [grayMenuItem setAction: @selector(setNoteColor:)];
  [grayMenuItem setKeyEquivalent: @""];
  [color addItem: grayMenuItem];
  RELEASE(grayMenuItem);
  
  greenMenuItem = [[NSMenuItem alloc] init];
  [greenMenuItem setTitle: _(@"Green")];
  [greenMenuItem setAction: @selector(setNoteColor:)];
  [greenMenuItem setKeyEquivalent: @""];
  [color addItem: greenMenuItem];
  RELEASE(greenMenuItem);

  purpleMenuItem = [[NSMenuItem alloc] init];
  [purpleMenuItem setTitle: _(@"Purple")];
  [purpleMenuItem setAction: @selector(setNoteColor:)];
  [purpleMenuItem setKeyEquivalent: @""];
  [color addItem: purpleMenuItem];
  RELEASE(purpleMenuItem);

  yellowMenuItem = [[NSMenuItem alloc] init];
  [yellowMenuItem setTitle: _(@"Yellow")];
  [yellowMenuItem setAction: @selector(setNoteColor:)];
  [yellowMenuItem setKeyEquivalent: @""];
  [color addItem: yellowMenuItem];
  RELEASE(yellowMenuItem);

  // Our Windows menu
  windows = [[NSMenu alloc] init];
  [menu setSubmenu:windows forItem: [menu itemWithTitle:_(@"Windows")]];

  // Our Services menu
  services = [[NSMenu alloc] init];
  [menu setSubmenu: services forItem: [menu itemWithTitle: _(@"Services")]];

  [NSApp setMainMenu: menu];
  [NSApp setServicesMenu: services];
  [NSApp setWindowsMenu: windows];

  RELEASE(services);
  RELEASE(windows);
  RELEASE(menu);
#endif
}


//
// other methods
//

- (void) deleteNote: (Note *) theNote
{
  if ( theNote )
    {
      [allNotes removeObject: theNote];
    }
}

- (void) showNote: (Note *) theNote
{
  if ( theNote )
    {
      NoteWindowController *noteWindowController;
  
      noteWindowController = [[NoteWindowController alloc]
			       initWithWindowNibName: @"NoteWindow"];
      [noteWindowController setNote: theNote];
      [[noteWindowController window] orderFrontRegardless];
    }
}
 
- (BOOL) synchronize
{
  return [NSArchiver archiveRootObject: allNotes 
                                toFile: PathToNotes()];
}

- (PreferencesPanelController *) preferencesPanelController
{
  if ( ! preferencesPanelController )
    {
      preferencesPanelController = 
	[[PreferencesPanelController alloc] 
	  initWithWindowNibName: @"PreferencesPanel"];
    }
  return preferencesPanelController;
}


//
// static methods
//

+ (NSColor *) colorForCode: (int) theCode
{
  switch (theCode)
    {
    case BLUE:
      return  [NSColor colorWithDeviceRed: 0.44
		       green: 1.0
		       blue: 1.0
		       alpha: 1.0];
      
    case GRAY:
      return [NSColor colorWithDeviceRed: 0.93
		      green: 0.93
		      blue: 0.93
		      alpha: 1.0];
      
    case GREEN:
      return [NSColor colorWithDeviceRed: 0.70
		      green: 1.0
		      blue: 0.63
		      alpha: 1.0];
      
    case PURPLE:
      return[NSColor colorWithDeviceRed: 0.70
	    green: 0.78
	    blue: 1.0
	    alpha: 1.0];
      
    case YELLOW:
    default:
      return [NSColor colorWithDeviceRed: 1.0
		      green: 1.0
		      blue: 0.63
		      alpha: 1.0];
    }
}


@end


//
// Private interface
//
@implementation Affiche (Private)

- (void) _showNewNote: (Note *) theNote
{
  NoteWindowController *noteWindowController;
  NSRect aRect;
  int position;

  // We set our default note color
  if ( [[NSUserDefaults standardUserDefaults] objectForKey: @"COLOR"] )
    {
      int colorCode;
      
      colorCode = [[NSUserDefaults standardUserDefaults] integerForKey: @"COLOR"] + 1;
      [theNote setColorCode: colorCode];
      [theNote setBackgroundColor: [Affiche colorForCode: colorCode]];
    }

  // We set our note's title
  if ( [[NSUserDefaults standardUserDefaults] objectForKey: @"TITLE"] )
    {
      [theNote setTitle: ([[NSUserDefaults standardUserDefaults] integerForKey: @"TITLE"] + 1)];
      [theNote setTitleValue: [[NSUserDefaults standardUserDefaults] objectForKey: @"TITLE_VALUE"]];
    }


  // We create our note window's controller in order to set the rest of the attributes
  noteWindowController = [[NoteWindowController alloc]
			   initWithWindowNibName: @"NoteWindow"];
  
  [noteWindowController setNote: theNote];

  
  // We set the font
  if ( [[NSUserDefaults standardUserDefaults] objectForKey: @"FONT_NAME"] )
    {
      [[noteWindowController textView] setFont: [NSFont fontWithName: [[NSUserDefaults standardUserDefaults] stringForKey: @"FONT_NAME"]
							size: [[NSUserDefaults standardUserDefaults] floatForKey: @"FONT_SIZE"]] ];
    }
 
  
  // We set the note position
  if ( [[NSUserDefaults standardUserDefaults] objectForKey: @"POSITION"] )
    {     
      position = [[NSUserDefaults standardUserDefaults] integerForKey: @"POSITION"];
    }
  else
    {
      position = CENTER;
    }

  // We get our screen's frame  
  aRect = [[NSScreen mainScreen] frame];

  switch ( position )
    {
    case TOP_LEFT:
      [[noteWindowController window] setFrameTopLeftPoint: NSMakePoint(70, aRect.size.height - 70)];
      break;

    case BOTTOM_LEFT:
      [[noteWindowController window] setFrameTopLeftPoint: NSMakePoint(70, 70 + DEFAULT_NOTE_HEIGHT)];
      break;
      
    case TOP_RIGHT:
      [[noteWindowController window] setFrameTopLeftPoint:
				       NSMakePoint(aRect.size.width - 70 - DEFAULT_NOTE_WIDTH,
						   aRect.size.height - 70)];
      break;

    case BOTTOM_RIGHT:
      [[noteWindowController window] setFrameTopLeftPoint:
				       NSMakePoint(aRect.size.width - 70 - DEFAULT_NOTE_WIDTH,
						   70 + DEFAULT_NOTE_HEIGHT)];
      break;

    case CENTER:
    default:
      [[noteWindowController window] center];
    }
  
  // We finally put the new note on the screen!
  [[noteWindowController window] orderFrontRegardless];
}

@end


//
// Starting point of Affiche
//
int main(int argc, const char *argv[], char *env[])
{     
  Affiche *affiche;
  
  CREATE_AUTORELEASE_POOL(pool);

  affiche = [[Affiche alloc] init];
  
  [NSApplication sharedApplication];
  [NSApp setDelegate: affiche];

  NSApplicationMain(argc, argv); 
  
  RELEASE(affiche);
  RELEASE(pool);
  
  return 0;
}