📄 ciksdemo.rss
字号:
// Copyright (C) 2005 Darrell Karbott (djk2005@users.sf.net)
// This code is free software; you can redistribute it and/or modify
// it under the terms of the GNU Public Licence (GPL) version 2 See
// http://www.gnu.org/ for further details of the GPL.
//
NAME IKSD
#include <eikon.rh>
#include <eikcore.rsg>
#include <qikon.rh>
#include <eikcdlg.rsg>
#include "iksdemoui.hrh"
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf=""; }
RESOURCE EIK_APP_INFO
{
menubar=r_iksdemo_menubar;
toolbar=r_iksdemo_toolbar;
}
RESOURCE QIK_TOOLBAR r_iksdemo_toolbar
{
}
RESOURCE MENU_BAR r_iksdemo_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_iksdemo_main_menu; txt="CIksDemo"; }
};
}
RESOURCE MENU_PANE r_iksdemo_main_menu
{
items=
{
MENU_ITEM { command=ECmdConnect; txt="Connect..."; },
MENU_ITEM { command=ECmdDisconnect; txt="Disconnect!"; },
MENU_ITEM { command=ECmdSendMsg; txt="Send Message..."; },
MENU_ITEM { command=EEikCmdExit; txt="Close App"; }
};
}
RESOURCE DIALOG r_connect_dialog
{
title = "Jabber Login Info";
buttons = R_EIK_BUTTONS_CANCEL_DONE;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
prompt = "Jid";
id = ECIksDemoJid;
type = EEikCtComboBox;
control = COMBOBOX { width = 25; maxlength = 32; maxarraysize= 64; };
},
DLG_LINE
{
prompt = "Password";
id = ECIksDemoPassword;
type = EEikCtSecretEd;
control = SECRETED { num_letters=64; };
}
};
}
RESOURCE DIALOG r_send_dialog
{
title = "Send Message";
buttons = R_EIK_BUTTONS_CANCEL_DONE;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
prompt = "To";
id = ECIksDemoJid;
type = EEikCtComboBox;
control = COMBOBOX { width = 25; maxlength = 32; maxarraysize= 64; };
},
DLG_LINE
{
id = ECIksDemoMsg;
type = EEikCtEdwin;
control = EDWIN { lines = 3; };
}
};
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -