Top |
The GtexBuildToolsPersonal singleton class represents the personal build
tools. The personal build tools can be entirely modified. The XML file can be
saved with gtex_build_tools_personal_save()
.
GtexBuildToolsPersonal *
gtex_build_tools_personal_get_instance
(void
);
Gets the instance of the GtexBuildToolsPersonal singleton.
void
gtex_build_tools_personal_save (GtexBuildToolsPersonal *build_tools
);
Saves asynchronously the personal build tools into the XML file.
void gtex_build_tools_personal_move_up (GtexBuildToolsPersonal *build_tools
,guint tool_num
);
Move a build tool up. The first build tool is at the top.
build_tools |
the GtexBuildToolsPersonal instance. |
|
tool_num |
the build tool position in the list. |
void gtex_build_tools_personal_move_down (GtexBuildToolsPersonal *build_tools
,guint tool_num
);
Move a build tool down. The first build tool is at the top.
build_tools |
the GtexBuildToolsPersonal instance. |
|
tool_num |
the build tool position in the list. |
void gtex_build_tools_personal_delete (GtexBuildToolsPersonal *build_tools
,guint tool_num
);
Deletes a build tool.
build_tools |
the GtexBuildToolsPersonal instance. |
|
tool_num |
the build tool position in the list. |
void gtex_build_tools_personal_add (GtexBuildToolsPersonal *build_tools
,GtexBuildTool *new_build_tool
);
Append the new build tool at the end of the list.
build_tools |
the GtexBuildToolsPersonal instance. |
|
new_build_tool |
the new build tool object. |
void gtex_build_tools_personal_insert (GtexBuildToolsPersonal *build_tools
,GtexBuildTool *new_build_tool
,guint position
);
Inserts a new build tool at a given position.
build_tools |
the GtexBuildToolsPersonal instance. |
|
new_build_tool |
the new build tool object. |
|
position |
the position in the list where to insert the new build tool. |
void gtex_build_tools_personal_replace (GtexBuildToolsPersonal *build_tools
,GtexBuildTool *new_build_tool
,guint position
);
Replaces a build tool.
build_tools |
the GtexBuildToolsPersonal instance. |
|
new_build_tool |
the new build tool object. |
|
position |
the position in the list where to replace the build tool. The old
build tool located at |