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. Creating QTableView dynamically / Creating new playlists
Qt 6.11 is out! See what's new in the release blog

Creating QTableView dynamically / Creating new playlists

Scheduled Pinned Locked Moved Solved General and Desktop
34 Posts 4 Posters 20.9k Views 3 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

    @hbatalha said in Creating QTableView dynamically / Creating new playlists:

    @SGaist said in Creating QTableView dynamically / Creating new playlists:

    As was already suggested, you should update the model.

    So I should have a list of models?

    Why ? You can replace the content of a model.

    @hbatalha said in Creating QTableView dynamically / Creating new playlists:

    @SGaist said in Creating QTableView dynamically / Creating new playlists:

    how are you currently handling your playlist ?

    I am still not sure how to respond? Should I post the code from PlaylistModel.h?

    That can be a good start.

    H Offline
    H Offline
    hbatalha
    wrote on last edited by
    #10

    @SGaist said in Creating QTableView dynamically / Creating new playlists:

    That can be a good start.

    #ifndef PLAYLISTMODEL_H
    #define PLAYLISTMODEL_H
    
    #include <QAbstractTableModel>
    #include <qmimedata.h>
    #include <QStringList>
    #include "mltcontroller.h"
    #include "MltPlaylist.h"
    
    #define kDetailedMode "detailed"
    #define kIconsMode "icons"
    #define kTiledMode "tiled"
    
    class PlaylistModel : public QAbstractTableModel
    {
        Q_OBJECT
    public:
        enum ViewMode {
            Invalid,
            Detailed,
            Tiled,
            Icons,
        };
    
        enum Columns {
            COLUMN_INDEX = 0,
            COLUMN_THUMBNAIL,
            COLUMN_RESOURCE,
            COLUMN_IN,
            COLUMN_DURATION,
            COLUMN_START,
            COLUMN_DATE,
            COLUMN_COUNT
        };
    
        enum Fields {
            FIELD_INDEX = Qt::UserRole,
            FIELD_THUMBNAIL,
            FIELD_RESOURCE,
            FIELD_IN,
            FIELD_DURATION,
            FIELD_START,
            FIELD_DATE,
        };
    
        static const int THUMBNAIL_WIDTH = 80;
        static const int THUMBNAIL_HEIGHT = 45;
    
        explicit PlaylistModel(QObject *parent = 0);
        ~PlaylistModel();
        int rowCount(const QModelIndex& parent = QModelIndex()) const;
        int columnCount(const QModelIndex& parent = QModelIndex()) const;
        QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
        QVariant headerData(int section, Qt::Orientation orientation, int role) const;
        Qt::DropActions supportedDropActions() const;
        bool insertRows(int row, int count, const QModelIndex & parent = QModelIndex());
        bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
        bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild);
        void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
        Qt::ItemFlags flags(const QModelIndex &index) const;
        QStringList mimeTypes() const;
        QMimeData *mimeData(const QModelIndexList &indexes) const;
        bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
        QModelIndex incrementIndex(const QModelIndex& index) const;
        QModelIndex decrementIndex(const QModelIndex& index) const;
        QModelIndex createIndex(int row, int column) const;
        void createIfNeeded();
        void showThumbnail(int row);
        void refreshThumbnails();
        Mlt::Playlist* playlist() { return m_playlist; }
        void setPlaylist(Mlt::Playlist& playlist);
        void setInOut(int row, int in, int out);
    
        ViewMode viewMode() const;
        void setViewMode(ViewMode mode);
    
    signals:
        void created();
        void cleared();
        void closed();
        void modified();
        void loaded();
        void dropped(const QMimeData *data, int row);
        void moveClip(int from, int to);
        void inChanged(int in);
        void outChanged(int out);
    
    public slots:
        void clear();
        void load();
        void append(Mlt::Producer&, bool emitModified = true);
        void insert(Mlt::Producer&, int row);
        void remove(int row);
        void update(int row, Mlt::Producer& producer, bool copyFilters = false);
        void updateThumbnails(int row);
        void appendBlank(int frames);
        void insertBlank(int frames, int row);
        void close();
        void move(int from, int to);
    
    private:
        Mlt::Playlist* m_playlist;
        int m_dropRow;
        ViewMode m_mode;
        QList<int> m_rowsRemoved;
    };
    
    #endif // PLAYLISTMODEL_H
    
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #11

      From the looks of it, you would only need to call setPlayList that should trigger a reset of your model and you should be good to go as this will trigger the update of your UI.

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

      H 1 Reply Last reply
      0
      • SGaistS SGaist

        From the looks of it, you would only need to call setPlayList that should trigger a reset of your model and you should be good to go as this will trigger the update of your UI.

        H Offline
        H Offline
        hbatalha
        wrote on last edited by
        #12

        @SGaist said in Creating QTableView dynamically / Creating new playlists:

        you would only need to call setPlayList that should trigger a reset of your model and you should be good to go

        How will the files added in a playlist be saved when I switched back to a playlist?

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

          Since you will have several playlist, you'll likely have them stored using QList or QVector.

          There's no deletion happening, you should "exchange" the current playlist with the one selected.

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

          H 1 Reply Last reply
          0
          • SGaistS SGaist

            Since you will have several playlist, you'll likely have them stored using QList or QVector.

            There's no deletion happening, you should "exchange" the current playlist with the one selected.

            H Offline
            H Offline
            hbatalha
            wrote on last edited by
            #14

            @SGaist said in Creating QTableView dynamically / Creating new playlists:

            Since you will have several playlist

            So I will have a QVector<Mlt::Playlist*>?

            JonBJ 1 Reply Last reply
            0
            • H hbatalha

              @SGaist said in Creating QTableView dynamically / Creating new playlists:

              Since you will have several playlist

              So I will have a QVector<Mlt::Playlist*>?

              JonBJ Offline
              JonBJ Offline
              JonB
              wrote on last edited by JonB
              #15

              @hbatalha
              Yes, QVector<Mlt::Playlist*> or QList<Mlt::Playlist*> would be fine.

              If you are feeling adventurous, you might even opt for a QMap<QString, Mlt::Playlist*>. If your playlists are simply distinguished by their name in the droplist, saves you having to look it up!

              H 1 Reply Last reply
              0
              • JonBJ JonB

                @hbatalha
                Yes, QVector<Mlt::Playlist*> or QList<Mlt::Playlist*> would be fine.

                If you are feeling adventurous, you might even opt for a QMap<QString, Mlt::Playlist*>. If your playlists are simply distinguished by their name in the droplist, saves you having to look it up!

                H Offline
                H Offline
                hbatalha
                wrote on last edited by hbatalha
                #16

                @JonB

                It doesn't work, when I switched a playlist it reload with a empty playlist.
                The code:

                void PlaylistDock::on_addButton_clicked()
                {
                    Mlt::Playlist* playlist = new Mlt::Playlist;
                
                    m_playlists.append(playlist);
                
                    ui->comboBox->addItem("Playlist " + QString::number(i++));
                }
                
                void PlaylistDock::on_comboBox_currentIndexChanged(int)
                { 
                    m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                }
                
                H 1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #17

                  @hbatalha said in Creating QTableView dynamically / Creating new playlists:

                  void PlaylistDock::on_addButton_clicked()
                  {
                  Mlt::Playlist* playlist = new Mlt::Playlist;

                  m_playlists.append(playlist);
                  
                  ui->comboBox->addItem("Playlist " + QString::number(i++));
                  

                  }

                  You are creating a new empty playlist so that's normal that your model is empty after you set.

                  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
                  • H hbatalha

                    @JonB

                    It doesn't work, when I switched a playlist it reload with a empty playlist.
                    The code:

                    void PlaylistDock::on_addButton_clicked()
                    {
                        Mlt::Playlist* playlist = new Mlt::Playlist;
                    
                        m_playlists.append(playlist);
                    
                        ui->comboBox->addItem("Playlist " + QString::number(i++));
                    }
                    
                    void PlaylistDock::on_comboBox_currentIndexChanged(int)
                    { 
                        m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                    }
                    
                    H Offline
                    H Offline
                    hbatalha
                    wrote on last edited by
                    #18

                    @hbatalha said in Creating QTableView dynamically / Creating new playlists:

                    void PlaylistDock::on_comboBox_currentIndexChanged(int)
                    {
                    m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                    }

                    @SGaist

                    You are creating a new empty playlist

                    I mean when I switch playlist.

                    JonBJ 1 Reply Last reply
                    0
                    • H hbatalha

                      @hbatalha said in Creating QTableView dynamically / Creating new playlists:

                      void PlaylistDock::on_comboBox_currentIndexChanged(int)
                      {
                      m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                      }

                      @SGaist

                      You are creating a new empty playlist

                      I mean when I switch playlist.

                      JonBJ Offline
                      JonBJ Offline
                      JonB
                      wrote on last edited by JonB
                      #19

                      @hbatalha
                      As I wrote earlier, you need to use QAbstractItemModel::beginResetModel() when you change models. See e.g. https://stackoverflow.com/questions/14756645/how-to-reset-model-in-qt.

                      H 1 Reply Last reply
                      0
                      • JonBJ JonB

                        @hbatalha
                        As I wrote earlier, you need to use QAbstractItemModel::beginResetModel() when you change models. See e.g. https://stackoverflow.com/questions/14756645/how-to-reset-model-in-qt.

                        H Offline
                        H Offline
                        hbatalha
                        wrote on last edited by
                        #20

                        @JonB said in Creating QTableView dynamically / Creating new playlists:

                        @hbatalha
                        As I wrote earlier, you need to use QAbstractItemModel::beginResetModel() when you change models. See e.g. https://stackoverflow.com/questions/14756645/how-to-reset-model-in-qt.

                        The playlist model inherits from QAbstractTableModel as shown in the code above

                        JonBJ 1 Reply Last reply
                        0
                        • H hbatalha

                          @JonB said in Creating QTableView dynamically / Creating new playlists:

                          @hbatalha
                          As I wrote earlier, you need to use QAbstractItemModel::beginResetModel() when you change models. See e.g. https://stackoverflow.com/questions/14756645/how-to-reset-model-in-qt.

                          The playlist model inherits from QAbstractTableModel as shown in the code above

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #21

                          @hbatalha
                          Yes, and what does that inherit from...?

                          H 1 Reply Last reply
                          0
                          • JonBJ JonB

                            @hbatalha
                            Yes, and what does that inherit from...?

                            H Offline
                            H Offline
                            hbatalha
                            wrote on last edited by
                            #22

                            @JonB
                            IbeginResetModel is protected. https://doc.qt.io/qt-5/qabstractitemmodel.html#beginResetModel

                            JonBJ 1 Reply Last reply
                            0
                            • H hbatalha

                              @JonB
                              IbeginResetModel is protected. https://doc.qt.io/qt-5/qabstractitemmodel.html#beginResetModel

                              JonBJ Offline
                              JonBJ Offline
                              JonB
                              wrote on last edited by JonB
                              #23

                              @hbatalha said in Creating QTableView dynamically / Creating new playlists:

                              beginResetModel is protected. https://doc.qt.io/qt-5/qabstractitemmodel.html#beginResetModel

                              You wrote earlier

                              The playlist model inherits from QAbstractTableModel as shown in the code above

                              So that means you can call protected methods, doesn't it?

                              If you have some aversion to resetting the model, you can probably delete all existing rows and insert all new rows if you really wish.

                              H 1 Reply Last reply
                              0
                              • JonBJ JonB

                                @hbatalha said in Creating QTableView dynamically / Creating new playlists:

                                beginResetModel is protected. https://doc.qt.io/qt-5/qabstractitemmodel.html#beginResetModel

                                You wrote earlier

                                The playlist model inherits from QAbstractTableModel as shown in the code above

                                So that means you can call protected methods, doesn't it?

                                If you have some aversion to resetting the model, you can probably delete all existing rows and insert all new rows if you really wish.

                                H Offline
                                H Offline
                                hbatalha
                                wrote on last edited by
                                #24

                                @JonB said in Creating QTableView dynamically / Creating new playlists:

                                So that means you can call protected methods, doesn't it?

                                That is what I expected, I am finding strange that the compiler is complaining that it is protected.

                                JonBJ 1 Reply Last reply
                                0
                                • H hbatalha

                                  @JonB said in Creating QTableView dynamically / Creating new playlists:

                                  So that means you can call protected methods, doesn't it?

                                  That is what I expected, I am finding strange that the compiler is complaining that it is protected.

                                  JonBJ Offline
                                  JonBJ Offline
                                  JonB
                                  wrote on last edited by
                                  #25

                                  @hbatalha
                                  If you are trying to go

                                  m_model.beginResetModel();
                                  m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                                  m_model.endResetModel();
                                  

                                  you cannot do that on protected methods. You must call them in PlaylistModel::setPlaylist().

                                  H 1 Reply Last reply
                                  0
                                  • JonBJ JonB

                                    @hbatalha
                                    If you are trying to go

                                    m_model.beginResetModel();
                                    m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex()));
                                    m_model.endResetModel();
                                    

                                    you cannot do that on protected methods. You must call them in PlaylistModel::setPlaylist().

                                    H Offline
                                    H Offline
                                    hbatalha
                                    wrote on last edited by
                                    #26

                                    @JonB said in Creating QTableView dynamically / Creating new playlists:

                                    you cannot do that on protected methods. You must call them in PlaylistModel::setPlaylist().

                                    yeah I fixed that.

                                    But still, the playlist will be empty when I switch. I must be missing something.

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

                                      Where/when are you putting stuff in that playlist ?
                                      You only show that you created it but at no point you seem to put anything in it.

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

                                      H 1 Reply Last reply
                                      1
                                      • SGaistS SGaist

                                        Where/when are you putting stuff in that playlist ?
                                        You only show that you created it but at no point you seem to put anything in it.

                                        H Offline
                                        H Offline
                                        hbatalha
                                        wrote on last edited by
                                        #28

                                        @SGaist There is a drop event where the files added to the playlist will be at the same time added to the playlist vector current element (m_playlists.at(ui->comboBox->currentIndex())).

                                        But I since discovered that the Mlt::Playlist doesn't allow copying. When I set a playlist (m_model.setPlaylist(*m_playlists.at(ui->comboBox->currentIndex())); ) the m_model.playlist() takes omership of all the elements in the playlist and when I switch to another playlist they get deleted. Here is the Mlt::Playlist interface:

                                        class MLTPP_DECLSPEC Playlist : public Producer
                                        	{
                                        		private:
                                        			mlt_playlist instance;
                                        		public:
                                        			Playlist( );
                                        			Playlist( Profile& profile );
                                        			Playlist( Service &playlist );
                                        			Playlist( Playlist &playlist );
                                        			Playlist( mlt_playlist playlist );
                                        			virtual ~Playlist( );
                                        			virtual mlt_playlist get_playlist( );
                                        			mlt_producer get_producer( );
                                        			int count( );
                                        			int clear( );
                                        			int append( Producer &producer, int in = -1, int out = -1 );
                                        			int blank( int out );
                                        			int blank( const char *length );
                                        			int clip( mlt_whence whence, int index );
                                        			int current_clip( );
                                        			Producer *current( );
                                        			ClipInfo *clip_info( int index, ClipInfo *info = NULL );
                                        			static void delete_clip_info( ClipInfo *info );
                                        			int insert( Producer &producer, int where, int in = -1, int out = -1 );
                                        			int remove( int where );
                                        			int move( int from, int to );
                                        			int reorder( const int *indices );
                                        			int resize_clip( int clip, int in, int out );
                                        			int split( int clip, int position );
                                        			int split_at( int position, bool left = true );
                                        			int join( int clip, int count = 1, int merge = 1 );
                                        			int mix( int clip, int length, Transition *transition = NULL );
                                        			int mix_in( int clip, int length );
                                        			int mix_out( int clip, int length );
                                        			int mix_add( int clip, Transition *transition );
                                        			int repeat( int clip, int count );
                                        			Producer *get_clip( int clip );
                                        			Producer *get_clip_at( int position );
                                        			int get_clip_index_at( int position );
                                        			bool is_mix( int clip );
                                        			bool is_blank( int clip );
                                        			bool is_blank_at( int position );
                                        			void consolidate_blanks( int keep_length = 0 );
                                        			Producer *replace_with_blank( int clip );
                                        			void insert_blank( int clip, int out );
                                        			void pad_blanks( int position, int length, int find = 0 );
                                        			int insert_at( int position, Producer *producer, int mode = 0 );
                                        			int insert_at( int position, Producer &producer, int mode = 0 );
                                        			int clip_start( int clip );
                                        			int clip_length( int clip );
                                        			int blanks_from( int clip, int bounded = 0 );
                                        			int remove_region( int position, int length );
                                        	};
                                        

                                        And here is the PlaylistModel::setPlaylist:

                                        void PlaylistModel::setPlaylist(Mlt::Playlist& playlist)
                                        {
                                            if (playlist.is_valid()) {
                                                if (m_playlist) {
                                                    if (rowCount()) {
                                                        beginRemoveRows(QModelIndex(), 0, rowCount() - 1);
                                                        m_playlist->clear();
                                                        endRemoveRows();
                                                    }
                                                    delete m_playlist;
                                                }
                                                m_playlist = new Mlt::Playlist(playlist);
                                                if (!m_playlist->is_valid()) {
                                                    delete m_playlist;
                                                    m_playlist = 0;
                                                    return;
                                                }
                                                if (m_playlist->count() > 0) {
                                                    beginInsertRows(QModelIndex(), 0, m_playlist->count() - 1);
                                                    endInsertRows();
                                                }
                                                // do not let opening a clip change the profile!
                                                MLT.profile().set_explicit(true);
                                                if (Settings.playerGPU() && Settings.playlistThumbnails() != "hidden")
                                                    refreshThumbnails();
                                                emit loaded();
                                            }
                                        }
                                        

                                        I tried creating vector that hold the actual filenames and then every time I switch to playlist I would clear the m_model.playlist and add the new files but that process is slow, specially when you have multiple files, so that was not not a option.

                                        I can't think of any other way now, I looking into using a vector of models.

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

                                          Why are you trying to pass reference around rather than pointers ?

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

                                          H 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