mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Add GtkFileFilter properties
This commit is contained in:
parent
b776163cd7
commit
ebfa72d94f
13 changed files with 141 additions and 39 deletions
|
@ -60,12 +60,17 @@ class GirType:
|
|||
def doc(self):
|
||||
return None
|
||||
|
||||
class BasicType(GirType):
|
||||
name: str = "unknown type"
|
||||
|
||||
def assignable_to(self, other) -> bool:
|
||||
raise NotImplementedError()
|
||||
|
||||
@property
|
||||
def full_name(self) -> str:
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
class BasicType(GirType):
|
||||
name: str = "unknown type"
|
||||
|
||||
@property
|
||||
def full_name(self) -> str:
|
||||
return self.name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue