NewsBlur/clients/ios/Classes/FolderTitleView.h
David Sinclair 06f85105c6 #1460 (indent feeds)
- Done. Even correctly supports subfolders.
2021-05-08 14:00:46 -07:00

30 lines
743 B
Objective-C

//
// FolderTitleView.h
// NewsBlur
//
// Created by Samuel Clay on 10/2/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
#import "UnreadCountView.h"
@class NewsBlurAppDelegate;
@interface FolderTitleView : UIView
<UIGestureRecognizerDelegate> {
NewsBlurAppDelegate *appDelegate;
UIFontDescriptor *fontDescriptorSize;
}
@property (assign, nonatomic) int section;
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) UnreadCountView *unreadCount;
@property (nonatomic) UIButton *invisibleHeaderButton;
@property (nonatomic) NSUInteger indentationLevel;
- (void)handleLongPress:(UILongPressGestureRecognizer *)gestureRecognizer;
@end