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_QUERYVIEW_H__ 00009 #define __INCLUDED_HYDRADESKTOP_QUERYVIEW_H__ 00010 00011 #include <QLineEdit> 00012 00013 #include <desktop/View.h> 00014 00015 namespace desktop 00016 { 00017 class QueryView; 00018 } 00019 00020 class desktop::QueryView : public desktop::View 00021 { 00022 Q_OBJECT 00023 00024 public: 00025 QueryView(FileList *_filelist); 00026 00027 private slots: 00028 void onClear(void); 00029 void onEntry(void); 00030 00031 private: 00032 void initGui(void); 00033 00034 private: 00035 QLineEdit *dm_query; 00036 }; 00037 00038 #endif 00039