2021-12-28 15:56:41 +08:00
|
|
|
#ifndef COMMONDEFINES_H
|
|
|
|
#define COMMONDEFINES_H
|
|
|
|
namespace UkuiSearch {
|
|
|
|
enum class SearchType
|
|
|
|
{
|
2022-01-24 09:44:42 +08:00
|
|
|
File = 0x1 << 0,
|
|
|
|
FileContent = 0x1 << 1,
|
|
|
|
Application = 0x1 << 2,
|
|
|
|
Setting = 0x1 << 3,
|
|
|
|
Note = 0x1 << 4,
|
|
|
|
Mail = 0x1 << 5,
|
|
|
|
Custom = 0x1 << 6
|
2021-12-28 15:56:41 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // COMMONDEFINES_H
|