android: Fix XML form filter.
[qpwmc.git] / applicationFormFileSelector.cpp
blobc273cf1ac9d5afcb16df2af6fb3f1bf28f687e77
1 /*
2 Copyright (C) 2013-2023 Ben Kibbey <bjk@luxsci.net>
4 This file is part of qpwmc.
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 USA
21 #include <QLineEdit>
22 #include "pwmdFileDialog.h"
23 #include "applicationFormFileSelector.h"
25 ApplicationFormFileSelector::ApplicationFormFileSelector (QWidget *w,
26 QWidget *p)
27 : QPushButton (p)
29 _widget = w;
32 void
33 ApplicationFormFileSelector::slotFileSelector ()
35 PwmdFileDialog d (this, tr ("Open file"));
37 d.setFileMode (PwmdFileDialog::ExistingFile);
38 d.setOption (PwmdFileDialog::ReadOnly);
39 #ifdef Q_OS_ANDROID
40 d.setWindowState (Qt::WindowFullScreen);
41 #endif
43 if (!d.exec () || !d.selectedFiles ().count ())
44 return;
46 QLineEdit *w = static_cast<QLineEdit *>(_widget);
47 w->setText (d.selectedFiles ().at (0));