⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httpserver.rss

📁 Symbian手机上一个简单的http server 服务器代码
💻 RSS
字号:
/**
 * HttpServer resources
 *
 * Copyright (C) SWelcom 2004
 * Created by Kenneth Falck <kennu@swelcom.fi>
 *
 * This file is part of EPOCHTTP.
 *
 * EPOCHTTP 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.
 *
 * EPOCHTTP 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 EPOCHTTP; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

NAME HTTP

#include <eikon.rh>
#include <eikcore.rsg>
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <avkon.hrh>
#include <avkon.loc>

#include "HttpServer.hrh"

RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf = ""; }

RESOURCE EIK_APP_INFO
{
	status_pane = R_AVKON_STATUS_PANE_LAYOUT_USUAL;
	hotkeys = R_HTTPSERVER_HOTKEYS;
	menubar = R_HTTPSERVER_MENUBAR;
	// cba = R_HTTPSERVER_CBA_OPTIONS_NEXT;
	cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
}

RESOURCE AVKON_VIEW R_HTTPSERVER_VIEW
{
}

/*
RESOURCE CBA R_SWLAUCN_CBA_OPTIONS_NEXT
{
	buttons =
	{
		CBA_BUTTON
		{
			id = EAknSoftkeyOptions;
			txt = text_softkey_option;
		},
		AVKON_CBA_BUTTON
		{
			id = EAknSoftkeyBack;
			txt = text_softkey_back;
		}
	};
}
*/

RESOURCE HOTKEYS R_HTTPSERVER_HOTKEYS
{
	control =
	{
		HOTKEY { command = EEikCmdExit; key = 'e'; },
		HOTKEY { command = EEikCmdExit; key = '5'; }
	};
}

RESOURCE MENU_BAR R_HTTPSERVER_MENUBAR
{
	titles=
	{
		MENU_TITLE { menu_pane = R_HTTPSERVER_FIRST_MENU; txt = "HttpServer"; }
	};
}

RESOURCE MENU_PANE R_HTTPSERVER_FIRST_MENU
{
	items =
	{
		MENU_ITEM { command = EHttpMenuStartStop; txt = "Start/Stop Server"; },
		MENU_ITEM { command = EHttpMenuExit; txt = "Exit"; }
	};
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -