blob: 109257de0d79ab0f6e983c4ac66fdeeb29a9234f (
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
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
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#ifndef PICSEARCHOPTIONS_H
#define PICSEARCHOPTIONS_H
#include "scribusapi.h"
#include "ui_picsearchoptions.h"
class FileSearch;
class SCRIBUS_API PicSearchOptions : public QDialog, Ui::PicSearchOptions
{
Q_OBJECT
public:
PicSearchOptions(QWidget* parent, const QString & fileName,const QString & searchBase);
~PicSearchOptions() {};
/**
* \brief Fetch the last used searchBase.
* @return Path string.
*/
const QString &getLastDirSearched () { return m_strLastDirSearched; }
/**
* \brief Fetch the filename used for the last search.
* @return Filename string.
*/
const QString &getFileName () { return m_strFileName; }
/**
* \brief Fetch all found matches.
* @return List of file paths.
*/
const QStringList &getMatches () { return m_listMatches; }
/**
* \brief Did the user cancel the search?
* @return <code>bool</code> TRUE if cancelled.
*/
bool getCancelled () { return m_bCancelled; }
private slots:
void slotChangeSearchDir();
void slotSearchPic();
void slotSearchPicAborted(bool userCancelled);
void slotSearchPicFinished(const QStringList & matches, const QString & fileName);
private:
QString m_strFileName;
QString m_strLastDirSearched;
QStringList m_listMatches;
bool m_bCancelled;
protected:
/**
* \brief Toggle a search button in the table between "Search" and "Cancel Search",
* fixing signal connections as well.
* \param toCancel true in the "cancelation" state/process
* \param searcher a reference to the searcher object
*/
void setSearchButton(bool toCancel, const FileSearch* searcher);
/**
* \brief Enable/disable gui elements while searching.
* @param enable Set to FALSE if searching.
*/
void enableGuiWhileSearching (bool enable);
};
#endif
|