Module adminwindow
source code
admin window interface, the main interface of flumotion-admin.
Here is an overview of the different parts of the admin interface:
+--------------[ AdminWindow ]-------------+
| Menubar |
+------------------------------------------+
| Toolbar |
+--------------------+---------------------+
| | |
| | |
| | |
| | |
| ComponentList | ComponentView |
| | |
| | |
| | |
| | |
| | |
+--------------------+---------------------+
| AdminStatusbar |
+-------------------------------------------
The main class which builds everything together is a AdminWindow, which is defined in this file:
|
AdminWindow
Creates the GtkWindow for the user interface.
|
MAIN_UI
- Value:
"""
<ui>
<menubar name="Menubar">
<menu action="Connection">
<menuitem action="OpenRecent"/>
<menuitem action="OpenExisting"/>
<menuitem action="ImportConfig"/>
<menuitem action="ExportConfig"/>
...
|
|
RECENT_UI_TEMPLATE
- Value:
'''<ui>
<menubar name="Menubar">
<menu action="Connection">
<placeholder name="Recent">
%s
</placeholder>
</menu>
</menubar>
...
|
|