|
|
|
@ -43,20 +43,20 @@ Arguments:
|
|
|
|
|
<para>The full list of &DCOP; commands in the <constant>tellico</constant> object is shown below:</para>
|
|
|
|
|
|
|
|
|
|
<programlisting>
|
|
|
|
|
bool importTellico(QString file, QString action)
|
|
|
|
|
bool importBibtex(QString file, QString action)
|
|
|
|
|
bool importMODS(QString file, QString action)
|
|
|
|
|
bool importRIS(QString file, QString action)
|
|
|
|
|
bool exportXML(QString file)
|
|
|
|
|
bool exportZip(QString file)
|
|
|
|
|
bool exportBibtex(QString file)
|
|
|
|
|
bool exportHTML(QString file)
|
|
|
|
|
bool exportCSV(QString file)
|
|
|
|
|
bool exportPilotDB(QString file)
|
|
|
|
|
bool importTellico(TQString file, TQString action)
|
|
|
|
|
bool importBibtex(TQString file, TQString action)
|
|
|
|
|
bool importMODS(TQString file, TQString action)
|
|
|
|
|
bool importRIS(TQString file, TQString action)
|
|
|
|
|
bool exportXML(TQString file)
|
|
|
|
|
bool exportZip(TQString file)
|
|
|
|
|
bool exportBibtex(TQString file)
|
|
|
|
|
bool exportHTML(TQString file)
|
|
|
|
|
bool exportCSV(TQString file)
|
|
|
|
|
bool exportPilotDB(TQString file)
|
|
|
|
|
QValueList<long int> selectedEntries()
|
|
|
|
|
QValueList<long int> filteredEntries()
|
|
|
|
|
void openFile(QString file)
|
|
|
|
|
void setFilter(QString text)
|
|
|
|
|
void openFile(TQString file)
|
|
|
|
|
void setFilter(TQString text)
|
|
|
|
|
bool showEntry(long int id)
|
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
|
@ -85,12 +85,12 @@ The current open collection in &appname; may be exported to a file, in either Te
|
|
|
|
|
<programlisting>
|
|
|
|
|
long int addEntry()
|
|
|
|
|
bool removeEntry(long int entryID)
|
|
|
|
|
QStringList values(QString fieldName)
|
|
|
|
|
QStringList values(long int entryID,QString fieldName)
|
|
|
|
|
QStringList values(TQString fieldName)
|
|
|
|
|
QStringList values(long int entryID,TQString fieldName)
|
|
|
|
|
QStringList bibtexKeys()
|
|
|
|
|
QString bibtexKey(long int entryID)
|
|
|
|
|
bool setFieldValue(long int entryID,QString fieldName,QString value)
|
|
|
|
|
bool addFieldValue(long int entryID,QString fieldName,QString value)
|
|
|
|
|
TQString bibtexKey(long int entryID)
|
|
|
|
|
bool setFieldValue(long int entryID,TQString fieldName,TQString value)
|
|
|
|
|
bool addFieldValue(long int entryID,TQString fieldName,TQString value)
|
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
|
|
<para>
|
|
|
|
|