0

我是C++新手, 我刚刚开始将一个最初在python/Qt中的程序移植到C++/Qt,以便利用可以嵌入到我的程序中的更好的终端小部件。现在我有点卡住了,我正在尝试设置如果选择了下拉框中的不同项目,则currentIndex()选项卡小部件的相应更改。

到目前为止,这是我的代码:

    //main.cpp

    #include <QApplication>
    #include "mainwindow.h"

    int main(int argc, char *argv[])
    {
        QApplication a(argc, argv);
        MainWindow w;
        w.show();

        return a.exec();
    }

这是mainwindow.h

    #ifndef MAINWINDOW_H
    #define MAINWINDOW_H

    #include <QMainWindow>
    #include <QTimer>


    namespace Ui {
    class MainWindow;
    }

    class MainWindow : public QMainWindow
    {
        Q_OBJECT

    public:
        explicit MainWindow(QWidget *parent = 0);
        ~MainWindow();
        QTimer *timer;
        void startMyTimer()
        {
            timer = new QTimer();
            timer->setInterval(1);
            timer->start();
            QObject::connect(timer,SIGNAL(timeout()),this,SLOT(changeIndex()));
        }

    private:
        Ui::MainWindow *ui;
        void changeIndex();
         };

    #endif // MAINWINDOW_H

最后是 mainwindow.cpp

    #include "mainwindow.h"
    #include "ui_mainwindow.h"

    MainWindow::MainWindow(QWidget *parent) :
        QMainWindow(parent),
        ui(new Ui::MainWindow)
    {
        ui->setupUi(this);
        changeIndex();
    }

    MainWindow::~MainWindow()
    {
        delete ui;
    }

    void MainWindow::changeIndex()
    {
        if (ui->comboBox->currentText() == "add-apt-repository")
        {
            ui->stackedWidget->setCurrentIndex(0);
            ui->checkBox->setCheckState(Qt::Checked);
        }
        if (ui->comboBox->currentText() == "apt-get")
        {
            ui->stackedWidget->setCurrentIndex(1);
            ui->checkBox->setCheckState(Qt::Checked);
        }
        if (ui->comboBox->currentText() == "aptitude")
        {
           ui->stackedWidget->setCurrentIndex(2);
           ui->checkBox->setCheckState(Qt::Checked);
        }
        if (ui->comboBox->currentText() == "bzr")
        {
            ui->stackedWidget->setCurrentIndex(3);
            ui->checkBox->setCheckState(Qt::Unchecked);
        }
        if (ui->comboBox->currentText() == "cd")
        {
            ui->stackedWidget->setCurrentIndex(4);
            ui->checkBox->setCheckState(Qt::Unchecked);
        }
        if (ui->comboBox->currentText() == "chmod")
        {
            ui->stackedWidget->setCurrentIndex(5);
            ui->checkBox->setCheckState(Qt::Checked);
        }
    }

我看过一堆 QTimer 的例子,但我很茫然。我也尝试过,if (ui->comboBox->changeEvent())但我可能也用错了。

4

2 回答 2

1

放下计时器,这里没用。相反,通过将 changeIndex() 放入“私有插槽:”部分,将其设为插槽:

public slots:
    void changeIndex();

然后在 MainWindow 构造函数中将组合框的currentIndexChanged 信号连接到您的插槽:

connect( ui->combobox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeIndex()) );
于 2013-01-29T17:58:09.213 回答
1

首先,您可能必须标记changeIndex()为插槽,如下所示:

class MainWindow : public QMainWindow
{
    Q_OBJECT

    // ...

    private slots: 
        void changeIndex();

    private:
        Ui::MainWindow *ui;
}

这也需要您调用 Qt 元对象编译器。如果您使用 qmake,那已经为您完成了。否则,这取决于您的构建系统。

其次,使用计时器有什么特别的原因吗?您还可以连接到组合框的currentIndexChanged信号之一。

于 2013-01-29T18:01:27.737 回答