Skip to content

Commit 7b01c61

Browse files
committed
first add account prefrences pane.
1 parent 8ccff31 commit 7b01c61

File tree

14 files changed

+543
-43
lines changed

14 files changed

+543
-43
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "lyricsFetcher"]
22
path = lyricsFetcher
33
url = /Users/liaogang/快盘/git/lyricsFetcher.git
4+
[submodule "Last.fm"]
5+
path = Last.fm
6+
url = https://github.com/liaogang/Last.fm.git

Last.fm

Submodule Last.fm added at 79eba1d

Preferences/AccountPreferences.h

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// GeneralPreferences.h
3+
// PrefsTest
4+
//
5+
// Created by Dave Jewell on 13/12/2007.
6+
// Copyright 2007 Dave Jewell. All rights reserved.
7+
//
8+
9+
#import <Cocoa/Cocoa.h>
10+
#import "NSPreferences.h"
11+
12+
@interface AccountPreferences : NSPreferencesModule
13+
{
14+
15+
}
16+
17+
@end

Preferences/AccountPreferences.m

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//
2+
// GeneralPreferences.m
3+
// PrefsTest
4+
//
5+
// Created by Dave Jewell on 13/12/2007.
6+
// Copyright 2007 Dave Jewell. All rights reserved.
7+
//
8+
9+
#import "AccountPreferences.h"
10+
11+
@interface AccountPreferences ()
12+
13+
@end
14+
15+
@implementation AccountPreferences
16+
-(void)awakeFromNib
17+
{
18+
19+
}
20+
21+
- (BOOL)isResizable
22+
{
23+
return NO;
24+
}
25+
26+
27+
28+
@end

0 commit comments

Comments
 (0)