dev.stuconnolly.com / svn / safaritabs

  1. /*
  2.  *  $Id: WebViewPlus.h 224 2011-08-13 20:39:45Z stuart $
  3.  *
  4.  *  SafariTabs
  5.  *  http://stuconnolly.com/projects/safaritabs/
  6.  *
  7.  *  Copyright (c) 2010 Stuart Connolly. All rights reserved.
  8.  *
  9.  *  This program is free software: you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation, either version 3 of the License, or
  12.  *  (at your option) any later version.
  13.  *
  14.  *  This program is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17.  *  GNU General Public License for more details.
  18.  *
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with this program. If not, see <http://www.gnu.org/licenses/>.
  21.  */
  22.  
  23. #import <WebKit/WebKit.h>
  24.  
  25. @interface WebViewPlus : WebView
  26. {
  27.     BOOL _bannerIsMovingIntoPlace;
  28.     NSMutableArray *_currentBanners;
  29.     NSMutableArray *_bannerActionQueue;
  30. }
  31.  
  32. - (void)banner:(id)arg1 viewBelow:(id)arg2 wasResizedFromFrame:(struct _NSRect)arg3 animationProgress:(float)arg4 installing:(BOOL)arg5;
  33. - (void)bannerDidInstall:(id)arg1;
  34. - (void)bannerDidUninstall:(id)arg1;
  35. - (void)bannerWillInstall:(id)arg1;
  36. - (void)bannerWillUninstall:(id)arg1;
  37. - (void)close;
  38. - (id)currentBanners;
  39. - (id)currentURL;
  40. - (void)dealloc;
  41. - (BOOL)maintainsInactiveSelection;
  42. - (void)queueInstallOfBanner:(id)arg1 allowingAnimation:(BOOL)arg2;
  43. - (void)queueUninstallOfBanner:(id)arg1 allowingAnimation:(BOOL)arg2;
  44. - (id)viewBelowBanner:(id)arg1;
  45.  
  46. @end
  47.