Exemple #1
0
    def load_six_sided_dice_icon() -> Any:
        """load_six_sided_dice_icon()

        Get the Resource Key for the SIX_SIDED_DICE_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_SIX_SIDED_DICE_ICON)
Exemple #2
0
    def load_question_mark_icon() -> Any:
        """load_question_mark_icon()

        Get the Resource Key for the QUESTION_MARK_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_QUESTION_MARK_ICON)
    def load_blank_square_icon() -> Any:
        """load_blank_square_icon()

        Get the Resource Key for the BLANK_SQUARE_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_BLANK_SQUARE_ICON)
Exemple #4
0
    def load_arrow_right_icon() -> Any:
        """load_arrow_right_icon()

        Get the Resource Key for the ARROW_RIGHT_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_ARROW_RIGHT_ICON)
Exemple #5
0
    def load_arrow_navigate_into_icon() -> Any:
        """load_arrow_navigate_into_icon()

        Get the Resource Key for the ARROW_NAVIGATE_INTO_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_ARROW_NAVIGATE_INTO_ICON)
    def load_x_icon() -> Any:
        """load_x_icon()

        Get the Resource Key for the X_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_X_ICON)
    def load_checked_circle_icon() -> Any:
        """load_checked_circle_icon()

        Get the Resource Key for the CHECKED_CIRCLE_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_CHECKED_CIRCLE_ICON)
    def load_text_next_icon() -> Any:
        """load_text_next_icon()

        Get the Resource Key for the TEXT_NEXT_SQUARE_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_TEXT_NEXT_SQUARE_ICON)
Exemple #9
0
    def load_unchecked_square_icon() -> Any:
        """load_unchecked_square_icon()

        Get the Resource Key for the UNCHECKED_SQUARE_ICON.

        :return: An identifier for the icon.
        :rtype: Any
        """
        return CommonResourceUtils.get_resource_key(Types.PNG, CommonIconId.S4CLIB_UNCHECKED_SQUARE_ICON)
 def load_unchecked_square_icon() -> Any:
     """
         Get the Resource Key for the UNCHECKED_SQUARE_ICON.
     """
     return CommonResourceUtils.get_resource_key(
         Types.PNG, CommonIconId.S4CLIB_UNCHECKED_SQUARE_ICON)
 def load_question_mark_icon() -> Any:
     """
         Get the Resource Key for the QUESTION_MARK_ICON.
     """
     return CommonResourceUtils.get_resource_key(
         Types.PNG, CommonIconId.S4CLIB_QUESTION_MARK_ICON)
 def load_arrow_navigate_into_icon() -> Any:
     """
         Get the Resource Key for the ARROW_NAVIGATE_INTO_ICON.
     """
     return CommonResourceUtils.get_resource_key(
         Types.PNG, CommonIconId.S4CLIB_ARROW_NAVIGATE_INTO_ICON)
 def load_arrow_right_icon() -> Any:
     """
         Get the Resource Key for the ARROW_RIGHT_ICON.
     """
     return CommonResourceUtils.get_resource_key(
         Types.PNG, CommonIconId.S4CLIB_ARROW_RIGHT_ICON)
Exemple #14
0
 def _load_icon(icon_id: int) -> Any:
     return CommonResourceUtils.get_resource_key(Types.PNG, icon_id)
 def load_six_sided_dice_icon() -> Any:
     """
         Get the Resource Key for the SIX_SIDED_DICE_ICON.
     """
     return CommonResourceUtils.get_resource_key(
         Types.PNG, CommonIconId.S4CLIB_SIX_SIDED_DICE_ICON)
 def _load_icon(icon_id: int) -> Any:
     """
         Get a Resource Key for an icon.
     """
     return CommonResourceUtils.get_resource_key(Types.PNG, icon_id)
Exemple #17
0
 def _load_icon(icon_id: Union[int, CommonIconId]) -> Any:
     return CommonResourceUtils.get_resource_key(Types.PNG, icon_id)