Package com.pspdfkit.ui.inspector
Interface PropertyInspectorViewTitleStyleProvider
-
- All Implemented Interfaces:
public interface PropertyInspectorViewTitleStyleProvider
Pass an instance of this to setInspectorViews or let your property inspector detail views showDetailView implement it to customize the style of the inspector title bar. For further information see DialogTitleView.DialogTitleViewStyle and com.pspdfkit.internal.ui.dialog.utils.DialogTitleViewStyle_CheckAsCloseIcon
-
-
Method Summary
Modifier and Type Method Description abstract DialogTitleView.DialogTitleViewStyle
getDialogTitleStyle(DialogTitleView.DialogTitleViewStyle currentStyle)
Return the titlebar style to be used for the current inspector window. -
-
Method Detail
-
getDialogTitleStyle
@Nullable() abstract DialogTitleView.DialogTitleViewStyle getDialogTitleStyle(DialogTitleView.DialogTitleViewStyle currentStyle)
Return the titlebar style to be used for the current inspector window. For simple and easy override of specific values use com.pspdfkit.internal.ui.dialog.utils.DialogTitleViewStyleWrapper
- Parameters:
currentStyle
- the currently used title style- Returns:
the title style to be used for the inspector. If you don't want to change it, return
currentStyle
-
-
-
-