PCManFM-Qt
 All Classes
view.h
1 /*
2 
3  Copyright (C) 2013 Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 
21 #ifndef PCMANFM_FOLDERVIEW_H
22 #define PCMANFM_FOLDERVIEW_H
23 
24 #include "folderview.h"
25 
26 namespace Fm {
27  class FileMenu;
28  class FolderMenu;
29 }
30 
31 namespace PCManFM {
32 
33 class Settings;
34 
35 class View : public Fm::FolderView {
36 Q_OBJECT
37 public:
38 
39  enum OpenDirTargetType {
40  OpenInCurrentView,
41  OpenInNewWindow,
42  OpenInNewTab
43  };
44 
45  explicit View(Fm::FolderView::ViewMode _mode = IconMode, QWidget* parent = 0);
46  virtual ~View();
47 
48  void updateFromSettings(Settings& settings);
49 
50 Q_SIGNALS:
51  void openDirRequested(FmPath* path, int target);
52 
53 protected Q_SLOTS:
54  void onNewWindow();
55  void onNewTab();
56  void onOpenInTerminal();
57  void onSearch();
58 
59 protected:
60  virtual void onFileClicked(int type, FmFileInfo* fileInfo);
61  virtual void prepareFileMenu(Fm::FileMenu* menu);
62  virtual void prepareFolderMenu(Fm::FolderMenu* menu);
63 
64 private:
65 
66 };
67 
68 };
69 #endif // PCMANFM_FOLDERVIEW_H
Definition: appchoosercombobox.cpp:26
Definition: foldermenu.h:35
Definition: settings.h:33
Definition: filemenu.h:37
Definition: view.h:35
Definition: folderview.h:42
Definition: application.h:38