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

📄 vncviewer.rss

📁 vnc远程控制客户端Symbian手机版本
💻 RSS
📖 第 1 页 / 共 2 页
字号:
        };
    }
    
// -----------------------------------------------------------------------------
//
//   r_Input_Secret_Text_query
//   Secret Text query
//
// -----------------------------------------------------------------------------
//   
RESOURCE DIALOG r_Input_Secret_Text_query
    {
    flags = EAknGeneralQueryFlags;
    buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtQuery;
            id = EGeneralQuery;
            control = AVKON_DATA_QUERY
                {
                layout = ECodeLayout;
                label = STRING_INPUT_SECRET_TEXT_DIALOG;  // prompt text
                control = SECRETED
                    {
                    	//width = 5;
                        //lines = 1;
                        //maxlength = 15;
                    };
                };
            }
        };
    }

// -----------------------------------------------------------------------------
//
//   r_select_modifiers_query
//   Multi-selection dialog
//
// -----------------------------------------------------------------------------
//       
RESOURCE AVKON_MULTISELECTION_LIST_QUERY r_select_modifiers_query
    {
    flags = EGeneralQueryFlags;
    softkeys = R_AVKON_SOFTKEYS_DONE_CANCEL;
    items =
        {
        AVKON_MULTISELECTION_LIST_QUERY_DLG_LINE 
            {
            control = AVKON_LIST_QUERY_CONTROL
                {
                listtype = EAknCtSingleGraphicPopupMenuListBox;
                listbox = AVKON_MULTISELECTION_LIST_QUERY_LIST
                    {
                       array_id= r_select_modifiers_query_list_item;
                    };
                heading = "Select Modifiers:";
                };
            }
        };
    }

// -----------------------------------------------------------------------------
//
//   r_select_modifiers_query_list_item
//   Array of Modifiers
//
// -----------------------------------------------------------------------------
//     
RESOURCE ARRAY r_select_modifiers_query_list_item
    {
    items =
        {
        LBUF { txt = STRING_ModifierSHIFT; },
        LBUF { txt = STRING_ModifierCTRL; },
        LBUF { txt = STRING_ModifierALT; },
        LBUF { txt = STRING_ModifierMETA; }
        };
	}

// -----------------------------------------------------------------------------
//
//   r_preferences_dialog
//   Multi-page dialog
//
// -----------------------------------------------------------------------------
//   
RESOURCE DIALOG r_preferences_dialog
    {
    flags = EEikDialogFlagNoDrag | EEikDialogFlagFillAppClientRect |
            EEikDialogFlagNoTitleBar | EEikDialogFlagNoBorder |
            EEikDialogFlagCbaButtons | EEikDialogFlagWait;

	
	// **** Buttons are Select and Cancel, not Ok and Cancel **** 
	buttons = R_AVKON_SOFTKEYS_DONE_CANCEL;
    }
    
// -----------------------------------------------------------------------------
//
//   r_preferences_encoding_list
//   Encoding setting list
//
// -----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_ITEM_LIST r_preferences_encoding_list
	{
	title = STRING_encoding_preferences;
	items = 
		{
	    AVKON_SETTING_ITEM
			{
			identifier = EPreferencesAutoSelect;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_autoselect;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesEncoding;
			setting_page_resource = r_enumeratedtext_encoding_page;
			associated_resource = r_popup_encoding_list;
			name = STRING_preferences_item_encoding;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesColourLevel;
			setting_page_resource = r_enumeratedtext_colourlevel_page;
			associated_resource = r_popup_colourlevel_list;
			name = STRING_preferences_item_colourlevel;
			}
		};
	}

// -----------------------------------------------------------------------------
//
//   r_binaryswitch_page
//   Auto Select setting page
//
// -----------------------------------------------------------------------------
//     
RESOURCE AVKON_SETTING_PAGE r_binaryswitch_page
	{
	label=STRING_preferences_item_autoselect;
	type=EAknCtPopupSettingList;
	}
	
RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_binaryswitch_list
    {
    flags = 0;
    setting_texts_resource = r_on_off_texts;
    popped_up_texts_resource = r_popped_up_on_off_texts;
    }

