version 1.27, 2002/03/08 03:18:00
|
version 1.34, 2002/04/12 08:45:17
|
Line 42
|
Line 42
|
{ |
{ |
IBOutlet id mTabBrowser; |
IBOutlet id mTabBrowser; |
IBOutlet id mSidebarDrawer; |
IBOutlet id mSidebarDrawer; |
|
IBOutlet id mSidebarTabView; |
|
IBOutlet id mSidebarSourceTabView; |
IBOutlet id mLocationToolbarView; |
IBOutlet id mLocationToolbarView; |
IBOutlet id mURLBar; |
IBOutlet id mURLBar; |
IBOutlet id mStatus; |
IBOutlet id mStatus; |
Line 52
|
Line 54
|
IBOutlet id mSidebarBookmarksDataSource; |
IBOutlet id mSidebarBookmarksDataSource; |
|
|
NSToolbarItem *mLocationToolbarItem; |
NSToolbarItem *mLocationToolbarItem; |
|
NSToolbarItem *mSidebarToolbarItem; |
|
|
BOOL mInitialized; |
BOOL mInitialized; |
NSURL* mURL; |
NSURL* mURL; |
|
|
Line 59
|
Line 63
|
|
|
BOOL mMoveReentrant; |
BOOL mMoveReentrant; |
NSModalSession mModalSession; |
NSModalSession mModalSession; |
|
|
|
BOOL mShouldAutosave; |
|
|
|
BOOL mDrawerCachedFrame; |
|
NSRect mCachedFrameBeforeDrawerOpen; // This is used by the drawer to figure out if the window should |
|
// be returned to its original position when the drawer closes. |
|
NSRect mCachedFrameAfterDrawerOpen; |
|
|
|
int mChromeMask; // Indicates which parts of the window to show (e.g., don't show toolbars) |
} |
} |
|
|
- (void)dealloc; |
- (void)dealloc; |
Line 79
|
Line 92
|
- (void)printDocument; |
- (void)printDocument; |
- (void)printPreview; |
- (void)printPreview; |
|
|
- (void)findInPage; | - (void)findInPage:(NSString*)text; |
- (void)findAgain; |
- (void)findAgain; |
|
|
- (void)addBookmark; |
- (void)addBookmark; |
Line 100
|
Line 113
|
-(void)openNewWindowWithURL: (NSURL*)aURL loadInBackground: (BOOL)aLoadInBG; |
-(void)openNewWindowWithURL: (NSURL*)aURL loadInBackground: (BOOL)aLoadInBG; |
-(void)openNewTabWithURL: (NSURL*)aURL loadInBackground: (BOOL)aLoadInBG; |
-(void)openNewTabWithURL: (NSURL*)aURL loadInBackground: (BOOL)aLoadInBG; |
|
|
|
-(void)autosaveWindowFrame; |
|
-(void)disableAutosave; |
|
|
|
-(void)setChromeMask:(int)aMask; |
|
|
@end |
@end |