Hydra 0.20
hydra.src/desktop/ShuffleView.h
00001 
00002 /*
00003  * Copyright (c) 2009 Aleksander B. Demko
00004  * This source code is distributed under the MIT license.
00005  * See the accompanying file LICENSE.MIT.txt for details.
00006  */
00007 
00008 #ifndef __INCLUDED_HYDRADESKTOP_SHUFFLEVIEW_H__
00009 #define __INCLUDED_HYDRADESKTOP_SHUFFLEVIEW_H__
00010 
00011 #include <QCheckBox>
00012 
00013 #include <desktop/View.h>
00014 
00015 namespace desktop
00016 {
00017   class ShuffleView;
00018 }
00019 
00020 class desktop::ShuffleView : public desktop::View
00021 {
00022     Q_OBJECT
00023 
00024   public:
00025     ShuffleView(FileList *_filelist);
00026 
00027   private slots:
00028     void onToggle(int state);
00029 
00030   private:
00031     void initGui(void);
00032 
00033   private:
00034     QCheckBox *dm_check;
00035 };
00036 
00037 #endif
00038 
 All Classes Namespaces Functions Variables