/*
* $Id: BrowserTabViewItem.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/>.
*/
@class TabBarView, TabButton;
@interface BrowserTabViewItem : NSTabViewItem
{
TabBarView *_tabBarView;
TabButton *_button;
NSString *_searchFieldText;
NSString *_urlFromScript;
BrowserWebView *_webView;
}
- (id)URLString;
- (id)aeDescByEvaluatingJavaScriptFromString:(id)arg1;
- (id)button;
- (BOOL)canBeClosed;
- (void)dealloc;
- (void)handleCloseScriptCommand:(id)arg1;
- (id)initWithTabBarView:(id)arg1;
- (BOOL)isVisible;
- (void)mailPageContents;
- (id)objectSpecifier;
- (NSUInteger)orderedIndex;
- (void)rememberCurrentURLString;
- (id)searchFieldText;
- (void)setButton:(id)arg1;
- (void)setLabel:(id)arg1;
- (void)setSearchFieldText:(id)arg1;
- (void)setURLString:(id)arg1;
- (void)setView:(id)arg1;
- (id)source;
- (id)text;
- (id)title;
- (void)updateLabelNow;
- (void)updateLabelSoon;
- (id)webView;
@end