将QCheckBox的状态保存在文件中,程序重启时加载状态

Save the state of QCheckBox in file, and load the state when program restarts

在我的 GUI 应用程序中,我的主窗口中有一些标签,标签的可见性是通过按下按钮(设置)时打开的对话框中的复选框控制的。现在,一切正常,即如果我打开设置对话框,我可以选中或取消选中复选框;因此标签也被设置为可见或不可见。

mysettingsdialog.cpp

void mysettingsdialog::onclick(bool checked)      //by AJ kpi conf
{
    if(myCheckBox->isChecked()==true)
    {
        emit setlabelvisible();
    }
    else
    {
        emit setlabelinvisible();
    }
}

mainwindow.cpp

MySettingsDialog* myset=new MySettingsDialog(this);
connect(myset,SIGNAL(setlabelvisible()),this,SLOT(enable1()));          
connect(myset,SIGNAL(setlabelinvisible()),this,SLOT(disable1()));

void MainWindow::enable1()      
{
    ui->label->setVisible(true);
    qDebug()<<"VISIBLE label";
}
void MainWindow::disable1()     
{
    ui->label->setVisible(false);
    qDebug()<<"INVISIBLE label";
}

现在的问题是,每次我的应用程序重新启动时,它都不会保留以前的复选框状态。所以我想将复选框的状态保存在一个变量中并将其写入文件,这样每当我的应用程序启动时它都会读取文件并相应地设置复选框的状态。

我的问题是,如何将复选框的 "state" 存储在变量中并将其写入文件。并再次使用相同的设置复选框的状态???

我的意思是从文件读取/写入 QLabels 和 QLineEdits 的值很容易,但我对如何使用复选框进行操作感到困惑。

  1. 创建一个容器来存储每个复选框的指针。
  2. 创建另一个容器来存储每个复选框的 "state"。对于二进制复选框,如果您使用三态复选框(请参阅编辑),则可以使用 isChecked() to query whether or not a checkbox is checked. Otherwise you can call checkState() 到 return 状态作为枚举。
  3. 加载设置时,相应地为每个复选框分配状态。

  4. 您可以使用 QSettings 管理设置并将它们保存为 ini 文件。


编辑

只是提到有一个三态复选框的选项。来自 the document:

QCheckBox optionally provides a third state to indicate "no change". This is useful whenever you need to give the user the option of neither checking nor unchecking a checkbox. If you need this third state, enable it with setTristate(), and use checkState() to query the current toggle state.