Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. get the last QWidget actived
Forum Updated to NodeBB v4.3 + New Features

get the last QWidget actived

Scheduled Pinned Locked Moved Solved Qt Creator and other tools
21 Posts 4 Posters 4.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 Offline
    SGaistS Offline
    SGaist
    Lifetime Qt Champion
    wrote on last edited by
    #11

    Hi,

    Can you give more details about that chain of casts ?

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    B 1 Reply Last reply
    0
    • SGaistS SGaist

      Hi,

      Can you give more details about that chain of casts ?

      B Offline
      B Offline
      bozo6919
      wrote on last edited by
      #12

      Hi,

      My program has two projects :

      • one is a DLL.
      • the other an EXE.
        In my EXE, I have to apply a qobject_cast on a class who is contained in my DLL.
        But if I put in this class (in the DLL) the macro Q_OBJECT, my IDE (visual studio 2017) cannot compile the project with an error of linking.

      Sorry for my English ^^'

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #13

        Is your .dll project also managed with Qt ?

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        B 1 Reply Last reply
        0
        • SGaistS SGaist

          Is your .dll project also managed with Qt ?

          B Offline
          B Offline
          bozo6919
          wrote on last edited by
          #14

          Yes, theses projects was made with Qt

          Sorry for my English ^^'

          1 Reply Last reply
          0
          • SGaistS Offline
            SGaistS Offline
            SGaist
            Lifetime Qt Champion
            wrote on last edited by
            #15

            Then there should be no problem with qobject_cast.

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            1 Reply Last reply
            0
            • B Offline
              B Offline
              bozo6919
              wrote on last edited by
              #16

              Yes, but I have problems, and I don't know yet how to resolve them

              Sorry for my English ^^'

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #17

                What exact problems ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                0
                • B Offline
                  B Offline
                  bozo6919
                  wrote on last edited by
                  #18

                  Hi, sorry for my late

                  This problem for example :

                  #pragma once
                  
                  #include <QtCore/qobject.h>
                  
                  class __declspec(dllexport) LayoutManager : public QObject
                  {
                  	Q_OBJECT
                  
                  public:
                  	template <class T>T findParent(QObject *child)
                  	{
                  		T r = nullptr;
                  
                  		if (!child)
                  			return nullptr;
                  		QObject *parent = child->parent();
                  
                  		while (parent) {
                  			r = qobject_cast<T>(parent);
                  			if (r)
                  				return r;
                  			parent = parent->parent();
                  		}
                  		return r;
                  	}
                  };
                  

                  And I have this error message :
                  Error : C2338 : qobject_cast requires the type to have a Q_OBJECT macro

                  But the macro is here. So instead of qobject_cast, I have to use dynamic_cast

                  Sorry for my English ^^'

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #19

                    What type are you looking for ?

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • B Offline
                      B Offline
                      bozo6919
                      wrote on last edited by
                      #20

                      This is a type who doesn't exist in this project. I use this function in another project

                      Sorry for my English ^^'

                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #21

                        And is that type a QObject based class with Q_OBJECT in it's declaration ?

                        @bozo6919 said in get the last QWidget actived:

                        class __declspec(dllexport) LayoutManager : public QObject

                        On a side note, Qt provides macros to properly handle the export/import stuff. See here.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        1

                        • Login

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