@@ -4246,7 +4246,8 @@ class CellArea(GObject.InitiallyUnowned, Buildable, CellLayout):
42464246 cell_area: Gdk.Rectangle,
42474247 flags: CellRendererState,
42484248 ) -> int: ...
4249- def find_cell_property(*args, **kwargs): ... # FIXME Function
4249+ # override
4250+ def find_cell_property(self, property_name: str) -> GObject.ParamSpec: ...
42504251 def focus(self, direction: DirectionType) -> bool: ...
42514252 def foreach(
42524253 self, callback: typing.Callable[..., bool], *callback_data: typing.Any
@@ -4300,12 +4301,16 @@ class CellArea(GObject.InitiallyUnowned, Buildable, CellLayout):
43004301 def inner_cell_area(
43014302 self, widget: Widget, cell_area: Gdk.Rectangle
43024303 ) -> Gdk.Rectangle: ...
4303- def install_cell_property(*args, **kwargs): ... # FIXME Function
4304+ # override
4305+ def install_cell_property(
4306+ self, property_id: int, pspec: GObject.ParamSpec
4307+ ) -> None: ...
43044308 def is_activatable(self) -> bool: ...
43054309 def is_focus_sibling(
43064310 self, renderer: CellRenderer, sibling: CellRenderer
43074311 ) -> bool: ...
4308- def list_cell_properties(*args, **kwargs): ... # FIXME Function
4312+ # override
4313+ def list_cell_properties(self) -> list[GObject.ParamSpec]: ... # FIXME Function
43094314 def remove(self, renderer: CellRenderer) -> None: ...
43104315 def remove_focus_sibling(
43114316 self, renderer: CellRenderer, sibling: CellRenderer
@@ -33843,7 +33848,8 @@ class Widget(GObject.InitiallyUnowned, Accessible, Buildable, ConstraintTarget):
3384333848 def get_hexpand_set(self) -> bool: ...
3384433849 def get_last_child(self) -> typing.Optional[Widget]: ...
3384533850 def get_layout_manager(self) -> typing.Optional[LayoutManager]: ...
33846- def get_layout_manager_type(*args, **kwargs): ... # FIXME Function
33851+ # override
33852+ def get_layout_manager_type(self) -> typing.Type[typing.Any]: ...
3384733853 def get_limit_events(self) -> bool: ...
3384833854 def get_mapped(self) -> bool: ...
3384933855 def get_margin_bottom(self) -> int: ...
@@ -33975,7 +33981,8 @@ class Widget(GObject.InitiallyUnowned, Accessible, Buildable, ConstraintTarget):
3397533981 def set_layout_manager(
3397633982 cls, layout_manager: typing.Optional[LayoutManager] = None
3397733983 ) -> None: ...
33978- def set_layout_manager_type(*args, **kwargs): ... # FIXME Function
33984+ # override
33985+ def set_layout_manager_type(self, type: typing.Type[typing.Any]) -> None: ...
3397933986 def set_limit_events(self, limit_events: bool) -> None: ...
3398033987 def set_margin_bottom(self, margin: int) -> None: ...
3398133988 def set_margin_end(self, margin: int) -> None: ...
0 commit comments