*** empty log message ***
This commit is contained in:
parent
1b1f145d01
commit
37395e05ab
@ -35,7 +35,7 @@ unix {
|
|||||||
DEFINES += RECOLL_DATADIR=\"/usr/local/share\"
|
DEFINES += RECOLL_DATADIR=\"/usr/local/share\"
|
||||||
LIBS += ../lib/librcl.a ../bincimapmime/libmime.a \
|
LIBS += ../lib/librcl.a ../bincimapmime/libmime.a \
|
||||||
$(BSTATIC) -L/usr/local/lib -lxapian -L/usr/local/lib -liconv $(BDYNAMIC) \
|
$(BSTATIC) -L/usr/local/lib -lxapian -L/usr/local/lib -liconv $(BDYNAMIC) \
|
||||||
-lkdecore -lz
|
-lz
|
||||||
|
|
||||||
INCLUDEPATH += ../common ../index ../query ../unac ../utils
|
INCLUDEPATH += ../common ../index ../query ../unac ../utils
|
||||||
POST_TARGETDEPS = ../lib/librcl.a
|
POST_TARGETDEPS = ../lib/librcl.a
|
||||||
|
|||||||
@ -3,35 +3,29 @@ LANGUAGE = C++
|
|||||||
|
|
||||||
CONFIG += qt warn_on thread release debug
|
CONFIG += qt warn_on thread release debug
|
||||||
|
|
||||||
|
HEADERS += rclmain.h
|
||||||
|
|
||||||
SOURCES += main.cpp \
|
SOURCES += main.cpp \
|
||||||
rclmain.cpp \
|
rclmain.cpp \
|
||||||
idxthread.cpp \
|
idxthread.cpp \
|
||||||
plaintorich.cpp
|
plaintorich.cpp \
|
||||||
|
guiutils.cpp
|
||||||
|
|
||||||
HEADERS = rclmain.h
|
FORMS = reslistb.ui \
|
||||||
|
recollmain.ui \
|
||||||
|
advsearch.ui \
|
||||||
|
preview/preview.ui \
|
||||||
|
sort.ui \
|
||||||
|
uiprefs.ui \
|
||||||
|
ssearchb.ui
|
||||||
|
|
||||||
FORMS = recollmain.ui \
|
IMAGES = images/asearch.png \
|
||||||
advsearch.ui \
|
images/history.png \
|
||||||
preview/preview.ui \
|
images/d_nextpage.png \
|
||||||
sort.ui \
|
images/nextpage.png \
|
||||||
uiprefs.ui
|
images/d_prevpage.png \
|
||||||
|
images/prevpage.png \
|
||||||
|
images/sortparms.png
|
||||||
IMAGES = images/filenew \
|
|
||||||
images/fileopen \
|
|
||||||
images/filesave \
|
|
||||||
images/print \
|
|
||||||
images/undo \
|
|
||||||
images/redo \
|
|
||||||
images/editcut \
|
|
||||||
images/editcopy \
|
|
||||||
images/editpaste \
|
|
||||||
images/searchfind \
|
|
||||||
images/asearch \
|
|
||||||
images/history \
|
|
||||||
images/nextpage \
|
|
||||||
images/prevpage \
|
|
||||||
images/sortparms
|
|
||||||
|
|
||||||
unix {
|
unix {
|
||||||
UI_DIR = .ui
|
UI_DIR = .ui
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#ifndef _SMALLUT_H_INCLUDED_
|
#ifndef _SMALLUT_H_INCLUDED_
|
||||||
#define _SMALLUT_H_INCLUDED_
|
#define _SMALLUT_H_INCLUDED_
|
||||||
/* @(#$Id: smallut.h,v 1.12 2006-01-19 12:01:43 dockes Exp $ (C) 2004 J.F.Dockes */
|
/* @(#$Id: smallut.h,v 1.13 2006-01-26 07:03:35 dockes Exp $ (C) 2004 J.F.Dockes */
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <list>
|
#include <list>
|
||||||
|
|
||||||
@ -25,12 +25,12 @@ extern string stringlistdisp(const list<string>& strs);
|
|||||||
* Token delimiter is " \t" except inside dquotes. dquote inside
|
* Token delimiter is " \t" except inside dquotes. dquote inside
|
||||||
* dquotes can be escaped with \ etc...
|
* dquotes can be escaped with \ etc...
|
||||||
*/
|
*/
|
||||||
extern bool stringToStrings(const string &s, std::list<string> &tokens);
|
extern bool stringToStrings(const string &s, list<string> &tokens);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Split input string. No handling of quoting
|
* Split input string. No handling of quoting
|
||||||
*/
|
*/
|
||||||
extern void stringToTokens(const string &s, std::list<string> &tokens,
|
extern void stringToTokens(const string &s, list<string> &tokens,
|
||||||
const string &delims = " \t");
|
const string &delims = " \t");
|
||||||
|
|
||||||
/** Convert string to boolean */
|
/** Convert string to boolean */
|
||||||
@ -40,6 +40,6 @@ extern bool stringToBool(const string &s);
|
|||||||
tab}) at beginning and end of input string */
|
tab}) at beginning and end of input string */
|
||||||
extern void trimstring(string &s, const char *ws = " \t");
|
extern void trimstring(string &s, const char *ws = " \t");
|
||||||
|
|
||||||
extern std::string escapeHtml(const std::string &in);
|
extern string escapeHtml(const string &in);
|
||||||
|
|
||||||
#endif /* _SMALLUT_H_INCLUDED_ */
|
#endif /* _SMALLUT_H_INCLUDED_ */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user