我是韩国人,所以请理解我不擅长英语。
我只是用QT5制作POS系统。
当我按下一些按钮(红色(时,我想制作,在表(黄色(上显示;
这样:
在此处输入图像描述
所以,我读了一些具有某些项目名称的文件,然后将它们放入qpushbutton数组中。
我将那个qpushbutton阵列连接在一起:
void qt_test::put_item(QWidget *Widget, QString location){
QGridLayout *layout = new QGridLayout();
QPushButton *button[25]; //set QPushButton array;
QString name[25]; //store name of item;
fileio file;
file.file_io2(name, location); //read file and get name of item;
int temp=0;
for(int i=0;i<5;i++){
for(int j=1;j<6;j++,temp++){
//insert name in QPushButton
button[temp] = new QPushButton(name[temp]);
button[temp]->setMinimumSize(10,70);
layout->addWidget(button[temp],i,j);
}
}
Widget->setLayout(layout);
//connect QPushArray.
connect(*button,SIGNAL(clicked()),this,SLOT(input_item()));
}
这是我认为的插槽
void qt_test::input_item(){
if(!(P_ROW==9)){
ui.sel_item_table->item(P_ROW,0)->setText("test");
++P_ROW;
}
问题是,
我不知道如何将文本放在qtable中的qpushbotton中。
如何控制我在插槽中连接的按钮。在我的代码中,只有一个按钮可行...并非所有按钮。只是洋葱汤;(
您需要连接每个单独的按钮:
for(int i=0;i<5;i++){
for(int j=1;j<6;j++,temp++){
//insert name in QPushButton
button[temp] = new QPushButton(name[temp]);
button[temp]->setMinimumSize(10,70);
layout->addWidget(button[temp],i,j);
connect( button[temp], &QPushButton::clicked, [=] { input_item( button[temp] ); } );
}
}
...
void qt_test::input_item( QPushButton* button )
{
ui.sel_item_table->item(P_ROW,0)->setText( button->text() );
}