Hydra 0.20
|
00001 00002 /* 00003 * Copyright (c) 2010 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_VCRVIEW_H__ 00009 #define __INCLUDED_HYDRADESKTOP_VCRVIEW_H__ 00010 00011 #include <desktop/View.h> 00012 00013 namespace desktop 00014 { 00015 class VCRView; 00016 } 00017 00018 class desktop::VCRView : public desktop::View 00019 { 00020 Q_OBJECT 00021 public: 00022 VCRView(MainWindow *mainwin, FileList *_source); 00023 00024 private slots: 00025 void onFirst(void); 00026 void onPrev(void); 00027 void onNext(void); 00028 void onLast(void); 00029 00030 private: 00031 void initGui(void); 00032 }; 00033 00034 #endif 00035