mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-03-11 16:58:31 +03:00
Despite being a known quantity, autotools is so overkill for our needs, so let's drop it and replace it with a much simpler and easy to customize system.
55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
# mainmenu.py - Copyright (C) 2009 Red Hat, Inc.
|
|
# Written by Darryl L. Pierce <dpierce@redhat.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
# MA 02110-1301, USA. A copy of the GNU General Public License is
|
|
# also available at http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
from newt_syrup.menuscreen import MenuScreen
|
|
|
|
from nodemenu import NodeMenu
|
|
from netmenu import NetworkMenu
|
|
from storagemenu import StoragePoolMenu
|
|
from hostmenu import HostMenu
|
|
|
|
NODE_MENU = 1
|
|
NETWORK_MENU = 2
|
|
STORAGE_MENU = 3
|
|
HOST_MENU = 4
|
|
EXIT_CONSOLE = 99
|
|
|
|
class MainMenuScreen(MenuScreen):
|
|
def __init__(self):
|
|
MenuScreen.__init__(self, "Main Menu")
|
|
|
|
def get_menu_items(self):
|
|
return (("Node Administration", NODE_MENU),
|
|
("Network Administration", NETWORK_MENU),
|
|
("Storage Pool Administration", STORAGE_MENU),
|
|
("Host Administration", HOST_MENU))
|
|
|
|
def handle_selection(self, page):
|
|
if page is NODE_MENU:
|
|
NodeMenu()
|
|
elif page is NETWORK_MENU:
|
|
NetworkMenu()
|
|
elif page is STORAGE_MENU:
|
|
StoragePoolMenu()
|
|
elif page is HOST_MENU:
|
|
HostMenu()
|
|
|
|
def MainMenu():
|
|
screen = MainMenuScreen()
|
|
screen.start()
|