Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. Showcase
  4. Workflow - Project organizer

Workflow - Project organizer

Scheduled Pinned Locked Moved Showcase
11 Posts 2 Posters 3.9k Views
  • 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.
  • T Offline
    T Offline
    TagLog
    wrote on 20 Sept 2017, 16:26 last edited by
    #1

    A project organizer made with Qt 5. It helps to keep track of projects where the order of task completion is important.

    Github link, the source code is attached to releases.
    There is also an in-app wiki, for further information read the project Readme on Github.

    K 1 Reply Last reply 20 Sept 2017, 16:34
    0
    • T TagLog
      20 Sept 2017, 16:26

      A project organizer made with Qt 5. It helps to keep track of projects where the order of task completion is important.

      Github link, the source code is attached to releases.
      There is also an in-app wiki, for further information read the project Readme on Github.

      K Offline
      K Offline
      kshegunov
      Moderators
      wrote on 20 Sept 2017, 16:34 last edited by kshegunov
      #2

      The two links - "Source code (zip)" and "Source code (tar.gz)" - contain only compiled binaries and resources for Windows. There's no source code for this project that I could find.

      Read and abide by the Qt Code of Conduct

      T 1 Reply Last reply 20 Sept 2017, 17:24
      0
      • K kshegunov
        20 Sept 2017, 16:34

        The two links - "Source code (zip)" and "Source code (tar.gz)" - contain only compiled binaries and resources for Windows. There's no source code for this project that I could find.

        T Offline
        T Offline
        TagLog
        wrote on 20 Sept 2017, 17:24 last edited by
        #3

        @kshegunov It is in the release description

        K 1 Reply Last reply 20 Sept 2017, 18:18
        0
        • T TagLog
          20 Sept 2017, 17:24

          @kshegunov It is in the release description

          K Offline
          K Offline
          kshegunov
          Moderators
          wrote on 20 Sept 2017, 18:18 last edited by kshegunov
          #4

          Indeed, it is. I find it odd that the links that say "source" are with binaries, though.

          Read and abide by the Qt Code of Conduct

          T 1 Reply Last reply 20 Sept 2017, 18:24
          0
          • K kshegunov
            20 Sept 2017, 18:18

            Indeed, it is. I find it odd that the links that say "source" are with binaries, though.

            T Offline
            T Offline
            TagLog
            wrote on 20 Sept 2017, 18:24 last edited by
            #5

            @kshegunov Yes I know, but unfortunately I can't change it :/

            K 1 Reply Last reply 20 Sept 2017, 18:25
            0
            • T TagLog
              20 Sept 2017, 18:24

              @kshegunov Yes I know, but unfortunately I can't change it :/

              K Offline
              K Offline
              kshegunov
              Moderators
              wrote on 20 Sept 2017, 18:25 last edited by
              #6

              Also, note that it doesn't compile cleanly with g++. Here's what I get:

              ../Workflow/mainwindow.cpp: In member function 'void MainWindow::enableCurrentButtons()':
              ../Workflow/mainwindow.cpp:163:67: error: call of overloaded 'abs(std::vector<Task*>::size_type)' is ambiguous
              

              Read and abide by the Qt Code of Conduct

              T 1 Reply Last reply 20 Sept 2017, 18:28
              0
              • K kshegunov
                20 Sept 2017, 18:25

                Also, note that it doesn't compile cleanly with g++. Here's what I get:

                ../Workflow/mainwindow.cpp: In member function 'void MainWindow::enableCurrentButtons()':
                ../Workflow/mainwindow.cpp:163:67: error: call of overloaded 'abs(std::vector<Task*>::size_type)' is ambiguous
                
                T Offline
                T Offline
                TagLog
                wrote on 20 Sept 2017, 18:28 last edited by
                #7

                @kshegunov Thanks for reporting the problem, I'll look at it

                K 1 Reply Last reply 20 Sept 2017, 18:32
                0
                • T TagLog
                  20 Sept 2017, 18:28

                  @kshegunov Thanks for reporting the problem, I'll look at it

                  K Offline
                  K Offline
                  kshegunov
                  Moderators
                  wrote on 20 Sept 2017, 18:32 last edited by
                  #8

                  Well, there are more:

                  ../Workflow/project.cpp:99:46: error: ambiguous overload for 'operator[]' (operand types are 'QString' and 'long int')
                                   tempByteArray[j] = fileString[fileIterator + j].digitValue();
                  

                  You should compile it with g++ to get it fully working. Also drop that int_fast32_t which is everywhere in the code, use a regular integer or one of Qt's predefined qint8/qint16/qint32/qint64.

                  Read and abide by the Qt Code of Conduct

                  1 Reply Last reply
                  0
                  • T Offline
                    T Offline
                    TagLog
                    wrote on 23 Sept 2017, 11:01 last edited by
                    #9

                    I compiled with g++ (using Qt) but I didn't get any of your compile error. Anyway I dropped int_fast32_t and changed
                    abs(...) in qAbs.

                    K 1 Reply Last reply 23 Sept 2017, 20:33
                    0
                    • T TagLog
                      23 Sept 2017, 11:01

                      I compiled with g++ (using Qt) but I didn't get any of your compile error. Anyway I dropped int_fast32_t and changed
                      abs(...) in qAbs.

                      K Offline
                      K Offline
                      kshegunov
                      Moderators
                      wrote on 23 Sept 2017, 20:33 last edited by
                      #10

                      Well, I told you what the compiler had reported. I'd tried with Qt 5.9.1 and gcc 7.2.0.

                      Read and abide by the Qt Code of Conduct

                      1 Reply Last reply
                      0
                      • T Offline
                        T Offline
                        TagLog
                        wrote on 24 Sept 2017, 11:44 last edited by
                        #11

                        Sure, and I thank you very much :) I compiled the code with Qt 5.9.1 and 5.10 and gcc from MinGW 5.3.0 32bit, now I'll try to download gcc 7.2.0. Maybe the one from MinGW is not up to date

                        1 Reply Last reply
                        0

                        1/11

                        20 Sept 2017, 16:26

                        • Login

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