Add libgnome-control-center with two new classes: CcShell and CcPanel
CcShell is an abstract class that represents an instance of a control center shell. It provides access to some of the properties of the shell that panels will need to read or change. When a panel is created it has an instance of CcShell available that represents the current shell. CcPanel is an abstract class used to implement panels for the shell. A panel contains a collection of related settings that are displayed within the shell window.
This commit is contained in:
parent
eb0e3e7785
commit
b4fdb6db4f
15 changed files with 965 additions and 3 deletions
|
@ -0,0 +1,43 @@
|
|||
<SECTION>
|
||||
<FILE>cc-shell</FILE>
|
||||
<TITLE>CcShell</TITLE>
|
||||
CcShell
|
||||
CcShellClass
|
||||
cc_shell_get_active_panel
|
||||
cc_shell_set_active_panel
|
||||
cc_shell_set_active_panel_from_id
|
||||
<SUBSECTION Standard>
|
||||
CC_SHELL
|
||||
CC_IS_SHELL
|
||||
CC_TYPE_SHELL
|
||||
cc_shell_get_type
|
||||
CC_SHELL_CLASS
|
||||
CC_IS_SHELL_CLASS
|
||||
CC_SHELL_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
CcShellPrivate
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>cc-panel</FILE>
|
||||
<TITLE>CcPanel</TITLE>
|
||||
CcPanel
|
||||
CcPanelClass
|
||||
cc_panel_get_id
|
||||
cc_panel_get_shell
|
||||
cc_panel_get_display_name
|
||||
cc_panel_set_display_name
|
||||
cc_panel_get_active
|
||||
cc_panel_set_active
|
||||
<SUBSECTION Standard>
|
||||
CC_PANEL
|
||||
CC_IS_PANEL
|
||||
CC_TYPE_PANEL
|
||||
cc_panel_get_type
|
||||
CC_PANEL_CLASS
|
||||
CC_IS_PANEL_CLASS
|
||||
CC_PANEL_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
CcPanelPrivate
|
||||
</SECTION>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue