/usr/include/klftools/klfsearchbar.h is in libklatexformula3-dev 3.2.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | /***************************************************************************
* file klfsearchbar.h
* This file is part of the KLatexFormula Project.
* Copyright (C) 2011 by Philippe Faist
* philippe.faist at bluewin.ch
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/* $Id: klfsearchbar.h 603 2011-02-26 23:14:55Z phfaist $ */
#ifndef KLFSEARCHBAR_H
#define KLFSEARCHBAR_H
#include <QObject>
#include <QWidget>
#include <QFrame>
#include <QMovie>
#include <QLabel>
#include <QTime>
#include <klfdefs.h>
class QLineEdit;
class KLFWaitAnimationOverlay;
class KLFSearchBar;
class KLFSearchableProxy;
namespace Ui { class KLFSearchBar; }
//! An interface for objects that can be I-searched with a KLFSearchBar
/** This class is the base skeleton interface for displays that will be targets for I-searches.
* There are three functions to reimplement:
* \code
* virtual bool searchFind(const QString& queryString, bool forward);
* virtual bool searchFindNext(bool forward);
* virtual void searchAbort();
* \endcode
* That have to actually perform the search.
*
* It is not uncommon for the display widget itself to inherit also from a KLFSearchable. See
* KLFAbstractLibView and KLFLibDefautlView for an example (in klfapp library).
*
* This class is pretty low-level search (you have to manually walk all items, remember the query
* string for future find-next operations, etc.). For a higher-level search implementation, see
* KLFIteratorSearchable (which itself is a KLFSearchable object and can also be used as target
* for KLFSearchBar).
*/
class KLF_EXPORT KLFSearchable
{
public:
KLFSearchable();
virtual ~KLFSearchable();
//! Find the first occurence of a query string
/** This function has to be reimplemented to find the first occurence of the string
* \c queryString, searching from top of the displayed information if \c forward is
* TRUE, or reverse from end of display of FALSE.
*
* The reimplementation should call from time to time
* \code qApp->processEvents() \endcode
* to keep the GUI from freezing in long searches.
*
* \note If the reimplementation implements the above suggestion, note that the slot
* \ref searchAbort() may be called during that time! It is best to take that into
* account and provide a means to stop the search if that is the case.
*/
virtual bool searchFind(const QString& queryString, bool forward) = 0;
//! Find the first occurence of a query string
/** This function is provided for calling convenience. Subclasses should reimplement
* searchFind(const QString&, bool) instead.
*
* This function directly calls searchFind(const QString& bool) with the \c forward
* argument set to TRUE.
*/
inline bool searchFind(const QString& queryString) { return searchFind(queryString, true); }
//! Find next or previous occurence of query string
/** This function has to be reimplemented to find the next occurence of the query string
* given by a previous call to \ref searchFind(). The search must be performed in the
* direction given by \c forward (see \ref searchFind()).
*
* It is up to the sub-class to remember the query string and the current match location.
*
* This function should also call the applications's processEvents() to keep the GUI from
* freezing. See documentation in \ref searchFind().
*/
virtual bool searchFindNext(bool forward) = 0;
//! Abort I-Search
/** The behavior depends on the object/data being searched. This could
* be reimplemented for example to return to the beginning of the list, or to the position
* where the user was at the beginning of the search.
*/
virtual void searchAbort() = 0;
private:
QList<KLFSearchBar*> pTargetOf;
QList<KLFSearchableProxy*> pTargetOfProxy;
friend class KLFSearchBar;
friend class KLFSearchableProxy;
};
//! A proxy class that relays search queries to another searchable object
/** This class may be used for example when you have global search bar, but many sub-windows or sub-displays
* displaying different data, and the search bar should search within the active one.
*/
class KLF_EXPORT KLFSearchableProxy : public KLFSearchable
{
public:
KLFSearchableProxy() : pTarget(NULL) { }
virtual ~KLFSearchableProxy();
void setSearchTarget(KLFSearchable *target);
virtual bool searchFind(const QString& queryString, bool forward);
virtual bool searchFindNext(bool forward);
virtual void searchAbort();
private:
KLFSearchable *pTarget;
friend class KLFSearchable;
};
//! An Search Bar for Incremental Search
/** This widget provides a set of controls an incremental search. This includes a line edit to input
* the query string, a clear button, 'find next' and 'find previous' buttons.
*
* This widget acts upon an abstract \ref KLFSearchable object, which the object or display being searched
* will have to implement. You only need to implement three straightforward functions providing the
* actual search functionality. The search target can be set with \ref setSearchTarget().
*
* The user interface is inspired from (X)Emacs' I-search. More specifically:
* - results are searched for already while the user is typing
* - once arrived at the end of the list, the search will fail. However, re-attempting to find next
* (eg. F3 or Ctrl-S) (respectively previous) will wrap the search from the beginning (respectively
* from the end)
*
* Shortcuts can be enabled so that Ctrl-F, Ctrl-S, F3, and such other keys work. See registerShortcuts().
*
* The search bar will turn red or green depending on whether the query string is found or not, you can
* customize these colors with setColorFound() and setColorNotFound(). To customize these colors using
* stylesheets, you may use the rules
* <pre>QLineEdit[searchState="found"] {
* background-color: rgb(128,255,128,128);
* }
* QLineEdit[searchState="not-found"] {
* background-color: rgb(255,128,128,128);
* }
* </pre>
* since the property \c searchState is set to one of \c "default", \c "focus-out", \c "found", \c "not-found",
* or \c "aborted" depending on the current state.
*/
class KLF_EXPORT KLFSearchBar : public QFrame
{
Q_OBJECT
Q_PROPERTY(QString currentSearchText READ currentSearchText WRITE setSearchText) ;
Q_PROPERTY(bool showOverlayMode READ showOverlayMode WRITE setShowOverlayMode) ;
Q_PROPERTY(QRect showOverlayRelativeGeometry READ showOverlayRelativeGeometry
WRITE setShowOverlayRelativeGeometry ) ;
Q_PROPERTY(QString focusOutText READ focusOutText WRITE setFocusOutText) ;
Q_PROPERTY(QColor colorFound READ colorFound WRITE setColorFound) ;
Q_PROPERTY(QColor colorNotFound READ colorNotFound WRITE setColorNotFound) ;
Q_PROPERTY(bool showHideButton READ hideButtonShown WRITE setShowHideButton) ;
public:
KLFSearchBar(QWidget *parent = NULL);
virtual ~KLFSearchBar();
virtual void registerShortcuts(QWidget *parent);
/** Set the object upon which we will perform searches. As long as no object is
* set this bar is unusable. */
virtual void setSearchTarget(KLFSearchable *object);
QString currentSearchText() const;
inline bool showOverlayMode() const { return pShowOverlayMode; }
inline QRect showOverlayRelativeGeometry() const { return pShowOverlayRelativeGeometry; }
inline QString focusOutText() const { return pFocusOutText; }
/** This value is read from the palette. It does not take into account style sheets. */
QColor colorFound() const;
/** This value is read from the palette. It does not take into account style sheets. */
QColor colorNotFound() const;
bool hideButtonShown() const;
void setShowOverlayMode(bool showOverlayMode);
void setShowOverlayRelativeGeometry(const QRect& relativeGeometryPercent);
void setShowOverlayRelativeGeometry(int widthPercent, int heightPercent,
int positionXPercent, int positionYPercent);
void setColorFound(const QColor& color);
void setColorNotFound(const QColor& color);
void setShowHideButton(bool showHideButton);
virtual bool eventFilter(QObject *obj, QEvent *ev);
QLineEdit * editor();
signals:
void searchPerformed(bool found);
void found();
void found(const QString& queryString, bool forward);
void didNotFind();
void didNotFind(const QString& queryString, bool forward);
void searchAborted();
void escapePressed();
public slots:
/** Clears the search bar and takes focus. */
void clear();
/** If the search bar does not have focus, takes focus and clears the bar, preparing to search
* in forward direction (unless \c forward is FALSE). If it has focus, finds the next occurence
* (resp. previous if \c forward is FALSE) of the current or last search string. */
void focusOrNext(bool forward = true);
/** If the search bar does not have focus, takes focus and clears the bar, preparing for a backwards
* search. If it has focus, finds the previous occurence of the current or last search string. */
void focusOrPrev() { focusOrNext(false); }
void find(const QString& string) { find(string, pSearchForward); }
void find(const QString& string, bool forward);
void findNext(bool forward = true);
void findPrev() { findNext(false); }
void abortSearch();
void focus();
virtual void setSearchText(const QString& text);
void setFocusOutText(const QString& focusOutText);
protected:
Ui::KLFSearchBar *u;
virtual void slotSearchFocusIn();
virtual void slotSearchFocusOut();
virtual void updateSearchFound(bool found);
enum SearchState { Default, FocusOut, Found, NotFound, Aborted };
virtual void displayState(SearchState state);
void emitFoundSignals(bool found, const QString& searchstring, bool forward);
/** sets the given \c text in the search bar, ensuring that the search bar will NOT emit
* any textChanged() signals. */
void showSearchBarText(const QString& text);
/** Little helper: returns TRUE if the search bar has focus, FALSE otherwise. */
bool searchBarHasFocus();
virtual bool event(QEvent *event);
private:
KLFSearchable *pTarget;
/** This is set by focusOrNext() or focusOrPrev() to remember in which direction to
* search when text in search bar is changed and thus find() is called. */
bool pSearchForward;
QString pSearchText;
QString pLastSearchText;
KLFWaitAnimationOverlay *pWaitLabel;
bool pShowOverlayMode;
QRect pShowOverlayRelativeGeometry;
QString pFocusOutText;
QString palettePropName(SearchState state) const;
QString statePropValue(SearchState state) const;
friend class KLFSearchable;
KLF_DEBUG_DECLARE_ASSIGNABLE_REF_INSTANCE()
};
#endif
|