home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / include / bootloader / ppc / dialogs.ycp < prev    next >
Text File  |  2006-11-29  |  1KB  |  52 lines

  1. /**
  2.  * File:
  3.  *      include/bootloader/ppc/dialogs.ycp
  4.  *
  5.  * Module:
  6.  *      Bootloader installation and configuration
  7.  *
  8.  * Summary:
  9.  *      Dialogs for configuraion PowerPC-specific functions
  10.  *
  11.  * Authors:
  12.  *      Joachim Plack <jplack@suse.de>
  13.  *
  14.  * $Id: dialogs.ycp 27748 2006-02-08 15:15:11Z jplack $
  15.  *
  16.  */
  17.  
  18.  
  19. {
  20. textdomain "bootloader";
  21.  
  22. import "Label";
  23. import "CWM";
  24.  
  25. include "bootloader/ppc/ppc_widgets.ycp";
  26.  
  27.  
  28. /**
  29.  * Run dialog to adjust installation on PowerPC based systems
  30.  * @return symbol for wizard sequencer
  31.  */
  32. symbol ppcBootLoaderOptionsDialog () {
  33.  
  34.     term contents = `HBox (`HSpacing (2), `VBox (
  35.         `VStretch (),
  36.     "boot_loader_options",
  37.     `VStretch ()
  38.     ), `HSpacing (2));
  39.  
  40.     return CWM::ShowAndRun ($[
  41.     "widget_descr" : ppcWidgets (),
  42.     "widget_names" : ["boot_loader_options"],
  43.     "contents" : contents,
  44.     "caption" :  _("Boot Loader Options"),
  45.     "back_button" : Label::BackButton (),
  46.     "abort_button" : Label::AbortButton (),
  47.     "next_button" : Label::OKButton (),
  48.     ]);
  49. }
  50.  
  51. } // EOF
  52.