1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
//
// MQActionBar.h
// MySQL QueryBrowser
//
// Created by Alfredo Kojima on 05/6/9.
// Copyright 2005 MySQL AB. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#include <myx_public_interface.h>
@class MQDropActionView;
@interface MQActionBar : NSView
{
NSMutableArray *_actions;
NSString *_originalQuery;
MYSQL *_mysql;
NSTextView *_textView;
NSTimer *_timer;
}
- (void)setMySQL:(MYSQL*)mysql;
- (void)setTextView:(NSTextView*)textView;
- (void)popupAt:(NSPoint)pos;
- (void)hide;
- (void)delayedHide;
- (void)show;
@end
|