svn path=/trunk/kdenlive/; revision=5168
// if entry does not exist yet (was not found), well, create it then
if (!exists) {
// if entry does not exist yet (was not found), well, create it then
if (!exists) {
- KBookmark newBookmark = root.addBookmark(i18n("Project Folder"), documentLocation, "folder-favorites");
+ bookmark = root.addBookmark(i18n("Project Folder"), documentLocation, "folder-favorites");
// Make this user selectable ?
// Make this user selectable ?
- newBookmark.setMetaDataItem("OnlyInApp", kdenliveName);
+ bookmark.setMetaDataItem("OnlyInApp", kdenliveName);
bookmarkManager->emitChanged(root);
}
}
bookmarkManager->emitChanged(root);
}
}
void deleteTrack(int ix);
void setTrackType(int ix, TrackInfo type);
const QList <TrackInfo> tracksList() const;
void deleteTrack(int ix);
void setTrackType(int ix, TrackInfo type);
const QList <TrackInfo> tracksList() const;
+
+ /** @brief Gets the number of audio and video tracks and returns them as a QPoint with x = video, y = audio. */
QPoint getTracksCount() const;
QPoint getTracksCount() const;
void switchTrackVideo(int ix, bool hide);
void switchTrackAudio(int ix, bool hide);
void switchTrackLock(int ix, bool lock);
void switchTrackVideo(int ix, bool hide);
void switchTrackAudio(int ix, bool hide);
void switchTrackLock(int ix, bool lock);