本文整理汇总了C++中Singleton::Get_Faktura_HeaderState方法的典型用法代码示例。如果您正苦于以下问题:C++ Singleton::Get_Faktura_HeaderState方法的具体用法?C++ Singleton::Get_Faktura_HeaderState怎么用?C++ Singleton::Get_Faktura_HeaderState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Singleton
的用法示例。
在下文中一共展示了Singleton::Get_Faktura_HeaderState方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: BaseForm
AnalitikaArtikliLista::AnalitikaArtikliLista(BaseForm *parent) :
BaseForm(parent),
ui(new Ui::AnalitikaArtikliLista)
, enableClose(true)
{
ui->setupUi(this);
hlp = new QHelperC(this);
m_row = 0;
Singleton *s = Singleton::Instance();
QRect rMain = s->getMainRect();
ui->gridLayout->setGeometry(rMain);
setLayout(ui->gridLayout);
BaseInstallEventFilter(ui->gridLayout);
ui->tableView->setSelectionBehavior( QAbstractItemView::SelectRows );
ui->tableView->setSelectionMode( QAbstractItemView::SingleSelection );
setFixedSize(QSize(rMain.width()-10, rMain.height()-40));
model = new QStandardItemModel(0,0);
header = new QHeaderView(Qt::Horizontal, 0);
model_2 = new QStandardItemModel(0,0);
header_2 = new QHeaderView(Qt::Horizontal, 0);
QStringList tempVals = s->Get_Faktura_HeaderState();
colWidth = s->loadWidthList(tempVals, COL);
b = new QBTemplate<AnalitikaArtikliT>();
bd = new QBTemplate<dokumentDetailT>();
bc = new QBTemplate<AnalitikaArtikliDetailT>();
QStringList tempValsDetail = s->Get_FakturaDetail_HeaderState();
colDetailWidth = s->loadWidthList(tempValsDetail, COL_DETAIL);
ui->tableView->setModel(model);
sm =ui->tableView->selectionModel();
connect(sm, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), this, SLOT(selectionChanged(QModelIndex,QModelIndex)));
connect(header, SIGNAL(sectionResized(int, int, int)), this, SLOT(procSectionResized(int, int, int)));
connect(header_2, SIGNAL(sectionResized(int, int, int)), this, SLOT(procSectionResizedDetail(int, int, int)));
updateFont();
}