Calling the dialog checkbox from mainwindow
-
In the mainwindow.cpp file i am trying to call the dialog like this uu-> but it is not working. at the dialog.cpp, i have a checkbox that i would like to call from the mainwindow.cpp. is this possible? i would like to call the dialog checkBox like this... uu->checkBox->setFocus(); from the mainwindow. the error i am getting is error: ISO C++ forbids declaration of 'MainWindow' with no type
dialog.h
@#ifndef DIALOG_H
#define DIALOG_H#include "mainwindow.h"
#include <QDialog>class MainWindow;
namespace Ui {
class Dialog;
}class Dialog : public QDialog
{
Q_OBJECTpublic:
explicit Dialog(QWidget *parent = 0);
~Dialog();private:
Ui::Dialog *ui;
Ui::MainWindow *uu;
};#endif // DIALOG_H@
mainwindow.h
@#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include "dialog.h"
#include <QMainWindow>
class Dialog;
namespace Ui {
class MainWindow;
}class MainWindow : public QMainWindow
{
Q_OBJECTpublic:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();private:
Ui::MainWindow *ui;
Dialog *tt;
Ui::Dialog uu;
};#endif // MAINWINDOW_H@
dialog.cpp
@#include "dialog.h"
#include "ui_dialog.h"
#include "mainwindow.h"Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
ui->setupUi(this);}
Dialog::~Dialog()
{
delete ui;
}@mainwindow.cpp
@#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "dialog.h"MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
Dialog *uu = new Dialog(this);
this->show();
uu.setVisible(false);
}MainWindow::~MainWindow()
{
delete ui;
}@ -
it is working on my device. Remember i have called the dialog class/form from the mainwindow ,if thats wat you want
Dialog.cpp
@
Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
ui->setupUi(this);
setLayout(ui->verticalLayout);}
@MainWindow.cpp
@
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
Dialog *d= new Dialog();
d->show();
setCentralWidget(d);}
@alfah
-
I have a lot of widgets on the mainwindow. when the program loads, it loads the mainwindow and then the dialog. the dialog loaded is not in focus so i need to load the dialog from the mainwindow and then check if the dialog is loaded. if the dialog is not loaded then i need to write some code in the mainwindow.
i need to call the dialog checkbox from the mainwindow to determine if the dialog is displayed. if the dialog is not displayed then i can write my code in the dialog.cpp file.