first re-commit.
This commit is contained in:
47
swsongscontrol.h
Normal file
47
swsongscontrol.h
Normal file
@@ -0,0 +1,47 @@
|
||||
/***************************************************************************
|
||||
|
||||
source::worx raDIYo
|
||||
Copyright © 2020-2022 c.holzheuer
|
||||
chris@sourceworx.org
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#ifndef SWSONGSCONTROL_H
|
||||
#define SWSONGSCONTROL_H
|
||||
|
||||
|
||||
#include <swlistcontrol.h>
|
||||
|
||||
|
||||
/**
|
||||
* @brief Control, das die Playlist-Seite zur Songauswahl darstellt.
|
||||
*/
|
||||
|
||||
class SWSongsControl : public SWListControl
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
||||
explicit SWSongsControl( QWidget* parent , QSettings* settings );
|
||||
virtual ~SWSongsControl() = default;
|
||||
|
||||
public slots:
|
||||
|
||||
virtual void onShow() override;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
void loadDir( const QString& path );
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif // SWSONGSCONTROL_H
|
Reference in New Issue
Block a user