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

📄 simpleexwthr.rss

📁 symbian下的几个小例子。。很值得学习
💻 RSS
字号:
// simpleExWthr.rss
//
// Copyright (c) Symbian Software Ltd 1999 - 2007.  All rights reserved.
//
/*=====================================
   UIQ SimpleExWthr Resource File  
=====================================*/

NAME SIMP

#include <eikon.rh>
#include <qikon.rh>
#include <QikCommand.rh>
#include "SimpleEx.hrh"

RESOURCE RSS_SIGNATURE
    {
    }

RESOURCE TBUF r_default_document_name
    {
    buf="";
    }

RESOURCE EIK_APP_INFO 
    {
    
    }

RESOURCE QIK_VIEW_CONFIGURATIONS r_simpleex_configurations
	{
	configurations = 
		{
		QIK_VIEW_CONFIGURATION
			{
			ui_config_mode = KQikPenStyleTouchPortrait;
			command_list = r_simpleex_commands;
                        view = r_simpleex_layout;
 
			},
		QIK_VIEW_CONFIGURATION
			{
			ui_config_mode = KQikSoftkeyStyleSmallPortrait;
			command_list = r_simpleex_commands;
			}
		};
	}
RESOURCE QIK_VIEW r_simpleex_layout
	{
	pages = r_simpleex_layout_pages;
	}


// Defines the pages of a view. 
// Only one page for this example.

RESOURCE QIK_VIEW_PAGES r_simpleex_layout_pages
	{
	pages = 
		{
		QIK_VIEW_PAGE
			{
			page_id = ESimpleExViewPage;
			}
		};
	}


RESOURCE QIK_COMMAND_LIST r_simpleex_commands
	{
	items =
		{
		
		
		QIK_COMMAND
			{
			id = ESimpleExCommand;
			type = EQikCommandTypeScreen;
			text = "Start";
			},
                QIK_COMMAND
			{
			id = ESimpleExTemperatureCommand;
			type = EQikCommandTypeScreen;
			text = "Get temperature";
			},
 
   // This command is only visible in debug mode for finding memory leaks.  Exit is not in production UIQ code.
                QIK_COMMAND
			{
			id = EEikCmdExit;
			type = ESimpleExCommand;
			// Indicate that this command will only be visible in debug
			stateFlags = EQikCmdFlagDebugOnly;
			text = "Exit";
			}

		};
	}

⌨️ 快捷键说明

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