/usr/include/KF5/KCompletion/khistorycombobox.h is in libkf5completion-dev 5.18.0-0ubuntu1.
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 | /* This file is part of the KDE libraries
Copyright (c) 2000,2001 Dawit Alemayehu <adawit@kde.org>
Copyright (c) 2000,2001 Carsten Pfeiffer <pfeiffer@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (LGPL) as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KHistoryComboBoxBOX_H
#define KHistoryComboBoxBOX_H
#include <kcombobox.h>
#include <kcompletion_export.h>
class KPixmapProvider;
class KHistoryComboBoxPrivate;
/**
* @short A combobox for offering a history and completion
*
* A combobox which implements a history like a unix shell. You can navigate
* through all the items by using the Up or Down arrows (configurable of
* course). Additionally, weighted completion is available. So you should
* load and save the completion list to preserve the weighting between
* sessions.
*
* KHistoryComboBox obeys the HISTCONTROL environment variable to determine
* whether duplicates in the history should be tolerated in
* addToHistory() or not. During construction of KHistoryComboBox,
* duplicates will be disabled when HISTCONTROL is set to "ignoredups" or
* "ignoreboth". Otherwise, duplicates are enabled by default.
*
* \image html khistorycombobox.png "KDE History Combo Box"
*
* @author Carsten Pfeiffer <pfeiffer@kde.org>
*/
class KCOMPLETION_EXPORT KHistoryComboBox : public KComboBox
{
Q_OBJECT
Q_DECLARE_PRIVATE(KHistoryComboBox)
Q_PROPERTY(QStringList historyItems READ historyItems WRITE setHistoryItems)
public:
/**
* Constructs a "read-write" combobox. A read-only history combobox
* doesn't make much sense, so it is only available as read-write.
* Completion will be used automatically for the items in the combo.
*
* The insertion-policy is set to NoInsert, you have to add the items
* yourself via the slot addToHistory. If you want every item added,
* use
*
* \code
* connect( combo, SIGNAL( activated( const QString& )),
* combo, SLOT( addToHistory( const QString& )));
* \endcode
*
* Use QComboBox::setMaxCount() to limit the history.
*
* @p parent the parent object of this widget.
*/
explicit KHistoryComboBox(QWidget *parent = 0);
/**
* Same as the previous constructor, but additionally has the option
* to specify whether you want to let KHistoryComboBox handle completion
* or not. If set to @p true, KHistoryComboBox will sync the completion to the
* contents of the combobox.
*/
explicit KHistoryComboBox(bool useCompletion, QWidget *parent = 0);
/**
* Destructs the combo, the completion-object and the pixmap-provider
*/
~KHistoryComboBox();
/**
* Inserts @p items into the combobox. @p items might get
* truncated if it is longer than maxCount()
*
* @see historyItems
*/
void setHistoryItems(const QStringList &items);
/**
* Inserts @p items into the combobox. @p items might get
* truncated if it is longer than maxCount()
*
* Set @p setCompletionList to true, if you don't have a list of
* completions. This tells KHistoryComboBox to use all the items for the
* completion object as well.
* You won't have the benefit of weighted completion though, so normally
* you should do something like
* \code
* KConfigGroup config(KSharedConfig::openConfig(), "somegroup");
*
* // load the history and completion list after creating the history combo
* QStringList list;
* list = config.readEntry("Completion list", QStringList());
* combo->completionObject()->setItems(list);
* list = config.readEntry("History list", QStringList());
* combo->setHistoryItems(list);
*
* [...]
*
* // save the history and completion list when the history combo is
* // destroyed
* QStringList list;
* KConfigGroup config(KSharedConfig::openConfig(), "somegroup");
* list = combo->completionObject()->items();
* config.writeEntry("Completion list", list);
* list = combo->historyItems();
* config.writeEntry("History list", list);
* \endcode
*
* Be sure to use different names for saving with KConfig if you have more
* than one KHistoryComboBox.
*
* Note: When @p setCompletionList is true, the items are inserted into the
* KCompletion object with mode KCompletion::Insertion and the mode is set
* to KCompletion::Weighted afterwards.
*
* @see historyItems
* @see KComboBox::completionObject
* @see KCompletion::setItems
* @see KCompletion::items
*/
void setHistoryItems(const QStringList &items, bool setCompletionList);
/**
* Returns the list of history items. Empty, when this is not a read-write
* combobox.
*
* @see setHistoryItems
*/
QStringList historyItems() const;
/**
* Removes all items named @p item.
*
* @return @p true if at least one item was removed.
*
* @see addToHistory
*/
bool removeFromHistory(const QString &item);
/**
* Sets a pixmap provider, so that items in the combobox can have a pixmap.
* KPixmapProvider is just an abstract class with the one pure virtual
* method KPixmapProvider::pixmapFor(). This method is called whenever
* an item is added to the KHistoryComboBoxBox. Implement it to return your
* own custom pixmaps, or use the KUrlPixmapProvider from KIO,
* which uses KMimeType::pixmapForUrl to resolve icons.
*
* Set @p provider to Q_NULLPTR if you want to disable pixmaps. Default no pixmaps.
*
* @see pixmapProvider
*/
void setPixmapProvider(KPixmapProvider *provider);
/**
* @returns the current pixmap provider.
* @see setPixmapProvider
* @see KPixmapProvider
*/
KPixmapProvider *pixmapProvider() const;
using QComboBox::insertItems;
public Q_SLOTS:
/**
* Adds an item to the end of the history list and to the completion list.
* If maxCount() is reached, the first item of the list will be
* removed.
*
* If the last inserted item is the same as @p item, it will not be
* inserted again.
*
* If duplicatesEnabled() is false, any equal existing item will be
* removed before @p item is added.
*
* Note: By using this method and not the Q and KComboBox insertItem()
* methods, you make sure that the combobox stays in sync with the
* completion. It would be annoying if completion would give an item
* not in the combobox, and vice versa.
*
* @see removeFromHistory
* @see QComboBox::setDuplicatesEnabled
*/
void addToHistory(const QString &item);
/**
* Clears the history and the completion list.
*/
void clearHistory();
/**
* Resets the current position of the up/down history. Call this
* when you manually call setCurrentItem() or clearEdit().
*/
void reset();
Q_SIGNALS:
/**
* Emitted when the history was cleared by the entry in the popup menu.
*/
void cleared();
protected:
/**
* Handling key-events, the shortcuts to rotate the items.
*/
void keyPressEvent(QKeyEvent *) Q_DECL_OVERRIDE;
/**
* Handling wheel-events, to rotate the items.
*/
void wheelEvent(QWheelEvent *ev) Q_DECL_OVERRIDE;
/**
* Inserts @p items into the combo, honoring pixmapProvider()
* Does not update the completionObject.
*
* Note: duplicatesEnabled() is not honored here.
*
* Called from setHistoryItems() and setPixmapProvider()
*/
void insertItems(const QStringList &items);
/**
* @returns if we can modify the completion object or not.
*/
bool useCompletion() const;
private:
const QScopedPointer<KHistoryComboBoxPrivate> d_ptr;
Q_PRIVATE_SLOT(d_func(), void _k_clear())
Q_PRIVATE_SLOT(d_func(), void _k_addContextMenuItems(QMenu *))
Q_PRIVATE_SLOT(d_func(), void _k_simulateActivated(const QString &))
Q_DISABLE_COPY(KHistoryComboBox)
};
#endif
|