diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-06-30 16:07:26 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-06-30 16:07:26 +0000 |
| commit | f244cf37934e789e325057e8cf722676f9b576dd (patch) | |
| tree | 87af4ae9ee70e422a4c21aa613e685cc2dc95a47 /src/qmmpui/uihelper.h | |
| parent | 62ebfef44915db9eb78e74781f38dc01839b938c (diff) | |
| download | qmmp-f244cf37934e789e325057e8cf722676f9b576dd.tar.gz qmmp-f244cf37934e789e325057e8cf722676f9b576dd.tar.bz2 qmmp-f244cf37934e789e325057e8cf722676f9b576dd.zip | |
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2764 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/uihelper.h')
| -rw-r--r-- | src/qmmpui/uihelper.h | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/src/qmmpui/uihelper.h b/src/qmmpui/uihelper.h index a5b923838..70ef56712 100644 --- a/src/qmmpui/uihelper.h +++ b/src/qmmpui/uihelper.h @@ -87,17 +87,45 @@ public: * @param parent Parent widget */ QMenu *createMenu(MenuType type, const QString &title = QString(), QWidget *parent = 0); - + /*! + * Opens 'Add File' dialog + * @param parent Parent widget + * @param model Destination playlist model + */ void addFile(QWidget *parent = qApp->activeWindow(), PlayListModel *model = PlayListManager::instance()->selectedPlayList()); + /*! + * Opens 'Add Directory' dialog + * @param parent Parent widget + * @param model Destination playlist model + */ void addDirectory(QWidget *parent = qApp->activeWindow(), PlayListModel *model = PlayListManager::instance()->selectedPlayList()); + /*! + * Opens 'Load Playlist' dialog + * @param parent Parent widget + * @param model Destination playlist model + */ void loadPlayList(QWidget *parent = qApp->activeWindow(), PlayListModel *model = PlayListManager::instance()->selectedPlayList()); + /*! + * Opens 'Save Playlist' dialog + * @param parent Parent widget + * @param model Destination playlist model + */ void savePlayList(QWidget *parent = qApp->activeWindow(), PlayListModel *model = PlayListManager::instance()->selectedPlayList()); + /*! + * Opens 'Jump To Track' dialog + * @param parent Parent widget + * @param model Destination playlist model + */ void jumpToTrack(QWidget *parent = qApp->activeWindow(), PlayListModel *model = PlayListManager::instance()->selectedPlayList()); + /*! + * Shows about dialog + * @param parent Parent widget + */ void about(QWidget *parent = 0); /*! * Returns a pointer to the object's instance. |
