dev.stuconnolly.com / svn / safaritabs

  1. /*
  2.  *  $Id: BrowserTabViewItem.h 198 2010-01-06 23:05:30Z 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. @class TabBarView, TabButton;
  24.  
  25. @interface BrowserTabViewItem : NSTabViewItem
  26. {
  27.     TabBarView *_tabBarView;
  28.     TabButton *_button;
  29.     NSString *_searchFieldText;
  30.     NSString *_urlFromScript;
  31.     BrowserWebView *_webView;
  32. }
  33.  
  34. - (id)URLString;
  35. - (id)aeDescByEvaluatingJavaScriptFromString:(id)arg1;
  36. - (id)button;
  37. - (BOOL)canBeClosed;
  38. - (void)dealloc;
  39. - (void)handleCloseScriptCommand:(id)arg1;
  40. - (id)initWithTabBarView:(id)arg1;
  41. - (BOOL)isVisible;
  42. - (void)mailPageContents;
  43. - (id)objectSpecifier;
  44. - (NSUInteger)orderedIndex;
  45. - (void)rememberCurrentURLString;
  46. - (id)searchFieldText;
  47. - (void)setButton:(id)arg1;
  48. - (void)setLabel:(id)arg1;
  49. - (void)setSearchFieldText:(id)arg1;
  50. - (void)setURLString:(id)arg1;
  51. - (void)setView:(id)arg1;
  52. - (id)source;
  53. - (id)text;
  54. - (id)title;
  55. - (void)updateLabelNow;
  56. - (void)updateLabelSoon;
  57. - (id)webView;
  58.  
  59. @end
  60.