Hydra 0.20
|
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_INFOVIEW_H__ 00009 #define __INCLUDED_HYDRADESKTOP_INFOVIEW_H__ 00010 00011 #include <desktop/View.h> 00012 #include <desktop/ImageCache.h> 00013 00014 #include <QLabel> 00015 00016 namespace desktop 00017 { 00018 class InfoView; 00019 } 00020 00021 class desktop::InfoView : public desktop::View 00022 { 00023 Q_OBJECT 00024 public: 00025 InfoView(FileList *_filelist, ImageCache *_loader); 00026 00027 private slots: 00028 void onCurrentChanged(void); 00029 00030 private: 00031 ImageCache *dm_loader; // needed for dimen info 00032 00033 QLabel *dm_label; 00034 }; 00035 00036 #endif 00037