wanpipe/util/wancfg/menu_adsl_framing_struct.cpp

136 lines
4.3 KiB
C++

/***************************************************************************
menu_adsl_framing_struct.cpp - description
-------------------
begin : Mon Mar 15 2004
copyright : (C) 2004 by David Rokhvarg
email : davidr@sangoma.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; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "wancfg.h"
#include "menu_adsl_framing_struct.h"
#include "text_box.h"
#define DBG_ADSL_FRAMING_STRUCT 1
menu_adsl_framing_struct::menu_adsl_framing_struct(IN char * lxdialog_path, IN wan_adsl_conf_t* adsl_cfg)
{
Debug(DBG_ADSL_FRAMING_STRUCT,
("menu_adsl_framing_struct::menu_adsl_framing_struct()\n"));
snprintf(this->lxdialog_path, MAX_PATH_LENGTH, "%s", lxdialog_path);
this->adsl_cfg = adsl_cfg;
}
menu_adsl_framing_struct::~menu_adsl_framing_struct()
{
Debug(DBG_ADSL_FRAMING_STRUCT,
("menu_adsl_framing_struct::~menu_adsl_framing_struct()\n"));
}
int menu_adsl_framing_struct::run(OUT int * selection_index)
{
string menu_str = "";
int rc = YES;
char tmp_buff[MAX_PATH_LENGTH];
char exit_dialog = NO;
int number_of_items = 0;
//help text box
text_box tb;
again:
Debug(DBG_ADSL_FRAMING_STRUCT, ("menu_adsl_framing_struct::run()\n"));
menu_str = "";
rc = YES;
exit_dialog = NO;
number_of_items = 0;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"%d\" ", WANOPT_ADSL_FRAMING_TYPE_0);
menu_str += tmp_buff;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"TYPE 0\" ");
menu_str += tmp_buff;
number_of_items++;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"%d\" ", WANOPT_ADSL_FRAMING_TYPE_1);
menu_str += tmp_buff;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"TYPE 1\" ");
menu_str += tmp_buff;
number_of_items++;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"%d\" ", WANOPT_ADSL_FRAMING_TYPE_2);
menu_str += tmp_buff;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"TYPE 2\" ");
menu_str += tmp_buff;
number_of_items++;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"%d\" ", WANOPT_ADSL_FRAMING_TYPE_3);
menu_str += tmp_buff;
snprintf(tmp_buff, MAX_PATH_LENGTH, " \"TYPE 3 (Default)\" ");
menu_str += tmp_buff;
number_of_items++;
//////////////////////////////////////////////////////////////////////////////////////
//create the explanation text for the menu
snprintf(tmp_buff, MAX_PATH_LENGTH,
"\n------------------------------------------\
\n\nSelect ADSL Framing Structure.");
if(set_configuration( YES,//indicates to call V2 of the function
MENU_BOX_SELECT,
lxdialog_path,
"ADSL FRAMING STRUCTURE",
WANCFG_PROGRAM_NAME,
tmp_buff,
MENU_HEIGTH, MENU_WIDTH,
number_of_items,
(char*)menu_str.c_str()
) == NO){
rc = NO;
goto cleanup;
}
if(show(selection_index) == NO){
rc = NO;
goto cleanup;
}
//////////////////////////////////////////////////////////////////////////////////////
exit_dialog = NO;
switch(*selection_index)
{
case MENU_BOX_BUTTON_SELECT:
Debug(DBG_ADSL_FRAMING_STRUCT,
("option selected for editing: %s\n", get_lxdialog_output_string()));
adsl_cfg->FramingStruct = atoi(get_lxdialog_output_string());
exit_dialog = YES;
break;
case MENU_BOX_BUTTON_HELP:
tb.show_help_message(lxdialog_path, NO_PROTOCOL_NEEDED, option_not_implemented_yet_help_str);
break;
case MENU_BOX_BUTTON_EXIT:
exit_dialog = YES;
break;
}//switch(*selection_index)
if(exit_dialog == NO){
goto again;
}
cleanup:
return rc;
}