![]() |
![]() |
![]() |
Cutterリファレンスマニュアル | ![]() |
---|---|---|---|---|
gboolean gcut_object_equal (const GObject *object1, const GObject *object2, GEqualFunc equal_func); gchar* gcut_object_inspect (const GObject *object); gchar* gcut_object_inspect_custom (const GObject *object, GCutInspectFunc inspect_func, gpointer user_data);
gboolean gcut_object_equal (const GObject *object1, const GObject *object2, GEqualFunc equal_func);
ふたつのGObject、object1
とobject2
をequal_func
で比較します。equal_func
がNULLの場合はobject1
とobject2
は単にメモリの位置だけで比較します。
|
比較するGObject。 |
|
比較するGObject。 |
|
ふたつのGObjectを比較する関数。NULLも可。 |
戻り値 : |
object1 == object2 あるいはequal_func (object1 , object2 )がTRUEならTRUE、そうでない場合はFALSE。 |
1.0.5から
gchar* gcut_object_inspect (const GObject *object);
object
のプロパティの詳細を返します。返された文字列が必要なくなったときは開放してください。
|
GObject。 |
戻り値 : |
object の詳細を示した文字列。 |
1.0.5から
gchar* gcut_object_inspect_custom (const GObject *object, GCutInspectFunc inspect_func, gpointer user_data);
object
をinspect_func
で詳細を示します。返された文字列が必要なくなったときは開放してください。
|
GObject。 |
|
object の詳細を示す関数。 |
|
関数に渡すユーザ用データ。 |
戻り値 : |
object の詳細を示した文字列。 |
1.0.5から