FreeRDP/client/Mac/MRDPRailView.h

59 lines
1.5 KiB
C
Raw Normal View History

#import <Cocoa/Cocoa.h>
#import "freerdp/gdi/gdi.h"
#import "freerdp/rail/rail.h"
2012-10-09 21:38:42 +04:00
2012-08-02 21:04:44 +04:00
#import "MRDPRailWindow.h"
@interface MRDPRailView : NSView
{
2012-11-01 07:04:31 +04:00
freerdp* rdp_instance;
rdpContext* context;
NSBitmapImageRep* bmiRep;
NSPoint savedDragLocation;
char* pixelData;
BOOL mouseInClientArea;
BOOL titleBarClicked;
BOOL gestureEventInProgress;
int width;
int height;
int savedWindowId;
int scrollWheelCount;
2012-11-01 07:04:31 +04:00
/* store state info for some keys */
int kdlshift;
int kdrshift;
int kdlctrl;
int kdrctrl;
int kdlalt;
int kdralt;
int kdlmeta;
int kdrmeta;
int kdcapslock;
@public
2012-11-01 07:04:31 +04:00
BOOL isMoveSizeInProgress;
BOOL saveInitialDragLoc;
BOOL skipMoveWindowOnce;
int localMoveType;
}
2012-11-01 07:04:31 +04:00
@property (assign) MRDPRailWindow* mrdpRailWindow;
2012-08-02 21:04:44 +04:00
@property (assign) int windowIndex;
@property (assign) BOOL activateWindow;
2012-08-02 21:04:44 +04:00
2012-11-01 07:04:31 +04:00
- (void) windowDidMove:(NSNotification*) notification;
- (void) updateDisplay;
2012-11-01 07:04:31 +04:00
- (void) setRdpInstance:(freerdp*) instance width:(int) w andHeight:(int) h windowID:(int) windowID;
- (void) setupBmiRep:(int) width :(int) height;
2012-08-02 21:04:44 +04:00
- (void) releaseResources;
2012-11-01 07:04:31 +04:00
void mac_rail_MoveWindow(rdpRail* rail, rdpWindow* window);
void apple_to_windowMove(NSRect* r, RAIL_WINDOW_MOVE_ORDER* windowMove);
void mac_send_rail_client_event(rdpChannels* channels, UINT16 event_type, void* param);
void windows_to_apple_cords(NSRect* r);
void rail_MoveWindow(rdpRail* rail, rdpWindow* window);
2012-08-02 21:04:44 +04:00
void mac_rail_send_activate(int window_id);
@end