Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. setupUi is not a member of my QT application

setupUi is not a member of my QT application

Scheduled Pinned Locked Moved Unsolved General and Desktop
41 Posts 3 Posters 6.5k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SGaistS SGaist

    Depending on what that interface contains, it could be simpler to just rebuilt it from scratch and be done with it.

    L Offline
    L Offline
    lfreeman6490
    wrote on last edited by
    #32

    @SGaist Yeah I think I might just do that. I've been at this all day. Thanks for trying to help. I appreciate it @JoeCFD

    1 Reply Last reply
    0
    • JoeCFDJ Offline
      JoeCFDJ Offline
      JoeCFD
      wrote on last edited by JoeCFD
      #33

      ======================TestWidget.h============================
      #include <QWidget>

      #include "ui_TestWidget.h"

      class TestWidget : public QWidget
      {
      Q_OBJECT

      public:
      explicit TestWidget(QWidget *parent = 0);
      ~TestWidget() {}

      private:
      Ui::TestWidget ui;
      };

      1 Reply Last reply
      0
      • JoeCFDJ Offline
        JoeCFDJ Offline
        JoeCFD
        wrote on last edited by JoeCFD
        #34

        ===================TestWidget.cpp=============================
        #include "TestWidget.h"

        TestWidget::TestWidget( QWidget * parent )
        :QWidget( parent )
        {
        ui.setupUi(this);
        //resize( 500, 500 );
        }

        1 Reply Last reply
        0
        • JoeCFDJ Offline
          JoeCFDJ Offline
          JoeCFD
          wrote on last edited by
          #35

          ===========main.cpp===========

          #include <QApplication>

          #include "TestWidget.h"

          int main(int argc, char *argv[])
          {
          QApplication app(argc, argv);

          TestWidget widget;
          widget.show();
          
          return app.exec();
          

          }

          1 Reply Last reply
          0
          • JoeCFDJ Offline
            JoeCFDJ Offline
            JoeCFD
            wrote on last edited by
            #36

            ==================TestWidget.ui file

            <?xml version="1.0" encoding="UTF-8"?>
            <ui version="4.0">
             <class>TestWidget</class>
             <widget class="QWidget" name="TestWidget">
              <property name="geometry">
               <rect>
                <x>0</x>
                <y>0</y>
                <width>1037</width>
                <height>664</height>
               </rect>
              </property>
              <property name="windowTitle">
               <string>Form</string>
              </property>
              <layout class="QVBoxLayout" name="verticalLayout_2">
               <item>
                <widget class="QGroupBox" name="groupBox">
                 <property name="title">
                  <string>GroupBox</string>
                 </property>
                 <layout class="QHBoxLayout" name="horizontalLayout">
                  <item>
                   <layout class="QVBoxLayout" name="verticalLayout">
                    <item>
                     <widget class="QScrollArea" name="scrollArea">
                      <property name="widgetResizable">
                       <bool>true</bool>
                      </property>
                      <widget class="QWidget" name="scrollAreaWidgetContents">
                       <property name="geometry">
                        <rect>
                         <x>0</x>
                         <y>0</y>
                         <width>1175</width>
                         <height>584</height>
                        </rect>
                       </property>
                       <layout class="QVBoxLayout" name="verticalLayout_3">
                        <item>
                         <widget class="QLabel" name="label">
                          <property name="text">
                           <string>Testing</string>
                          </property>
                         </widget>
                        </item>
                       </layout>
                      </widget>
                     </widget>
                    </item>
                   </layout>
                  </item>
                 </layout>
                </widget>
               </item>
              </layout>
             </widget>
             <resources/>
             <connections/>
            </ui>
            
            1 Reply Last reply
            0
            • JoeCFDJ Offline
              JoeCFDJ Offline
              JoeCFD
              wrote on last edited by JoeCFD
              #37

              You can see where I use TestWidget in .cpp, .h and .ui. They have to be the same.

              1 Reply Last reply
              0
              • JoeCFDJ Offline
                JoeCFDJ Offline
                JoeCFD
                wrote on last edited by
                #38

                ============================ui_TestWidget.h <=== this file is generated and you do not change it.

                #ifndef UI_TESTWIDGET_H
                #define UI_TESTWIDGET_H

                #include <QtCore/QVariant>
                #include <QtWidgets/QApplication>
                #include <QtWidgets/QGroupBox>
                #include <QtWidgets/QHBoxLayout>
                #include <QtWidgets/QLabel>
                #include <QtWidgets/QScrollArea>
                #include <QtWidgets/QVBoxLayout>
                #include <QtWidgets/QWidget>

                QT_BEGIN_NAMESPACE

                class Ui_TestWidget
                {
                public:
                QVBoxLayout *verticalLayout_2;
                QGroupBox *groupBox;
                QHBoxLayout *horizontalLayout;
                QVBoxLayout *verticalLayout;
                QScrollArea *scrollArea;
                QWidget *scrollAreaWidgetContents;
                QVBoxLayout *verticalLayout_3;
                QLabel *label;

                void setupUi(QWidget *TestWidget)
                {
                    if (TestWidget->objectName().isEmpty())
                        TestWidget->setObjectName(QString::fromUtf8("TestWidget"));
                    TestWidget->resize(1037, 664);
                    verticalLayout_2 = new QVBoxLayout(TestWidget);
                    verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
                    groupBox = new QGroupBox(TestWidget);
                    groupBox->setObjectName(QString::fromUtf8("groupBox"));
                    horizontalLayout = new QHBoxLayout(groupBox);
                    horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
                    verticalLayout = new QVBoxLayout();
                    verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
                    scrollArea = new QScrollArea(groupBox);
                    scrollArea->setObjectName(QString::fromUtf8("scrollArea"));
                    scrollArea->setWidgetResizable(true);
                    scrollAreaWidgetContents = new QWidget();
                    scrollAreaWidgetContents->setObjectName(QString::fromUtf8("scrollAreaWidgetContents"));
                    scrollAreaWidgetContents->setGeometry(QRect(0, 0, 1175, 584));
                    verticalLayout_3 = new QVBoxLayout(scrollAreaWidgetContents);
                    verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
                    label = new QLabel(scrollAreaWidgetContents);
                    label->setObjectName(QString::fromUtf8("label"));
                
                    verticalLayout_3->addWidget(label);
                
                    scrollArea->setWidget(scrollAreaWidgetContents);
                
                    verticalLayout->addWidget(scrollArea);
                
                
                    horizontalLayout->addLayout(verticalLayout);
                
                
                    verticalLayout_2->addWidget(groupBox);
                
                
                    retranslateUi(TestWidget);
                
                    QMetaObject::connectSlotsByName(TestWidget);
                } // setupUi
                
                void retranslateUi(QWidget *TestWidget)
                {
                    TestWidget->setWindowTitle(QCoreApplication::translate("TestWidget", "Form", nullptr));
                    groupBox->setTitle(QCoreApplication::translate("TestWidget", "GroupBox", nullptr));
                    label->setText(QCoreApplication::translate("TestWidget", "Testing", nullptr));
                } // retranslateUi
                

                };

                namespace Ui {
                class TestWidget: public Ui_TestWidget {};
                } // namespace Ui

                QT_END_NAMESPACE

                #endif // UI_TESTWIDGET_

                L 1 Reply Last reply
                0
                • JoeCFDJ JoeCFD

                  ============================ui_TestWidget.h <=== this file is generated and you do not change it.

                  #ifndef UI_TESTWIDGET_H
                  #define UI_TESTWIDGET_H

                  #include <QtCore/QVariant>
                  #include <QtWidgets/QApplication>
                  #include <QtWidgets/QGroupBox>
                  #include <QtWidgets/QHBoxLayout>
                  #include <QtWidgets/QLabel>
                  #include <QtWidgets/QScrollArea>
                  #include <QtWidgets/QVBoxLayout>
                  #include <QtWidgets/QWidget>

                  QT_BEGIN_NAMESPACE

                  class Ui_TestWidget
                  {
                  public:
                  QVBoxLayout *verticalLayout_2;
                  QGroupBox *groupBox;
                  QHBoxLayout *horizontalLayout;
                  QVBoxLayout *verticalLayout;
                  QScrollArea *scrollArea;
                  QWidget *scrollAreaWidgetContents;
                  QVBoxLayout *verticalLayout_3;
                  QLabel *label;

                  void setupUi(QWidget *TestWidget)
                  {
                      if (TestWidget->objectName().isEmpty())
                          TestWidget->setObjectName(QString::fromUtf8("TestWidget"));
                      TestWidget->resize(1037, 664);
                      verticalLayout_2 = new QVBoxLayout(TestWidget);
                      verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
                      groupBox = new QGroupBox(TestWidget);
                      groupBox->setObjectName(QString::fromUtf8("groupBox"));
                      horizontalLayout = new QHBoxLayout(groupBox);
                      horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
                      verticalLayout = new QVBoxLayout();
                      verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
                      scrollArea = new QScrollArea(groupBox);
                      scrollArea->setObjectName(QString::fromUtf8("scrollArea"));
                      scrollArea->setWidgetResizable(true);
                      scrollAreaWidgetContents = new QWidget();
                      scrollAreaWidgetContents->setObjectName(QString::fromUtf8("scrollAreaWidgetContents"));
                      scrollAreaWidgetContents->setGeometry(QRect(0, 0, 1175, 584));
                      verticalLayout_3 = new QVBoxLayout(scrollAreaWidgetContents);
                      verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
                      label = new QLabel(scrollAreaWidgetContents);
                      label->setObjectName(QString::fromUtf8("label"));
                  
                      verticalLayout_3->addWidget(label);
                  
                      scrollArea->setWidget(scrollAreaWidgetContents);
                  
                      verticalLayout->addWidget(scrollArea);
                  
                  
                      horizontalLayout->addLayout(verticalLayout);
                  
                  
                      verticalLayout_2->addWidget(groupBox);
                  
                  
                      retranslateUi(TestWidget);
                  
                      QMetaObject::connectSlotsByName(TestWidget);
                  } // setupUi
                  
                  void retranslateUi(QWidget *TestWidget)
                  {
                      TestWidget->setWindowTitle(QCoreApplication::translate("TestWidget", "Form", nullptr));
                      groupBox->setTitle(QCoreApplication::translate("TestWidget", "GroupBox", nullptr));
                      label->setText(QCoreApplication::translate("TestWidget", "Testing", nullptr));
                  } // retranslateUi
                  

                  };

                  namespace Ui {
                  class TestWidget: public Ui_TestWidget {};
                  } // namespace Ui

                  QT_END_NAMESPACE

                  #endif // UI_TESTWIDGET_

                  L Offline
                  L Offline
                  lfreeman6490
                  wrote on last edited by
                  #39

                  @JoeCFD I have it all the same except for one line in my pathloss.ui file. It has my widget class as a "QFrame" and it has to be changed in the design mode it says

                  <?xml version="1.0" encoding="UTF-8"?>
                  <ui version="4.0">
                   <author>free</author>
                   <class>pathloss</class>
                   <widget class="QFrame" name="pathloss">
                    <property name="geometry">
                  
                  1 Reply Last reply
                  0
                  • JoeCFDJ Offline
                    JoeCFDJ Offline
                    JoeCFD
                    wrote on last edited by
                    #40

                    use upper case
                    <class>pathloss</class> ===> <class>Pathloss</class>
                    <widget class="QFrame" name="Pathloss"> <====not critical

                    L 1 Reply Last reply
                    0
                    • JoeCFDJ JoeCFD

                      use upper case
                      <class>pathloss</class> ===> <class>Pathloss</class>
                      <widget class="QFrame" name="Pathloss"> <====not critical

                      L Offline
                      L Offline
                      lfreeman6490
                      wrote on last edited by
                      #41

                      @JoeCFD I was able to edit the xml and change my widgets section to be a QWidget and I'm dealing with some other errors from here. Thanks

                      1 Reply Last reply
                      0

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved