Home
last modified time | relevance | path

Searched refs:RawGenBook (Results 1 – 14 of 14) sorted by relevance

/dports/misc/xiphos/xiphos-4.2.1/src/main/
H A Dprayerlists.cc59 using sword::RawGenBook;
321 RawGenBook::createModule(path); in main_prayerlist_basic_create()
322 RawGenBook *book = new RawGenBook(path); in main_prayerlist_basic_create()
361 RawGenBook::createModule(path); in main_prayerlist_subject_create()
362 RawGenBook *book = new RawGenBook(path); in main_prayerlist_subject_create()
405 RawGenBook::createModule(path); in main_prayerlist_monthly_create()
406 RawGenBook *book = new RawGenBook(path); in main_prayerlist_monthly_create()
455 RawGenBook::createModule(path); in main_prayerlist_journal_create()
456 RawGenBook *book = new RawGenBook(path); in main_prayerlist_journal_create()
519 RawGenBook *book = new RawGenBook(path); in main_prayerlist_outlined_topic_create()
[all …]
H A Dsword_treekey.cc50 using sword::RawGenBook;
123 void setEntryText(RawGenBook *book, const gchar *text) in setEntryText()
/dports/misc/sword/sword-1.8.1/src/modules/genbook/rawgenbook/
H A Drawgenbook.cpp47 RawGenBook::RawGenBook(const char *ipath, const char *iname, const char *idesc, SWDisplay *idisp, S… in RawGenBook() function in RawGenBook
77 RawGenBook::~RawGenBook() { in ~RawGenBook()
87 bool RawGenBook::isWritable() const { in isWritable()
99 SWBuf &RawGenBook::getRawEntryBuf() const { in getRawEntryBuf()
134 void RawGenBook::setEntry(const char *inbuf, long len) { in setEntry()
155 void RawGenBook::linkEntry(const SWKey *inkey) { in linkEntry()
183 void RawGenBook::deleteEntry() { in deleteEntry()
189 char RawGenBook::createModule(const char *ipath) { in createModule()
212 SWKey *RawGenBook::createKey() const { in createKey()
218 bool RawGenBook::hasEntry(const SWKey *k) const { in hasEntry()
/dports/misc/sword/sword-1.8.1/bindings/swig/
H A Drawgenbook.i7 %extend sword::RawGenBook {
8 static sword::RawGenBook *castTo(sword::SWModule *o) { in castTo()
9 return dynamic_cast<sword::RawGenBook*>(o); in castTo()
/dports/misc/sword/sword-1.8.1/bindings/swig/package/
H A Drawgenbook.i7 %extend sword::RawGenBook {
8 static sword::RawGenBook *castTo(sword::SWModule *o) { in castTo()
9 return dynamic_cast<sword::RawGenBook*>(o); in castTo()
/dports/misc/sword/sword-1.8.1/utilities/
H A Daddgb.cpp49 using sword::RawGenBook;
94 RawGenBook::createModule(argv[2]); in main()
97 RawGenBook *book = new RawGenBook(argv[2]); in main()
H A Dgenbookutil.cpp88 void viewEntryText(RawGenBook *book) { in viewEntryText()
95 void setEntryText(RawGenBook *book) { in setEntryText()
167 RawGenBook::createModule(argv[1]); in main()
171 RawGenBook *book = new RawGenBook(argv[1]); in main()
H A Dxml2gbs.cpp43 using sword::RawGenBook;
105 RawGenBook * book = NULL; in processXML()
123 RawGenBook::createModule(modname); in processXML()
125 book = new RawGenBook(modname); in processXML()
H A Dimp2gbs.cpp233 RawGenBook *book; in main()
237 RawGenBook::createModule(outPath); in main()
239 book = new RawGenBook(outPath); in main()
/dports/misc/sword/sword-1.8.1/include/
H A Drawgenbook.h36 class SWDLLEXPORT RawGenBook : public SWGenBook {
44 RawGenBook(const char *ipath, const char *iname = 0, const char *idesc = 0,
48 virtual ~RawGenBook();
/dports/misc/sword/sword-1.8.1/tests/testsuite/
H A Dgbs_basic.sh10 ModDrv=RawGenBook
/dports/misc/sword/sword-1.8.1/bindings/swig/vstudio/
H A DSwigSword.csproj47 <Compile Include="RawGenBook.cs" />
/dports/misc/sword/sword-1.8.1/
H A DChangeLog512 Fixed bug in RawGenBook::setText where default size
1037 Fixed RawGenBook memory bugs
1073 Added SWGenBook, and RawGenBook general book support
/dports/misc/sword/sword-1.8.1/src/mgr/
H A Dswmgr.cpp1105 …newmod = new RawGenBook(datapath.c_str(), name, description.c_str(), 0, enc, direction, markup, la… in createModule()