RESOURCE ARRAY r_on_off_texts
    {
    items =
        {
        AVKON_ENUMERATED_TEXT { value=1; text = STRING_texts_on; },
        AVKON_ENUMERATED_TEXT { value=0; text = STRING_texts_off; }
        };
    }

RESOURCE ARRAY r_popped_up_on_off_texts
    {
    items =
        {
        LBUF { txt = STRING_texts_on; },
        LBUF { txt = STRING_texts_off; }
        };
    }


// -----------------------------------------------------------------------------
//
//   r_enumeratedtext_encoding_page
//   Encoding setting page
//
// -----------------------------------------------------------------------------
//  
RESOURCE AVKON_SETTING_PAGE r_enumeratedtext_encoding_page
    {   
    label= STRING_preferences_item_encoding;
    type = EAknCtPopupSettingList;
    editor_resource_id = r_popup_encoding_list_new_entry;
    }

RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_encoding_list
    {
    setting_texts_resource = r_encodinglist_page_list;
    popped_up_texts_resource = r_encodinglist_item_array;
    }

RESOURCE ARRAY r_encodinglist_page_list
    {
    items =
       {
       AVKON_ENUMERATED_TEXT {value = 16; /*EEncodingZRLE*/ text = STRING_zrle_encoding;},
       AVKON_ENUMERATED_TEXT {value = 5; /*EEncodingHextile*/ text = STRING_hextile_encoding;},
       AVKON_ENUMERATED_TEXT {value = 0; /*EEncodingRaw*/ text = STRING_raw_encoding;}
       };
    }

RESOURCE ARRAY r_encodinglist_item_array
    {
    items =
        {
        LBUF { txt = STRING_zrle_encoding; },
        LBUF { txt = STRING_hextile_encoding; },
        LBUF { txt = STRING_raw_encoding; }
        };
    }
    
RESOURCE POPUP_SETTING_LIST r_popup_encoding_list_new_entry
	{
	flags = EAknPopupSettingListFlagInitialised;
	}
	
// -----------------------------------------------------------------------------
//
//   r_enumeratedtext_colourlevel_page
//   Colour Level setting page
//
// -----------------------------------------------------------------------------
//  
RESOURCE AVKON_SETTING_PAGE r_enumeratedtext_colourlevel_page
    {   
    label= STRING_preferences_item_colourlevel;
    type = EAknCtPopupSettingList;
    editor_resource_id = r_popup_colourlevel_list_new_entry;
    }

RESOURCE AVKON_POPUP_SETTING_TEXTS r_popup_colourlevel_list
    {
    setting_texts_resource = r_colourlevellist_page_list;
    popped_up_texts_resource = r_colourlevellist_item_array;
    }

RESOURCE ARRAY r_colourlevellist_page_list
    {
    items =
       {
       AVKON_ENUMERATED_TEXT {value = 0; text = STRING_full_colourlevel;},
       AVKON_ENUMERATED_TEXT {value = 1; text = STRING_medium_colourlevel;},
       AVKON_ENUMERATED_TEXT {value = 2; text = STRING_low_colourlevel;},
       AVKON_ENUMERATED_TEXT {value = 3; text = STRING_verylow_colourlevel;}
       };
    }

RESOURCE ARRAY r_colourlevellist_item_array
    {
    items =
        {
        LBUF { txt = STRING_full_colourlevel; },
        LBUF { txt = STRING_medium_colourlevel; },
        LBUF { txt = STRING_low_colourlevel; },
        LBUF { txt = STRING_verylow_colourlevel; }
        };
    }
    
RESOURCE POPUP_SETTING_LIST r_popup_colourlevel_list_new_entry
	{
	flags = EAknPopupSettingListFlagInitialised;
	}
	
// -----------------------------------------------------------------------------
//
//   r_preferences_input_list
//   Input setting list
//
// -----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_ITEM_LIST r_preferences_input_list
	{
	title = STRING_input_preferences;
	items = 
		{
	    AVKON_SETTING_ITEM
			{
			identifier = EPreferencesViewOnly;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_viewonly;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesAcceptClipboard;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_acceptclipboard;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesSendClipboard;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_sendclipboard;
			}
		};
	}
	
