File: PreferencesWindowController.h

package info (click to toggle)
terminal.app 0.9.9-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 708 kB
  • sloc: objc: 6,715; makefile: 13
file content (35 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (5)
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
/*
Copyright 2002 Alexander Malmberg <alexander@malmberg.org>
          2012 Free Software Foundation, Inc

Authros: Alexander Malmberg
         Riccardo Mottola

This file is a part of Terminal.app. Terminal.app 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; version 2
of the License. See COPYING or main.m for more information.
*/

#import <AppKit/NSWindowController.h>

#import "PrefBox.h"

@class GSHbox,NSBox;

@interface PreferencesWindowController : NSWindowController
{
	GSHbox *button_box;
	NSBox *pref_box;

	NSObject<PrefBox> *current;

	NSMutableArray *pref_boxes;
	NSMutableArray *pref_buttons;
}

-(void) addPrefBox: (NSObject<PrefBox> *)pb;

@end