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
|
/*
Launchy: Application Launcher
Copyright (C) 2007 Josh Karlin
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.
*/
#ifndef CATALOG_H
#define CATALOG_H
#include <QString>
#include <QStringList>
#include <QBitArray>
#include <QIcon>
#include <QHash>
#include <QDataStream>
#include <QDir>
#include <QSet>
/**
\brief CatItem (Catalog Item) stores a single item in the index
*/
class CatItem {
public:
/** The full path of the indexed item */
QString fullPath;
/** The abbreviated name of the indexed item */
QString shortName;
/** The lowercase name of the indexed item */
QString lowName;
/** A path to an icon for the item */
QString icon;
/** How many times this item has been called by the user */
int usage;
/** This is unused, and meant for plugin writers and future extensions */
void* data;
/** The plugin id of the creator of this CatItem */
int id;
CatItem() {}
CatItem(QString full, bool isDir = false)
: fullPath(full) {
int last = fullPath.lastIndexOf("/");
if (last == -1) {
shortName = fullPath;
} else {
shortName = fullPath.mid(last+1);
if (!isDir)
shortName = shortName.mid(0,shortName.lastIndexOf("."));
}
lowName = shortName.toLower();
data = NULL;
usage = 0;
id = 0;
}
CatItem(QString full, QString shortN)
: fullPath(full), shortName(shortN)
{
lowName = shortName.toLower();
data = NULL;
usage = 0;
id = 0;
}
CatItem(QString full, QString shortN, uint i_d)
: id(i_d), fullPath(full), shortName(shortN)
{
lowName = shortName.toLower();
data = NULL;
usage = 0;
}
/** This is the constructor most used by plugins
\param full The full path of the file to execute
\param The abbreviated name for the entry
\param i_d Your plugin id (0 for Launchy itself)
\param iconPath The path to the icon for this entry
\warning It is usually a good idea to append ".your_plugin_name" to the end of the full parameter
so that there are not multiple items in the index with the same full path.
*/
CatItem(QString full, QString shortN, uint i_d, QString iconPath)
: id(i_d), fullPath(full), shortName(shortN), icon(iconPath)
{
lowName = shortName.toLower();
data = NULL;
usage = 0;
}
CatItem(const CatItem &s) {
fullPath = s.fullPath;
shortName = s.shortName;
lowName = s.lowName;
icon = s.icon;
usage = s.usage;
data = s.data;
id = s.id;
}
CatItem& operator=( const CatItem &s ) {
fullPath = s.fullPath;
shortName = s.shortName;
lowName = s.lowName;
icon = s.icon;
usage = s.usage;
data = s.data;
id = s.id;
return *this;
}
bool operator==(const CatItem& other) const{
if (fullPath == other.fullPath)
return true;
return false;
}
};
/** InputData shows one segment (between tabs) of a user's query
A user's query is typically represented by List<InputData>
and each element of the list represents a segment of the query.
E.g. query = "google <tab> this is my search" will have 2 InputData segments
in the list. One for "google" and one for "this is my search"
*/
class InputData
{
private:
/** The user's entry */
QString text;
/** Any assigned labels to this query segment */
QSet<uint> labels;
/** A pointer to the best catalog match for this segment of the query */
CatItem topResult;
/** The plugin id of this query's owner */
uint id;
public:
/** Get the labels applied to this query segment */
QSet<uint> getLabels() { return labels; }
/** Apply a label to this query segment */
void setLabel(uint l) { labels.insert(l); }
/** Check if it has the given label applied to it */
bool hasLabel(uint l) { return labels.contains(l); }
/** Set the id of this query
This can be used to override the owner of the selected catalog item, so that
no matter what item is chosen from the catalog, the given plugin will be the one
to execute it.
\param i The plugin id of the plugin to execute the query's best match from the catalog
*/
void setID(uint i) { id = i; }
/** Returns the current owner id of the query */
uint getID() { return id; }
/** Get the text of the query segment */
QString getText() { return text; }
/** Set the text of the query segment */
void setText(QString t) { text = t; }
/** Get a pointer to the best catalog match for this segment of the query */
CatItem& getTopResult() { return topResult; }
/** Change the best catalog match for this segment */
void setTopResult(CatItem sr) { topResult = sr; }
InputData() { id = 0; }
InputData(QString str) : text(str) { id = 0;}
};
bool CatLess (CatItem* left, CatItem* right);
bool CatLessNoPtr (CatItem & a, CatItem & b);
inline QDataStream &operator<<(QDataStream &out, const CatItem &item) {
out << item.fullPath;
out << item.shortName;
out << item.lowName;
out << item.icon;
out << item.usage;
out << item.id;
return out;
}
inline QDataStream &operator>>(QDataStream &in, CatItem &item) {
in >> item.fullPath;
in >> item.shortName;
in >> item.lowName;
in >> item.icon;
in >> item.usage;
in >> item.id;
return in;
}
#endif
|