blob: 3be53841ee1b79a8490d98ce53faa193f074622d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef ENV_SHELL_H
#define ENV_SHELL_H
#include <QFileInfo>
#include <QPoint>
namespace env
{
void showShellMenu(
QWidget* parent, const QFileInfo& file, const QPoint& pos);
void showShellMenu(
QWidget* parent, const std::vector<QFileInfo>& files, const QPoint& pos);
}
#endif // ENV_SHELL_H
|