diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-09-06 22:45:15 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-09-06 22:45:15 +0300 |
commit | a364d9456dfdfd8181904fca6308e9c36eefd10a (patch) | |
tree | f355ded227cf52053784b991f5d8441a5502e447 /src/lookup.h | |
parent | 52a1652536e4e27751ac121009f85113e72afe7d (diff) |
LookupWidget: Keyboard focus and cursor
Diffstat (limited to 'src/lookup.h')
-rw-r--r-- | src/lookup.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lookup.h b/src/lookup.h index ecbe0036..a20a36d0 100644 --- a/src/lookup.h +++ b/src/lookup.h | |||
@@ -37,6 +37,7 @@ enum iLookupResultType { | |||
37 | 37 | ||
38 | struct Impl_LookupResult { | 38 | struct Impl_LookupResult { |
39 | enum iLookupResultType type; | 39 | enum iLookupResultType type; |
40 | float relevance; /* used for sorting results */ | ||
40 | iString label; | 41 | iString label; |
41 | iString url; | 42 | iString url; |
42 | iString meta; | 43 | iString meta; |
@@ -44,3 +45,5 @@ struct Impl_LookupResult { | |||
44 | }; | 45 | }; |
45 | 46 | ||
46 | iDeclareTypeConstruction(LookupResult) | 47 | iDeclareTypeConstruction(LookupResult) |
48 | |||
49 | iLookupResult * copy_LookupResult (const iLookupResult *); | ||