Camel.Settings¶
- Subclasses:
Methods¶
- Inherited:
- Structs:
|
|
|
Virtual Methods¶
- Inherited:
|
|
|
Properties¶
None
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
parent |
r |
Class Details¶
- class Camel.Settings(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
Contains only private data that should be read and manipulated using the functions below.
New in version 3.2.
- clone()¶
- Returns:
a newly-created copy of self
- Return type:
Creates a copy of self, such that passing self and the copied instance to
Camel.Settings.equal
() would returnTrue
.By default, this creates a new settings instance with the same
GObject.GType
as self, and copies allGObject.Object
property values from self to the new instance.New in version 3.2.
- equal(settings_b)¶
- Parameters:
settings_b (
Camel.Settings
) – anotherCamel.Settings
- Returns:
True
if self and settings_b are equal- Return type:
Returns
True
if self and settings_b are equal.By default, equality requires both instances to have the same
GObject.GType
with the same set ofGObject.Object
properties, and each property value in self is equal to the corresponding value in settings_b.New in version 3.2.
- do_clone() virtual¶
- Returns:
a newly-created copy of settings
- Return type:
Creates a copy of settings, such that passing settings and the copied instance to
Camel.Settings.equal
() would returnTrue
.By default, this creates a new settings instance with the same
GObject.GType
as settings, and copies allGObject.Object
property values from settings to the new instance.New in version 3.2.
- do_equal(settings_b) virtual¶
- Parameters:
settings_b (
Camel.Settings
) – anotherCamel.Settings
- Returns:
True
if settings_a and settings_b are equal- Return type:
Returns
True
if settings_a and settings_b are equal.By default, equality requires both instances to have the same
GObject.GType
with the same set ofGObject.Object
properties, and each property value in settings_a is equal to the corresponding value in settings_b.New in version 3.2.