// -----------------------------------------------------------------------------
//
//   r_preferences_misc_list
//   Input setting list
//
// -----------------------------------------------------------------------------
//
RESOURCE AVKON_SETTING_ITEM_LIST r_preferences_misc_list
	{
	title = STRING_misc_preferences;
	items = 
		{
	    AVKON_SETTING_ITEM
			{
			identifier = EPreferencesShared;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_shared;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesLocalCursor;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_localcursor;
			},
		AVKON_SETTING_ITEM
			{
			identifier = EPreferencesFastCopyRect;
			setting_page_resource = r_binaryswitch_page;
			associated_resource = r_popup_binaryswitch_list;
			name = STRING_preferences_item_fastcopyrect;
			}
		};
	}
    
// -----------------------------------------------------------------------------
//
//   r_preferences_tab_group
//   Preferences tab group
//
// -----------------------------------------------------------------------------
//   
RESOURCE TAB_GROUP r_preferences_tab_group
{
	tab_width = EAknTabWidthWithThreeTabs;
	active = 0;
	tabs =
	{
	TAB 
		{
		id = EPreferencesDialogPage01;
		txt = STRING_preferences_dialog_label_page1;
		},
	TAB 
		{
		id = EPreferencesDialogPage02;
		txt = STRING_preferences_dialog_label_page2;
		},
	TAB 
		{
		id = EPreferencesDialogPage03;
		txt = STRING_preferences_dialog_label_page3;
		}
	};
}

// -----------------------------------------------------------------------------
//
//   r_about_dialog
//   About diaolg
//
// -----------------------------------------------------------------------------
//  
RESOURCE DIALOG r_about_dialog
    {
    flags = EAknGeneralQueryFlags;
    buttons = R_AVKON_SOFTKEYS_CLOSE;
    items =
        {
        DLG_LINE 
        	{
            type = EAknCtPopupHeadingPane;
            id = EAknMessageQueryHeaderId;
            itemflags = EEikDlgItemNonFocusing;
            control = AVKON_HEADING
            	{
            	headinglayout = R_AVKON_LIST_HEADING_PANE_POPUPS;
            	label = STRING_about_heading;
                };
            },
        DLG_LINE
            {
            type = EAknCtMessageQuery;
            id = EAknMessageQueryContentId;
            control = AVKON_MESSAGE_QUERY
                {
                message = STRING_about_message;
                };
            }
        };
    }
 
// -----------------------------------------------------------------------------
//
//   r_connection_info_dialog
//   Connection Info diaolg
//
// -----------------------------------------------------------------------------
//  
RESOURCE DIALOG r_connection_info_dialog
    {
    flags = EAknGeneralQueryFlags;
    buttons = R_AVKON_SOFTKEYS_CLOSE;
    items =
        {
        DLG_LINE 
        	{
            type = EAknCtPopupHeadingPane;
            id = EAknMessageQueryHeaderId;
            itemflags = EEikDlgItemNonFocusing;
            control = AVKON_HEADING
            	{
            	headinglayout = R_AVKON_LIST_HEADING_PANE_POPUPS;
            	label = STRING_connection_info_heading;
                };
            },
        DLG_LINE
            {
            type = EAknCtMessageQuery;
            id = EAknMessageQueryContentId;
            control = AVKON_MESSAGE_QUERY
                {
                };
            }
        };
    }
    
RESOURCE TBUF r_connection_info_message
	{
	buf = STRING_connection_info_message;
	}

// -----------------------------------------------------------------------------
//
// Resources for messages.
//
// -----------------------------------------------------------------------------
//
RESOURCE TBUF32 r_VncV_caption_string { buf=STRING_VncV_caption_string; }

// ---------------------------------------------------------------------------- 
//
// r_VncViewer_localisable_app_info
//
// ---------------------------------------------------------------------------- 
//
RESOURCE LOCALISABLE_APP_INFO r_VncViewer_localisable_app_info
    {
    short_caption = STRING_VncV_caption_string;
    caption_and_icon = 
    CAPTION_AND_ICON_INFO
        {
        caption = STRING_VncV_caption_string;

        number_of_icons = 3;
	   	icon_file = "\\resource\\apps\\vncviewer.mbm";
	    };
    }

// End of File

⌨️ 快捷键说明

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