📄 zparmline.ui.h
字号:
/****************************************************************************** ui.h extension file, included from the uic-generated form implementation.**** If you wish to add, delete or rename functions or slots use** Qt Designer which will update this file, preserving your code. Create an** init() function in place of a constructor, and a destroy() function in** place of a destructor.*****************************************************************************/int Indexs=23;char* Index[]={ "ASI","振动升降指标", "BOLL","布林线", "BRAR","成交量变异率", "CCI","顺势指标", "CR","成交量变异率", "DMA","指数平均数", "DMI","趋向指标", "EMV","简易波动指标", "EXPMA","指数平均数", "KDJ","随机指标", "MIKE","麦克指标", "MACD","平滑异同移动平均线", "OBV","能量潮", "RSI","相对强弱指标", "ROC","变动率指标", "SAR","停损点", "VR","成交量变异率", "TRIX","三重指数平滑移动平均", "PSY","心理线", "W%R","威廉指标", "WVAD","威廉变异离散量", "BIAS","乖离率",};void ZParmLine::clear(){}void ZParmLine::setData(){ PTabWidget->currentPage()->repaint(true); }void ZParmLine::init(){ PTabWidget=new QTabWidget(this); PTabWidget->setTabPosition(QTabWidget::Bottom); connect(PTabWidget,SIGNAL(currentChanged ( QWidget * )),this,SLOT(indexChanged(QWidget*)));}void ZParmLine::initTab(ZDaysTel** pDaysTel){ for(int i=0;i<Indexs;i++) { PLine=new ZPLineWidget(this,(QString(Index[2*i+0]))); PTabWidget->insertTab(PLine,tr(QString(Index[2*i+0]))); PTabWidget->changeTab(PLine,tr(QString(Index[2*i+0]))); PTabWidget->setTabToolTip ( PLine,tr(QString(Index[2*i+1])) ); PLine->setData(pDaysTel); } PTabWidget->setCurrentPage(11);}void ZParmLine::resizeEvent( QResizeEvent * ){ int w=this->width(); int h=this->height(); PTabWidget->setGeometry(0,0,w,h);}void ZParmLine::indexChanged(QWidget*){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -