element-ios/Riot/Modules/Common/SectionHeaders/SectionHeaderView.h
aringenbach 45bc72ee99
Move invites to dedicated sections and enable section collapse (#5683)
* Display invites in dedicated sections

* Activate shrinkable and fix home number of rows for section

* Rework section header

* Display badge in people and room tabs

* Add changelog & remove useless todo

* Improve isSectionShrinked condition, remove useless import and shrinkable sets

* Restore invitation count in tab bar badge

* Display badge for invites section

* Add comment on invites count

* Update right accessory view on data source update

Co-authored-by: Arnaud Ringenbach <arnaud.ringenbach@niji.fr>
2022-02-28 13:48:07 +01:00

67 lines
1.8 KiB
Objective-C

/*
Copyright 2014 OpenMarket Ltd
Copyright 2020 Vector Creations Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#import <UIKit/UIKit.h>
/**
Section header view class. Respects left and right safe area insets and layouts its subviews.
*/
@interface SectionHeaderView : UITableViewHeaderFooterView
/**
Default value: 20.0
*/
@property (nonatomic, assign) CGFloat minimumLeftInset;
/**
Default value: 16.0
*/
@property (nonatomic, assign) CGFloat minimumRightInset;
/**
Default value: 30.0
*/
@property (nonatomic, assign) CGFloat topViewHeight;
/**
A view which spans the top view. No frame value will be used. Height will be equal to topViewHeight.
*/
@property (nonatomic, strong) UIView *topSpanningView;
/**
Header label. Only height in frame will be used.
*/
@property (nonatomic, strong) UILabel *headerLabel;
/**
Accessory view for top view. Both width and height will be used.
*/
@property (nonatomic, strong) UIView *accessoryView;
/**
Right accessory view for header. Both width and height will be used.
*/
@property (nonatomic, strong) UIView *rightAccessoryView;
/**
A view which spans the bottom view. No frame value will be used. Height will be remaining of the view at below topViewHeight.
*/
@property (nonatomic, strong) UIView *bottomView;
+ (NSString*)defaultReuseIdentifier;
@end