From d6c07925417eaea27c85996bc243f93e27b1bcd0 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 23 May 2017 11:18:45 +0100 Subject: remove cocoa frontend The cocoa frontend has been broken for a few years and we have no maintainer. It was removed from the CI six months ago and has already bitrotted so it cannot be compiled. --- frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h | 116 ----------------------- 1 file changed, 116 deletions(-) delete mode 100644 frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h (limited to 'frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h') diff --git a/frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h b/frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h deleted file mode 100644 index c8f6cecdd..000000000 --- a/frontends/cocoa/PSMTabBarControl/PSMTabBarCell.h +++ /dev/null @@ -1,116 +0,0 @@ -// -// PSMTabBarCell.h -// PSMTabBarControl -// -// Created by John Pannell on 10/13/05. -// Copyright 2005 Positive Spin Media. All rights reserved. -// - -#import -#import "PSMTabBarControl.h" -#import "PSMProgressIndicator.h" - - -@interface PSMTabBarCell : NSActionCell { - // sizing - NSRect _frame; - NSSize _stringSize; - NSInteger _currentStep; - BOOL _isPlaceholder; - - // state - NSInteger _tabState; - NSTrackingRectTag _closeButtonTrackingTag; // left side tracking, if dragging - NSTrackingRectTag _cellTrackingTag; // right side tracking, if dragging - BOOL _closeButtonOver; - BOOL _closeButtonPressed; - PSMProgressIndicator *_indicator; - BOOL _isInOverflowMenu; - BOOL _hasCloseButton; - BOOL _isCloseButtonSuppressed; - BOOL _hasIcon; - BOOL _hasLargeImage; - NSInteger _count; - NSColor *_countColor; - BOOL _isEdited; -} - -// creation/destruction -- (id)initWithControlView:(PSMTabBarControl *)controlView; -- (id)initPlaceholderWithFrame:(NSRect) frame expanded:(BOOL) value inControlView:(PSMTabBarControl *)controlView; -- (void)dealloc; - -// accessors -- (id)controlView; -- (void)setControlView:(id)view; -- (NSTrackingRectTag)closeButtonTrackingTag; -- (void)setCloseButtonTrackingTag:(NSTrackingRectTag)tag; -- (NSTrackingRectTag)cellTrackingTag; -- (void)setCellTrackingTag:(NSTrackingRectTag)tag; -- (CGFloat)width; -- (NSRect)frame; -- (void)setFrame:(NSRect)rect; -- (void)setStringValue:(NSString *)aString; -- (NSSize)stringSize; -- (NSAttributedString *)attributedStringValue; -- (NSInteger)tabState; -- (void)setTabState:(NSInteger)state; -- (NSProgressIndicator *)indicator; -- (BOOL)isInOverflowMenu; -- (void)setIsInOverflowMenu:(BOOL)value; -- (BOOL)closeButtonPressed; -- (void)setCloseButtonPressed:(BOOL)value; -- (BOOL)closeButtonOver; -- (void)setCloseButtonOver:(BOOL)value; -- (BOOL)hasCloseButton; -- (void)setHasCloseButton:(BOOL)set; -- (void)setCloseButtonSuppressed:(BOOL)suppress; -- (BOOL)isCloseButtonSuppressed; -- (BOOL)hasIcon; -- (void)setHasIcon:(BOOL)value; -- (BOOL)hasLargeImage; -- (void)setHasLargeImage:(BOOL)value; -- (NSInteger)count; -- (void)setCount:(NSInteger)value; -- (NSColor *)countColor; -- (void)setCountColor:(NSColor *)value; -- (BOOL)isPlaceholder; -- (void)setIsPlaceholder:(BOOL)value; -- (NSInteger)currentStep; -- (void)setCurrentStep:(NSInteger)value; -- (BOOL)isEdited; -- (void)setIsEdited:(BOOL)value; - -// component attributes -- (NSRect)indicatorRectForFrame:(NSRect)cellFrame; -- (NSRect)closeButtonRectForFrame:(NSRect)cellFrame; -- (CGFloat)minimumWidthOfCell; -- (CGFloat)desiredWidthOfCell; - -// drawing -- (void)drawWithFrame:(NSRect) cellFrame inView:(NSView *)controlView; - -// tracking the mouse -- (void)mouseEntered:(NSEvent *)theEvent; -- (void)mouseExited:(NSEvent *)theEvent; - -// drag support -- (NSImage *)dragImage; - -// archiving -- (void)encodeWithCoder:(NSCoder *)aCoder; -- (id)initWithCoder:(NSCoder *)aDecoder; - -@end - -@interface PSMTabBarControl (CellAccessors) - -- (id)style; - -@end - -@interface NSObject (IdentifierAccesors) - -- (NSImage *)largeImage; - -@end -- cgit v1.2.3