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

📄 capturescreen.rss

📁 Symbian UIQ3平台输入法应用。
💻 RSS
字号:
// rss

NAME HSEM

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


RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf = ""; }


RESOURCE EIK_APP_INFO
{
}

#include "CommandsCommon.ra"


RESOURCE QIK_VIEW_CONFIGURATIONS r_capturescreen_baseview_ui_configurations
{
  configurations=
    {
    QIK_VIEW_CONFIGURATION
      {
      ui_config_mode = KQikSoftkeyStyleTouchPortrait;
      view = r_capturescreen_baseview_layout;
      command_list = r_capturescreen_baseview_commands;
      },
    QIK_VIEW_CONFIGURATION
      {
      ui_config_mode = KQikPenStyleTouchPortrait;
      view = r_capturescreen_baseview_layout;
      command_list = r_capturescreen_baseview_commands;
      },
    QIK_VIEW_CONFIGURATION
      {
      ui_config_mode = KQikPenStyleTouchLandscape;
      view = r_capturescreen_baseview_layout;
      command_list = r_capturescreen_baseview_commands;
      },
    QIK_VIEW_CONFIGURATION
      {
      ui_config_mode = KQikSoftkeyStyleSmallPortrait;
      view = r_capturescreen_baseview_layout;
      command_list = r_capturescreen_baseview_commands;
      },
    QIK_VIEW_CONFIGURATION
      {
      ui_config_mode = KQikSoftkeyStyleSmallLandscape;
      view = r_capturescreen_baseview_layout;
      command_list = r_capturescreen_baseview_commands;
      }
    };
}


RESOURCE QIK_VIEW r_capturescreen_baseview_layout
{
        pages = r_capturescreen_baseview_layout_pages;
}


RESOURCE QIK_VIEW_PAGES r_capturescreen_baseview_layout_pages
{
  pages =
    {
    QIK_VIEW_PAGE
      {
      page_id = EcapturescreenBaseViewPage;
      page_content = r_capturescreen_baseview_page_control;
      }
    };
 }


RESOURCE QIK_CONTAINER_SETTINGS r_capturescreen_baseview_page_control
{
    controls =
      {
      };
}





RESOURCE DIALOG r_about_dialog
{
    title = "About capturescreen";
    buttons = R_EIK_BUTTONS_CONTINUE;
    flags = EEikDialogFlagWait;
    items =
    {


        DLG_LINE
        {
            type = EEikCtLabel;
            control = LABEL
            {
                txt="This application takes screenshots of the phone screen.";
                horiz_align=EEikLabelAlignHLeft;
            };
        }
	,DLG_LINE
        {
            type = EEikCtLabel;
            control = LABEL
            {
                txt="The resulting image bmp file is saved to either C: or D:";
                horiz_align=EEikLabelAlignHLeft;
            };
        }

        ,DLG_LINE
        {
            type = EEikCtLabel;
            control = LABEL
            {
                txt="Version 1.0";
                horiz_align=EEikLabelAlignHLeft;
            };
        }
    };
}

⌨️ 快捷键说明

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