-
Notifications
You must be signed in to change notification settings - Fork 14
/
pqNativeFileDialogEventTranslator.cxx
183 lines (144 loc) · 5.98 KB
/
pqNativeFileDialogEventTranslator.cxx
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#include "pqNativeFileDialogEventTranslator.h"
#include "pqEventTranslator.h"
#include "pqTestUtility.h"
#include <QApplication>
#include <QEvent>
#include <QFileDialog>
#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
typedef QString (*_qt_filedialog_existing_directory_hook)(
QWidget* parent, const QString& caption, const QString& dir, QFileDialog::Options options);
extern Q_DECL_IMPORT _qt_filedialog_existing_directory_hook qt_filedialog_existing_directory_hook;
typedef QString (*_qt_filedialog_open_filename_hook)(QWidget* parent, const QString& caption,
const QString& dir, const QString& filter, QString* selectedFilter, QFileDialog::Options options);
extern Q_DECL_IMPORT _qt_filedialog_open_filename_hook qt_filedialog_open_filename_hook;
typedef QStringList (*_qt_filedialog_open_filenames_hook)(QWidget* parent, const QString& caption,
const QString& dir, const QString& filter, QString* selectedFilter, QFileDialog::Options options);
extern Q_DECL_IMPORT _qt_filedialog_open_filenames_hook qt_filedialog_open_filenames_hook;
typedef QString (*_qt_filedialog_save_filename_hook)(QWidget* parent, const QString& caption,
const QString& dir, const QString& filter, QString* selectedFilter, QFileDialog::Options options);
extern Q_DECL_IMPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook;
namespace
{
pqNativeFileDialogEventTranslator* self;
_qt_filedialog_existing_directory_hook old_existing_directory_hook;
_qt_filedialog_open_filename_hook old_open_filename_hook;
_qt_filedialog_open_filenames_hook old_open_filenames_hook;
_qt_filedialog_save_filename_hook old_save_filename_hook;
QString existing_directory_hook(
QWidget* parent, const QString& caption, const QString& dir, QFileDialog::Options options)
{
qt_filedialog_existing_directory_hook = 0;
QString path = QFileDialog::getExistingDirectory(parent, caption, dir, options);
self->record("DirOpen", path);
qt_filedialog_existing_directory_hook = existing_directory_hook;
return path;
}
QString open_filename_hook(QWidget* parent, const QString& caption, const QString& dir,
const QString& filter, QString* selectedFilter, QFileDialog::Options options)
{
qt_filedialog_open_filename_hook = 0;
QString file =
QFileDialog::getOpenFileName(parent, caption, dir, filter, selectedFilter, options);
self->record("FileOpen", file);
qt_filedialog_open_filename_hook = open_filename_hook;
return file;
}
QStringList open_filenames_hook(QWidget* parent, const QString& caption, const QString& dir,
const QString& filter, QString* selectedFilter, QFileDialog::Options options)
{
qt_filedialog_open_filenames_hook = 0;
QStringList files =
QFileDialog::getOpenFileNames(parent, caption, dir, filter, selectedFilter, options);
self->record("FilesOpen", files.join(";"));
qt_filedialog_open_filenames_hook = open_filenames_hook;
return files;
}
QString save_filename_hook(QWidget* parent, const QString& caption, const QString& dir,
const QString& filter, QString* selectedFilter, QFileDialog::Options options)
{
qt_filedialog_save_filename_hook = 0;
QString file =
QFileDialog::getSaveFileName(parent, caption, dir, filter, selectedFilter, options);
self->record("FileSave", file);
qt_filedialog_save_filename_hook = save_filename_hook;
return file;
}
}
pqNativeFileDialogEventTranslator::pqNativeFileDialogEventTranslator(
pqTestUtility* util, QObject* p)
: pqWidgetEventTranslator(p)
, mUtil(util)
{
QObject::connect(mUtil->eventTranslator(), SIGNAL(started()), this, SLOT(start()));
QObject::connect(mUtil->eventTranslator(), SIGNAL(stopped()), this, SLOT(stop()));
}
pqNativeFileDialogEventTranslator::~pqNativeFileDialogEventTranslator() {}
void pqNativeFileDialogEventTranslator::start()
{
self = this;
old_existing_directory_hook = qt_filedialog_existing_directory_hook;
qt_filedialog_existing_directory_hook = existing_directory_hook;
old_open_filename_hook = qt_filedialog_open_filename_hook;
qt_filedialog_open_filename_hook = open_filename_hook;
old_open_filenames_hook = qt_filedialog_open_filenames_hook;
qt_filedialog_open_filenames_hook = open_filenames_hook;
old_save_filename_hook = qt_filedialog_save_filename_hook;
qt_filedialog_save_filename_hook = save_filename_hook;
}
void pqNativeFileDialogEventTranslator::stop()
{
self = NULL;
qt_filedialog_existing_directory_hook = old_existing_directory_hook;
qt_filedialog_open_filename_hook = old_open_filename_hook;
qt_filedialog_open_filenames_hook = old_open_filenames_hook;
qt_filedialog_save_filename_hook = old_save_filename_hook;
}
bool pqNativeFileDialogEventTranslator::translateEvent(
QObject* Object, QEvent* pqNotUsed(Event), bool& pqNotUsed(Error))
{
// capture events under a filedialog and consume them
QObject* tmp = Object;
while (tmp)
{
if (qobject_cast<QFileDialog*>(tmp))
{
return true;
}
tmp = tmp->parent();
}
return false;
}
void pqNativeFileDialogEventTranslator::record(const QString& command, const QString& args)
{
QStringList files = args.split(";");
QStringList normalized_files;
Q_FOREACH (QString file, files)
{
normalized_files.append(mUtil->convertToDataDirectory(file));
}
Q_EMIT this->recordEvent(QApplication::instance(), command, normalized_files.join(";"));
}
#else
pqNativeFileDialogEventTranslator::pqNativeFileDialogEventTranslator(
pqTestUtility* util, QObject* p)
: pqWidgetEventTranslator(p)
, mUtil(util)
{
}
pqNativeFileDialogEventTranslator::~pqNativeFileDialogEventTranslator() {}
void pqNativeFileDialogEventTranslator::start() {}
void pqNativeFileDialogEventTranslator::stop() {}
bool pqNativeFileDialogEventTranslator::translateEvent(
QObject* pqNotUsed(Object), QEvent* pqNotUsed(Event), bool& pqNotUsed(Error))
{
return false;
}
void pqNativeFileDialogEventTranslator::record(const QString& command, const QString& args)
{
Q_UNUSED(command);
Q_UNUSED(args);
}
#endif