/*
* $Id: WebViewPlus.h 224 2011-08-13 20:39:45Z 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/>.
*/
#import <WebKit/WebKit.h>
@interface WebViewPlus : WebView
{
BOOL _bannerIsMovingIntoPlace;
NSMutableArray *_currentBanners;
NSMutableArray *_bannerActionQueue;
}
- (void)banner:(id)arg1 viewBelow:(id)arg2 wasResizedFromFrame:(struct _NSRect)arg3 animationProgress:(float)arg4 installing:(BOOL)arg5;
- (void)bannerDidInstall:(id)arg1;
- (void)bannerDidUninstall:(id)arg1;
- (void)bannerWillInstall:(id)arg1;
- (void)bannerWillUninstall:(id)arg1;
- (void)close;
- (id)currentBanners;
- (id)currentURL;
- (void)dealloc;
- (BOOL)maintainsInactiveSelection;
- (void)queueInstallOfBanner:(id)arg1 allowingAnimation:(BOOL)arg2;
- (void)queueUninstallOfBanner:(id)arg1 allowingAnimation:(BOOL)arg2;
- (id)viewBelowBanner:(id)arg1;
@end