/*
* $Id: WindowController.h 198 2010-01-06 23:05:30Z stuart $
*
* SafariTabs
* http://stuconnolly.com/projects/safaritabs/
*
* Copyright (c) 2010 Stuart Connolly. All rights reserved.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
@interface WindowController : NSWindowController
{
NSString *_multiWindowFrameAutosaveName;
BOOL _autosaveFrame;
BOOL _lastResizeWasProgrammatic;
}
- (void)_safari_windowDidEndLiveResize;
- (void)_saveFrameIfAllowed;
- (void)_setFrameWithoutAutosaving:(struct _NSRect)arg1 programmatically:(BOOL)arg2;
- (void)_windowDidLoad;
- (void)dealloc;
- (struct _NSRect)defaultFrame;
- (BOOL)frameAutosaveEnabled;
- (BOOL)lastResizeWasProgrammatic;
- (id)multiWindowFrameAutosaveName;
- (void)setFrameAutosaveEnabled:(BOOL)arg1;
- (void)setFrameProgrammatically:(struct _NSRect)arg1;
- (void)setFrameToDefault;
- (void)setFrameWithoutAutosaving:(struct _NSRect)arg1;
- (BOOL)setMultiWindowFrameAutosaveName:(id)arg1;
- (void)windowDidMove:(id)arg1;
- (void)windowDidResize:(id)arg1;
- (void)windowWillClose:(id)arg1;
@end