File: TerminalWindowPrefs.m

package info (click to toggle)
terminal.app 0.9.4%2Bcvs20051125-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 460 kB
  • ctags: 106
  • sloc: objc: 6,070; makefile: 42; sh: 13
file content (230 lines) | stat: -rw-r--r-- 5,056 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
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
/*
copyright 2002, 2003 Alexander Malmberg <alexander@malmberg.org>

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.
*/

#include <Foundation/NSBundle.h>
#include <Foundation/NSString.h>
#include <Foundation/NSUserDefaults.h>
#include <AppKit/NSBox.h>
#include <AppKit/NSButton.h>
#include <AppKit/NSMatrix.h>
#include <AppKit/NSTextField.h>
#include <GNUstepGUI/GSTable.h>
#include <GNUstepGUI/GSVbox.h>
#include "Label.h"

#include "TerminalWindowPrefs.h"


static NSUserDefaults *ud;


static NSString
	*WindowCloseBehaviorKey=@"WindowCloseBehavior",
	*WindowHeightKey=@"WindowHeight",
	*WindowWidthKey=@"WindowWidth",
	*AddYBordersKey=@"AddYBorders";


static int windowCloseBehavior;
static int windowWidth,windowHeight;
static BOOL addYBorders;


@implementation TerminalWindowPrefs

+(void) initialize
{
	if (!ud)
	{
		ud=[NSUserDefaults standardUserDefaults];

		windowCloseBehavior=[ud integerForKey: WindowCloseBehaviorKey];
		windowWidth=[ud integerForKey: WindowWidthKey];
		windowHeight=[ud integerForKey: WindowHeightKey];
		addYBorders=[ud boolForKey: AddYBordersKey];

		if (windowWidth<=0)
			windowWidth=80;
		if (windowHeight<=0)
			windowHeight=25;
	}
}

+(int) windowCloseBehavior
{
	return windowCloseBehavior;
}

+(int) defaultWindowWidth
{
	return windowWidth;
}
+(int) defaultWindowHeight
{
	return windowHeight;
}

+(BOOL) addYBorders
{
	return addYBorders;
}


-(void) save
{
	if (!top) return;

	windowCloseBehavior=[[m_close selectedCell] tag];
	[ud setInteger: windowCloseBehavior  forKey: WindowCloseBehaviorKey];

	addYBorders=[b_addYBorders state];
	[ud setBool: addYBorders  forKey: AddYBordersKey];

	windowWidth=[tf_width intValue];
	windowHeight=[tf_height intValue];

	if (windowWidth<=0)
		windowWidth=80;
	if (windowHeight<=0)
		windowHeight=25;

	[ud setInteger: windowWidth  forKey: WindowWidthKey];
	[ud setInteger: windowHeight  forKey: WindowHeightKey];
}

-(void) revert
{
	[m_close selectCellWithTag: windowCloseBehavior];

	[tf_width setIntValue: windowWidth];
	[tf_height setIntValue: windowHeight];

	[b_addYBorders setState: addYBorders];
}


-(NSString *) name
{
	return _(@"Terminal Window");
}

-(void) setupButton: (NSButton *)b
{
	[b setTitle: _(@"Terminal\nWindow")];
	[b sizeToFit];
}

-(void) willHide
{
}

-(NSView *) willShow
{
	if (!top)
	{
		top=[[GSVbox alloc] init];
		[top setDefaultMinYMargin: 1];

		{
			NSTextField *f;

			{
				NSMatrix *m;
				NSButtonCell *b=[NSButtonCell new];
				NSSize s,s2;

				[b setButtonType: NSRadioButton];

				m=m_close=[[NSMatrix alloc] initWithFrame: NSMakeRect(0,0,1,1)
					mode: NSRadioModeMatrix
					prototype: b
					numberOfRows: 2
					numberOfColumns: 1];
				[m setAutoresizingMask: NSViewMinXMargin|NSViewMaxXMargin|
					NSViewMinYMargin|NSViewMaxYMargin];

				[[m cellAtRow: 0 column: 0] setTitle: _(@"Close new windows when idle")];
				[[m cellAtRow: 1 column: 0] setTitle: _(@"Don't close new windows")];
				[[m cellAtRow: 0 column: 0] setTag: 0];
				[[m cellAtRow: 1 column: 0] setTag: 1];

				s=[[m cellAtRow: 0 column: 0] cellSize];
				s2=[[m cellAtRow: 0 column: 0] cellSize];
				if (s2.width>s.width) s.width=s2.width;
				
				[m setCellSize: s];
				[m setIntercellSpacing: NSMakeSize(0,3)];
				[m sizeToCells];

				[top addView: m enablingYResizing: YES];
				DESTROY(m);
			}

			{
				NSBox *b;
				GSTable *t;

				b=[[NSBox alloc] init];
				[b setAutoresizingMask:
					NSViewWidthSizable|NSViewMinYMargin|NSViewMaxYMargin];
				[b setTitle: _(@"Default size")];

				t=[[GSTable alloc] initWithNumberOfRows: 2 numberOfColumns: 2];

				f=[NSTextField newLabel: _(@"Width:")];
				[f setAutoresizingMask: NSViewMinXMargin|NSViewMinYMargin|NSViewMaxYMargin];
				[t putView: f atRow: 1 column: 0
					withXMargins: 2 yMargins: 2];
				tf_width=f=[[NSTextField alloc] init];
				[f setAutoresizingMask: NSViewWidthSizable];
				[f sizeToFit];
				[t putView: f atRow: 1 column: 1];

				f=[NSTextField newLabel: _(@"Height:")];
				[f setAutoresizingMask: NSViewMinXMargin|NSViewMinYMargin|NSViewMaxYMargin];
				[t putView: f atRow: 0 column: 0
					withXMargins: 2 yMargins: 2];
				tf_height=f=[[NSTextField alloc] init];
				[f setAutoresizingMask: NSViewWidthSizable];
				[f sizeToFit];
				[t putView: f atRow: 0 column: 1];

				[b setContentView: t];
				[b sizeToFit];
				DESTROY(t);

				[top addView: b enablingYResizing: YES];
				DESTROY(b);
			}

			{
				NSButton *b;

				b=b_addYBorders=[[NSButton alloc] init];
				[b setAutoresizingMask: NSViewMinXMargin|NSViewMaxXMargin|NSViewMinYMargin|NSViewMaxYMargin];
				[b setButtonType: NSSwitchButton];
				[b setTitle: _(@"Add top and bottom border")];
				[b sizeToFit];
				[top addView: b enablingYResizing: YES];
			}
		}

		[self revert];
	}
	return top;
}

-(void) dealloc
{
	DESTROY(top);
	[super dealloc];
}

@end