This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbsetup/m_bbs.c
2003-08-16 20:45:01 +00:00

110 lines
2.6 KiB
C

/*****************************************************************************
*
* $Id$
* Purpose ...............: BBS Setup Program
*
*****************************************************************************
* Copyright (C) 1997-2002
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS 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, or (at your option) any
* later version.
*
* MB BBS 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 MB BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*****************************************************************************/
#include "../config.h"
#include "../lib/libs.h"
#include "../lib/structs.h"
#include "../lib/common.h"
#include "screen.h"
#include "mutil.h"
#include "ledit.h"
#include "m_lang.h"
#include "m_protocol.h"
#include "m_ol.h"
#include "m_fgroup.h"
#include "m_farea.h"
#include "m_menu.h"
#include "m_bbs.h"
#include "m_bbslist.h"
#include "m_limits.h"
void bbs_menu(void)
{
for (;;) {
clr_index();
set_color(WHITE, BLACK);
mvprintw( 5, 6, "8. BBS SETUP");
set_color(CYAN, BLACK);
mvprintw( 7, 6, "1. Edit Security Limits");
mvprintw( 8, 6, "2. Edit Language Setup");
mvprintw( 9, 6, "3. Edit BBS Menus");
mvprintw(10, 6, "4. Edit File Areas");
mvprintw(11, 6, "5. Edit Transfer Protocols");
mvprintw(12, 6, "6. Edit BBS List Data");
mvprintw(13, 6, "7. Edit Oneliners");
switch(select_menu(7)) {
case 0: return;
case 1: EditLimits();
break;
case 2: EditLanguage();
break;
case 3: EditMenus();
break;
case 4: EditFilearea();
break;
case 5: EditProtocol();
break;
case 6: bbslist_menu();
break;
case 7: ol_menu();
break;
}
}
}
int bbs_doc(FILE *fp, FILE *toc, int page)
{
page = newpage(fp, page);
addtoc(fp, toc, 8, 0, page, (char *)"BBS setup");
page = bbs_limits_doc(fp, toc, page);
page = bbs_lang_doc(fp, toc, page);
page = bbs_menu_doc(fp, toc, page);
page = bbs_file_doc(fp, toc, page);
page = bbs_prot_doc(fp, toc, page);
return page;
}