blob: f25aeda7493d23b90e2b808d1d0a1a593daee4a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef ENV_SHELL_H
#define ENV_SHELL_H
#include "env.h"
#include <QFileInfo>
#include <QPoint>
namespace env
{
class ShellMenu
{
public:
void addFile(QFileInfo fi);
void exec(QWidget* parent, const QPoint& pos);
HMENU getMenu();
private:
std::vector<QFileInfo> m_files;
COMPtr<IContextMenu> m_cm;
HMenuPtr m_menu;
void createMenu();
QMainWindow* getMainWindow(QWidget* w);
COMPtr<IShellItem> createShellItem(const std::wstring& path);
COMPtr<IPersistIDList> getPersistIDList(IShellItem* item);
CoTaskMemPtr<LPITEMIDLIST> getIDList(IPersistIDList* pidlist);
std::vector<LPCITEMIDLIST> createIdls(const std::vector<QFileInfo>& files);
COMPtr<IShellItemArray> createItemArray(std::vector<LPCITEMIDLIST>& idls);
COMPtr<IContextMenu> createContextMenu(IShellItemArray* array);
HMenuPtr createMenu(IContextMenu* cm);
HMenuPtr createDummyMenu(const QString& what);
int runMenu(QMainWindow* mw, IContextMenu* cm, HMENU menu, const QPoint& p);
void invoke(QMainWindow* mw, const QPoint& p, int cmd, IContextMenu* cm);
};
} // namespace
#endif // ENV_SHELL_H
|