Shift-Right Clicking in Windows invokes the explorer context menu FossilOrigin-Name: 837bdcc1c791b82712aaed52311e783a8fe1a135
14 lines
385 B
C
14 lines
385 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <QString>
|
|
#include <QMessageBox>
|
|
|
|
QMessageBox::StandardButton DialogQuery(QWidget *parent, const QString &title, const QString &query, QMessageBox::StandardButtons buttons = QMessageBox::Yes|QMessageBox::No);
|
|
|
|
#ifdef Q_WS_WIN
|
|
bool ShowExplorerMenu(HWND hwnd, const QString &path, const QPoint &qpoint);
|
|
#endif
|
|
|
|
#endif // UTILS_H
|