conversion to the cmake building system

Signed-off-by: gregory guy <g-gregory@gmx.fr>
pull/1/head
gregory guy 5 years ago
parent df8cb58095
commit 6b2ab74c0b
No known key found for this signature in database
GPG Key ID: 6EFE0EF249A874C0

@ -0,0 +1,80 @@
############################################
# #
# Improvements and feedbacks are welcome #
# #
# This file is released under GPL >= 3 #
# #
############################################
cmake_minimum_required( VERSION 2.8 )
#### general package setup
project( kbibtex )
set( VERSION R14.1.0 )
#### include essential cmake modules
include( FindPkgConfig )
include( CheckFunctionExists )
include( CheckSymbolExists )
include( CheckIncludeFile )
include( CheckLibraryExists )
include( CheckCSourceCompiles )
include( CheckCXXSourceCompiles )
#### include our cmake modules
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
##### setup install paths
include( TDESetupPaths )
tde_setup_paths( )
##### optional stuff
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
##### user requested modules
option( BUILD_ALL "Build all" ON )
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
##### configure checks
include( ConfigureChecks.cmake )
###### global compiler settings
add_definitions( -DHAVE_CONFIG_H -UTQT_NO_ASCII_CAST )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
##### directories
add_subdirectory( src )
add_subdirectory( xslt )
tde_conditional_add_subdirectory( BUILD_DOC doc )
tde_conditional_add_subdirectory( BUILD_DOC man )
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
##### write configure files
configure_file( config.h.cmake config.h @ONLY )

@ -0,0 +1,51 @@
###########################################
# #
# Improvements and feedback are welcome #
# #
# This file is released under GPL >= 3 #
# #
###########################################
# required stuff
find_package( TQt )
find_package( TDE )
tde_setup_architecture_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
tde_setup_largefiles( )
##### check for gcc visibility support
if( WITH_GCC_VISIBILITY )
tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )
##### check for libxml-2.0
find_package( LibXml2 )
if( NOT LIBXML2_FOUND )
tde_message_fatal( "libxml-2.0 is required, but was not found on your system" )
endif( NOT LIBXML2_FOUND )
##### check for libxslt
find_package( LibXslt )
if( NOT LIBXSLT_FOUND )
tde_message_fatal( "libxslt is required, but was not found on your system" )
endif( NOT LIBXSLT_FOUND )
##### check for libyaz
pkg_search_module( LIBYAZ libyaz yaz )
if( LIBYAZ_FOUND )
set( HAVE_YAZ 1 )
else()
tde_message_fatal( "libyaz is required, but was not found on your system" )
endif( )

@ -0,0 +1,11 @@
#define VERSION "@VERSION@"
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
// Defined if you have libyaz
#cmakedefine HAVE_YAZ 1

@ -0,0 +1 @@
add_subdirectory( en )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION ${PROJECT_NAME} )

@ -0,0 +1,5 @@
INSTALL(
FILES ${PROJECT_NAME}.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,5 @@
file( GLOB _srcs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
if( _srcs )
tde_create_translation( LANG auto OUTPUT_NAME ${PROJECT_NAME} )
endif( )

@ -0,0 +1,128 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${LIBXML2_INCLUDE_DIR}
${LIBXSLT_INCLUDE_DIR}
${LIBYAZ_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
${LIBXML2_LIB_DIR}
${LIBXSLT_LIB_DIR}
${LIBYAZ_LIBRARY_DIRS}
)
##### kbibtex (executable)
tde_add_executable( ${PROJECT_NAME} AUTOMOC
SOURCES
kbibtexshell.cpp
main.cpp
LINK
tdecore-shared
tdeio-shared
tdeui-shared
tdeparts-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### libkbibtexpart (kpart)
tde_add_kpart( libkbibtexpart AUTOMOC
SOURCES
comment.cpp fileexporterdocbook5.cpp
commentwidget.cpp documentlistview.cpp
documentlistviewitem.cpp documentsourceview.cpp
documentwidget.cpp element.cpp
encoder.cpp encoderlatex.cpp
encoderxml.cpp entry.cpp
entryfield.cpp entrywidget.cpp
entrywidgetauthor.cpp entrywidgetexternal.cpp
entrywidgetkeyword.cpp entrywidgetmisc.cpp
entrywidgetother.cpp entrywidgetpublication.cpp
entrywidgetsource.cpp entrywidgettab.cpp
entrywidgettitle.cpp entrywidgetuserdefined.cpp
entrywidgetwarningsitem.cpp z3950connection.cpp
fieldlineedit.cpp fieldlistview.cpp
file.cpp fileexporter.cpp
fileexporterbibtex.cpp fileexporterris.cpp
fileexporterbibutils.cpp fileexporterexternal.cpp
fileexporterpdf.cpp fileexporterps.cpp
fileexporterrtf.cpp fileexportertoolchain.cpp
fileexporterxml.cpp fileexporterxslt.cpp
fileimporter.cpp fileimporterbibtex.cpp
fileimporterbibutils.cpp fileimporterexternal.cpp
fileimporterris.cpp idsuggestions.cpp
idsuggestionswidget.cpp kbibtex_part.cpp
macrowidget.cpp macro.cpp
mergeelements.cpp preamble.cpp
webqueryieeexplore.cpp preamblewidget.cpp
searchbar.cpp settings.cpp
settingsdlg.cpp settingsediting.cpp
settingsfileio.cpp settingsidsuggestions.cpp
settingskeyword.cpp settingssearchurl.cpp
settingsuserdefinedinput.cpp sidebar.cpp value.cpp
valuewidget.cpp webquery.cpp
webqueryamatex.cpp webqueryarxiv.cpp
webqueryciteseerx.cpp webquerybibsonomy.cpp
webquerycsb.cpp webquerycitebase.cpp
webquerydblp.cpp webqueryz3950.cpp
webquerygooglescholar.cpp webquerypubmed.cpp
webqueryspireshep.cpp webqueryzmath.cpp
xsltransform.cpp webquerysciencedirect.cpp
findduplicates.cpp settingsz3950.cpp
messagehandler.cpp iso6937converter.cpp
iso5426converter.cpp webquerymathscinet.cpp
LINK
tdecore-shared
tdeio-shared
tdeui-shared
tdeparts-shared
tdeutils-shared
katepartinterfaces-shared
tdetexteditor
${LIBXML2_LIBRARIES}
${LIBXSLT_LIBRARIES}
${LIBXSLT_EXSLT_LIBRARIES}
${LIBYAZ_LIBRARIES}
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES z3950-servers.cfg kbibtex_shell.rc
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
)
install(
FILES kbibtex_part.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
)
install(
FILES ${PROJECT_NAME}.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kbibtex_part.rc
DESTINATION ${DATA_INSTALL_DIR}/kbibtexpart
)

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <ntqstringlist.h>
#include <tqregexp.h>
#include <tqstringlist.h>
#include <comment.h>
#include <xsltransform.h>
#include "comment.h"
#include "xsltransform.h"
namespace BibTeX
{

@ -20,7 +20,7 @@
#ifndef BIBTEXCOMMENT_H
#define BIBTEXCOMMENT_H
#include <element.h>
#include "element.h"
namespace BibTeX
{

@ -17,17 +17,17 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlabel.h>
#include <ntqmultilineedit.h>
#include <ntqlayout.h>
#include <ntqcheckbox.h>
#include <tqlabel.h>
#include <tqmultilineedit.h>
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <kdialogbase.h>
#include <tdeglobalsettings.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <comment.h>
#include <element.h>
#include "comment.h"
#include "element.h"
#include "commentwidget.h"

@ -20,10 +20,10 @@
#ifndef COMMENTWIDGET_H
#define COMMENTWIDGET_H
#include <ntqwidget.h>
#include <ntqdialog.h>
#include <tqwidget.h>
#include <tqdialog.h>
#include <comment.h>
#include "comment.h"
class TQMultiLineEdit;
class TQCheckBox;

@ -21,17 +21,17 @@
#include <config.h>
#endif
#include <ntqevent.h>
#include <ntqdragobject.h>
#include <ntqfile.h>
#include <ntqvaluelist.h>
#include <ntqcursor.h>
#include <ntqbuffer.h>
#include <ntqlistview.h>
#include <ntqclipboard.h>
#include <ntqheader.h>
#include <ntqtextstream.h>
#include <ntqtimer.h>
#include <tqevent.h>
#include <tqdragobject.h>
#include <tqfile.h>
#include <tqvaluelist.h>
#include <tqcursor.h>
#include <tqbuffer.h>
#include <tqlistview.h>
#include <tqclipboard.h>
#include <tqheader.h>
#include <tqtextstream.h>
#include <tqtimer.h>
#include <tdeapplication.h>
#include <tdeio/netaccess.h>
@ -46,24 +46,24 @@
#include <kprogress.h>
#include <kiconloader.h>
#include <kbibtex_part.h>
#include <documentlistviewitem.h>
#include <file.h>
#include <fileimporterbibutils.h>
#include <fileimporterris.h>
#include <fileimporterbibtex.h>
#include <fileexporterbibtex.h>
#include <element.h>
#include <entry.h>
#include <macro.h>
#include <comment.h>
#include <preamblewidget.h>
#include <preamble.h>
#include <entrywidget.h>
#include <commentwidget.h>
#include <macrowidget.h>
#include <settings.h>
#include <encoderlatex.h>
#include "kbibtex_part.h"
#include "documentlistviewitem.h"
#include "file.h"
#include "fileimporterbibutils.h"
#include "fileimporterris.h"
#include "fileimporterbibtex.h"
#include "fileexporterbibtex.h"
#include "element.h"
#include "entry.h"
#include "macro.h"
#include "comment.h"
#include "preamblewidget.h"
#include "preamble.h"
#include "entrywidget.h"
#include "commentwidget.h"
#include "macrowidget.h"
#include "settings.h"
#include "encoderlatex.h"
#include "documentlistview.h"

@ -23,9 +23,9 @@
#include <tdelistview.h>
#include <kxmlguifactory.h>
#include <fileimporter.h>
#include <settings.h>
#include <file.h>
#include "fileimporter.h"
#include "settings.h"
#include "file.h"
class TQString;
class KURL;

@ -17,16 +17,16 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlistview.h>
#include <ntqpainter.h>
#include <ntqpen.h>
#include <tqlistview.h>
#include <tqpainter.h>
#include <tqpen.h>
#include <tdelocale.h>
#include "documentlistviewitem.h"
#include "entry.h"
#include "comment.h"
#include <preamble.h>
#include "preamble.h"
#include "macro.h"
namespace KBibTeX

@ -22,7 +22,7 @@
#include <tdelistview.h>
#include <element.h>
#include "element.h"
#include "documentlistview.h"
namespace KBibTeX

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqbuffer.h>
#include <ntqlayout.h>
#include <ntqfile.h>
#include <tqbuffer.h>
#include <tqlayout.h>
#include <tqfile.h>
#include <klibloader.h>
#include <kxmlguifactory.h>
@ -38,9 +38,9 @@
#include <tdetexteditor/editorchooser.h>
#include <tdetexteditor/undointerface.h>
#include <fileexporterbibtex.h>
#include <fileimporterbibtex.h>
#include <settings.h>
#include "fileexporterbibtex.h"
#include "fileimporterbibtex.h"
#include "settings.h"
#include "documentsourceview.h"
namespace KBibTeX

@ -20,9 +20,9 @@
#ifndef KBIBTEXDOCUMENTSOURCEVIEW_H
#define KBIBTEXDOCUMENTSOURCEVIEW_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <file.h>
#include "file.h"
#include <tdetexteditor/editinterface.h>
#include <kate/view.h>

@ -19,19 +19,19 @@
***************************************************************************/
#include <cmath>
#include <ntqlayout.h>
#include <ntqfile.h>
#include <ntqdragobject.h>
#include <ntqregexp.h>
#include <ntqsplitter.h>
#include <ntqurl.h>
#include <ntqtextedit.h>
#include <ntqprogressdialog.h>
#include <ntqbuffer.h>
#include <ntqtooltip.h>
#include <ntqapplication.h>
#include <ntqpushbutton.h>
#include <ntqfileinfo.h>
#include <tqlayout.h>
#include <tqfile.h>
#include <tqdragobject.h>
#include <tqregexp.h>
#include <tqsplitter.h>
#include <tqurl.h>
#include <tqtextedit.h>
#include <tqprogressdialog.h>
#include <tqbuffer.h>
#include <tqtooltip.h>
#include <tqapplication.h>
#include <tqpushbutton.h>
#include <tqfileinfo.h>
#include <kdebug.h>
#include <tdelocale.h>
@ -53,39 +53,39 @@
#include <config.h>
#endif
#include <searchbar.h>
#include <sidebar.h>
#include <documentlistview.h>
#include <documentlistviewitem.h>
#include <documentsourceview.h>
#include <macrowidget.h>
#include <preamblewidget.h>
#include <commentwidget.h>
#include <entrywidget.h>
#include <fileimporterbibtex.h>
#include <fileimporterbibutils.h>
#include <fileimporterris.h>
#include <fileexporterbibtex.h>
#include <fileexporterbibutils.h>
#include <fileexporterris.h>
#include <fileexporterxml.h>
#include <fileexporterrtf.h>
#include <fileexporterdocbook5.h>
#include <fileexporterpdf.h>
#include <fileexporterps.h>
#include <fileexporterxslt.h>
#include <fileimporterexternal.h>
#include <fileexporterexternal.h>
#include <xsltransform.h>
#include <entry.h>
#include <entryfield.h>
#include <comment.h>
#include <macro.h>
#include <preamble.h>
#include <settings.h>
#include <webquery.h>
#include <mergeelements.h>
#include <idsuggestions.h>
#include "searchbar.h"
#include "sidebar.h"
#include "documentlistview.h"
#include "documentlistviewitem.h"
#include "documentsourceview.h"
#include "macrowidget.h"
#include "preamblewidget.h"
#include "commentwidget.h"
#include "entrywidget.h"
#include "fileimporterbibtex.h"
#include "fileimporterbibutils.h"
#include "fileimporterris.h"
#include "fileexporterbibtex.h"
#include "fileexporterbibutils.h"
#include "fileexporterris.h"
#include "fileexporterxml.h"
#include "fileexporterrtf.h"
#include "fileexporterdocbook5.h"
#include "fileexporterpdf.h"
#include "fileexporterps.h"
#include "fileexporterxslt.h"
#include "fileimporterexternal.h"
#include "fileexporterexternal.h"
#include "xsltransform.h"
#include "entry.h"
#include "entryfield.h"
#include "comment.h"
#include "macro.h"
#include "preamble.h"
#include "settings.h"
#include "webquery.h"
#include "mergeelements.h"
#include "idsuggestions.h"
#include "documentwidget.h"

@ -20,13 +20,13 @@
#ifndef KBIBTEXDOCUMENTWIDGET_H
#define KBIBTEXDOCUMENTWIDGET_H
#include <ntqtabwidget.h>
#include <tqtabwidget.h>
#include <kdirwatch.h>
#include <fileimporter.h>
#include <file.h>
#include <settings.h>
#include "fileimporter.h"
#include "file.h"
#include "settings.h"
class TQIODevice;
class TQProgressDialog;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstring.h>
#include <tqstring.h>
#include <xsltransform.h>
#include "xsltransform.h"
#include "element.h"
namespace BibTeX

@ -20,8 +20,8 @@
#ifndef BIBTEXELEMENT_H
#define BIBTEXELEMENT_H
#include <file.h>
#include <entryfield.h>
#include "file.h"
#include "entryfield.h"
class TQString;

@ -20,7 +20,7 @@
#ifndef BIBTEXENCODER_H
#define BIBTEXENCODER_H
#include <entryfield.h>
#include "entryfield.h"
class TQString;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstring.h>
#include <ntqapplication.h>
#include <ntqregexp.h>
#include <tqstring.h>
#include <tqapplication.h>
#include <tqregexp.h>
#include "encoderlatex.h"

@ -20,11 +20,11 @@
#ifndef ENCODERLATEX_H
#define ENCODERLATEX_H
#include <ntqvaluelist.h>
#include <ntqregexp.h>
#include <tqvaluelist.h>
#include <tqregexp.h>
#include <encoder.h>
#include <entry.h>
#include "encoder.h"
#include "entry.h"
class TQString;

@ -17,7 +17,7 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <tqregexp.h>
#include "encoderxml.h"

@ -20,10 +20,10 @@
#ifndef BIBTEXENCODERXML_H
#define BIBTEXENCODERXML_H
#include <ntqptrlist.h>
#include <ntqregexp.h>
#include <tqptrlist.h>
#include <tqregexp.h>
#include <encoder.h>
#include "encoder.h"
class TQString;
class TQRegExp;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <ntqregexp.h>
#include <entry.h>
#include <file.h>
#include <xsltransform.h>
#include <entryfield.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include "entry.h"
#include "file.h"
#include "xsltransform.h"
#include "entryfield.h"
#define max(a,b) ((a)>(b)?(a):(b))

@ -20,11 +20,11 @@
#ifndef BIBTEXBIBTEXENTRY_H
#define BIBTEXBIBTEXENTRY_H
#include <ntqvaluelist.h>
#include <ntqstringlist.h>
#include <tqvaluelist.h>
#include <tqstringlist.h>
#include <element.h>
#include <entryfield.h>
#include "element.h"
#include "entryfield.h"
class TQString;
class TQStringList;

@ -20,9 +20,9 @@
#ifndef BIBTEXBIBTEXENTRYFIELD_H
#define BIBTEXBIBTEXENTRYFIELD_H
#include <ntqstring.h>
#include <tqstring.h>
#include <value.h>
#include "value.h"
namespace BibTeX
{

@ -17,19 +17,19 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqcheckbox.h>
#include <ntqtooltip.h>
#include <ntqwhatsthis.h>
#include <ntqlistview.h>
#include <ntqlabel.h>
#include <ntqregexp.h>
#include <ntqpushbutton.h>
#include <ntqpopupmenu.h>
#include <ntqtabwidget.h>
#include <ntqcombobox.h>
#include <ntqtimer.h>
#include <ntqlineedit.h>
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <tqlistview.h>
#include <tqlabel.h>
#include <tqregexp.h>
#include <tqpushbutton.h>
#include <tqpopupmenu.h>
#include <tqtabwidget.h>
#include <tqcombobox.h>
#include <tqtimer.h>
#include <tqlineedit.h>
#include <tdelocale.h>
#include <kdebug.h>
@ -39,23 +39,23 @@
#include <tdeconfig.h>
#include <twin.h>
#include <entry.h>
#include <entryfield.h>
#include <file.h>
#include <settings.h>
#include <entrywidgettab.h>
#include <entrywidgettitle.h>
#include <entrywidgetauthor.h>
#include <entrywidgetkeyword.h>
#include <entrywidgetpublication.h>
#include <entrywidgetmisc.h>
#include <entrywidgetexternal.h>
#include <entrywidgetuserdefined.h>
#include <entrywidgetother.h>
#include <entrywidgetwarningsitem.h>
#include <fieldlistview.h>
#include <idsuggestions.h>
#include <webqueryarxiv.h>
#include "entry.h"
#include "entryfield.h"
#include "file.h"
#include "settings.h"
#include "entrywidgettab.h"
#include "entrywidgettitle.h"
#include "entrywidgetauthor.h"
#include "entrywidgetkeyword.h"
#include "entrywidgetpublication.h"
#include "entrywidgetmisc.h"
#include "entrywidgetexternal.h"
#include "entrywidgetuserdefined.h"
#include "entrywidgetother.h"
#include "entrywidgetwarningsitem.h"
#include "fieldlistview.h"
#include "idsuggestions.h"
#include "webqueryarxiv.h"
#include "entrywidget.h"
namespace KBibTeX

@ -20,16 +20,16 @@
#ifndef KBIBTEXENTRYWIDGET_H
#define KBIBTEXENTRYWIDGET_H
#include <ntqwidget.h>
#include <ntqdialog.h>
#include <ntqvaluelist.h>
#include <ntqmap.h>
#include <tqwidget.h>
#include <tqdialog.h>
#include <tqvaluelist.h>
#include <tqmap.h>
#include <kdialogbase.h>
#include <entry.h>
#include <entrywidgetsource.h>
#include <webquery.h>
#include "entry.h"
#include "entrywidgetsource.h"
#include "webquery.h"
class TQComboBox;
class TQLineEdit;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <kdialog.h>
#include <tdelocale.h>
#include <fieldlistview.h>
#include <entrywidgetwarningsitem.h>
#include "fieldlistview.h"
#include "entrywidgetwarningsitem.h"
#include "entrywidgetauthor.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETAUTHOR_H
#define KBIBTEXENTRYWIDGETAUTHOR_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class TQWidget;
class TQScrollView;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqtooltip.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqtooltip.h>
#include <kpushbutton.h>
#include <kdialog.h>
@ -30,8 +30,8 @@
#include <kiconloader.h>
#include <tdepopupmenu.h>
#include <fieldlineedit.h>
#include <settings.h>
#include "fieldlineedit.h"
#include "settings.h"
#include "entrywidgetexternal.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETEXTERNAL_H
#define KBIBTEXENTRYWIDGETEXTERNAL_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class KPushButton;
class KURL;

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqregexp.h>
#include <ntqpushbutton.h>
#include <ntqtooltip.h>
#include <ntqtimer.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqregexp.h>
#include <tqpushbutton.h>
#include <tqtooltip.h>
#include <tqtimer.h>
#include <tqlabel.h>
#include <kdialog.h>
#include <tdelocale.h>
@ -33,7 +33,7 @@
#include <kguiitem.h>
#include <kdebug.h>
#include <settings.h>
#include "settings.h"
#include "entrywidgetkeyword.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETKEYWORD_H
#define KBIBTEXENTRYWIDGETKEYWORD_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class TQPushButton;
class TDEListView;

@ -17,15 +17,15 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <kdialog.h>
#include <tdelocale.h>
#include <fieldlineedit.h>
#include <value.h>
#include <entryfield.h>
#include "fieldlineedit.h"
#include "value.h"
#include "entryfield.h"
#include "entrywidgetmisc.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETMISC_H
#define KBIBTEXENTRYWIDGETMISC_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
namespace KBibTeX
{

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstringlist.h>
#include <ntqlayout.h>
#include <ntqtooltip.h>
#include <ntqlabel.h>
#include <ntqwhatsthis.h>
#include <tqstringlist.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqlabel.h>
#include <tqwhatsthis.h>
#include <kdialog.h>
#include <tdeapplication.h>
@ -32,8 +32,8 @@
#include <kpushbutton.h>
#include <klineedit.h>
#include <fieldlineedit.h>
#include <settings.h>
#include "fieldlineedit.h"
#include "settings.h"
#include "entrywidgetother.h"
namespace KBibTeX

@ -22,7 +22,7 @@
#include <kurl.h>
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class TQPushButton;
class TDEListView;

@ -17,21 +17,21 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqregexp.h>
#include <ntqpushbutton.h>
#include <ntqpopupmenu.h>
#include <ntqtooltip.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqregexp.h>
#include <tqpushbutton.h>
#include <tqpopupmenu.h>
#include <tqtooltip.h>
#include <kurl.h>
#include <kiconloader.h>
#include <kdialog.h>
#include <tdelocale.h>
#include <settings.h>
#include <fieldlineedit.h>
#include <entrywidgetwarningsitem.h>
#include "settings.h"
#include "fieldlineedit.h"
#include "entrywidgetwarningsitem.h"
#include "entrywidgetpublication.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETPUBLICATION_H
#define KBIBTEXENTRYWIDGETPUBLICATION_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class TQPushButton;

@ -17,19 +17,19 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqtextedit.h>
#include <ntqbuffer.h>
#include <tqlayout.h>
#include <tqtextedit.h>
#include <tqbuffer.h>
#include <kdialog.h>
#include <kpushbutton.h>
#include <tdelocale.h>
#include <tdeglobalsettings.h>
#include <fileexporterbibtex.h>
#include <fileimporterbibtex.h>
#include <entry.h>
#include <settings.h>
#include "fileexporterbibtex.h"
#include "fileimporterbibtex.h"
#include "entry.h"
#include "settings.h"
#include "entrywidgetsource.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETSOURCE_H
#define KBIBTEXENTRYWIDGETSOURCE_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
class TQTextEdit;

@ -19,9 +19,9 @@
***************************************************************************/
#include <tdelocale.h>
#include <entry.h>
#include <entrywidgetwarningsitem.h>
#include <fieldlineedit.h>
#include "entry.h"
#include "entrywidgetwarningsitem.h"
#include "fieldlineedit.h"
#include "entrywidgettab.h"
namespace KBibTeX

@ -20,10 +20,10 @@
#ifndef KBIBTEXENTRYWIDGETTAB_H
#define KBIBTEXENTRYWIDGETTAB_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <entry.h>
#include <file.h>
#include "entry.h"
#include "file.h"
class TQListView;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <kdialog.h>
#include <tdelocale.h>
#include <fieldlineedit.h>
#include <value.h>
#include <entryfield.h>
#include "fieldlineedit.h"
#include "value.h"
#include "entryfield.h"
#include "entrywidgettitle.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETTITLE_H
#define KBIBTEXENTRYWIDGETTITLE_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
namespace KBibTeX
{

@ -17,15 +17,15 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <kdebug.h>
#include <kdialog.h>
#include <kiconloader.h>
#include <tdelocale.h>
#include <settings.h>
#include "settings.h"
#include "entrywidgetuserdefined.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETUSERDEFINED_H
#define KBIBTEXENTRYWIDGETUSERDEFINED_H
#include <entrywidgettab.h>
#include "entrywidgettab.h"
namespace KBibTeX
{

@ -20,7 +20,7 @@
#ifndef KBIBTEXENTRYWIDGETWARNINGSITEM_H
#define KBIBTEXENTRYWIDGETWARNINGSITEM_H
#include <ntqlistview.h>
#include <tqlistview.h>
class TQString;

@ -17,22 +17,22 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqpushbutton.h>
#include <ntqlayout.h>
#include <ntqtooltip.h>
#include <ntqwhatsthis.h>
#include <ntqtextedit.h>
#include <tqpushbutton.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <tqtextedit.h>
#include <kdialog.h>
#include <tdelocale.h>
#include <kiconloader.h>
#include <klineedit.h>
#include <element.h>
#include <entry.h>
#include <settings.h>
#include <value.h>
#include <valuewidget.h>
#include "element.h"
#include "entry.h"
#include "settings.h"
#include "value.h"
#include "valuewidget.h"
#include "fieldlineedit.h"
namespace KBibTeX

@ -20,10 +20,10 @@
#ifndef KBIBTEXFIELDLINEEDIT_H
#define KBIBTEXFIELDLINEEDIT_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <entryfield.h>
#include <value.h>
#include "entryfield.h"
#include "value.h"
class KLineEdit;
class TQTextEdit;

@ -17,15 +17,15 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstring.h>
#include <ntqregexp.h>
#include <ntqlayout.h>
#include <ntqheader.h>
#include <ntqtimer.h>
#include <ntqtooltip.h>
#include <ntqwhatsthis.h>
#include <ntqpushbutton.h>
#include <ntqcheckbox.h>
#include <tqstring.h>
#include <tqregexp.h>
#include <tqlayout.h>
#include <tqheader.h>
#include <tqtimer.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <tqpushbutton.h>
#include <tqcheckbox.h>
#include <tdelistview.h>
#include <klineedit.h>
@ -34,9 +34,9 @@
#include <kdebug.h>
#include <kiconloader.h>
#include <value.h>
#include <valuewidget.h>
#include <settings.h>
#include "value.h"
#include "valuewidget.h"
#include "settings.h"
#include "fieldlistview.h"
namespace KBibTeX

@ -20,10 +20,10 @@
#ifndef KBIBTEXFIELDLISTVIEW_H
#define KBIBTEXFIELDLISTVIEW_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <value.h>
#include <entryfield.h>
#include "value.h"
#include "entryfield.h"
class TQString;
class TDEListView;

@ -17,19 +17,19 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqtextstream.h>
#include <ntqiodevice.h>
#include <ntqstringlist.h>
#include <ntqregexp.h>
#include <settings.h>
#include <file.h>
#include <entry.h>
#include <element.h>
#include <macro.h>
#include <comment.h>
#include <fileexporter.h>
#include <tqfile.h>
#include <tqtextstream.h>
#include <tqiodevice.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include "settings.h"
#include "file.h"
#include "entry.h"
#include "element.h"
#include "macro.h"
#include "comment.h"
#include "fileexporter.h"
namespace BibTeX
{

@ -20,10 +20,10 @@
#ifndef BIBTEXFILE_H
#define BIBTEXFILE_H
#include <ntqobject.h>
#include <ntqvaluelist.h>
#include <tqobject.h>
#include <tqvaluelist.h>
#include <entryfield.h>
#include "entryfield.h"
class TQDir;
class TQString;

@ -20,10 +20,10 @@
#ifndef BIBTEXFILEEXPORTER_H
#define BIBTEXFILEEXPORTER_H
#include <ntqobject.h>
#include <ntqmutex.h>
#include <tqobject.h>
#include <tqmutex.h>
#include <file.h>
#include "file.h"
class TQIODevice;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <file.h>
#include <element.h>
#include <entry.h>
#include <macro.h>
#include <preamble.h>
#include <value.h>
#include <comment.h>
#include <encoderlatex.h>
#include "file.h"
#include "element.h"
#include "entry.h"
#include "macro.h"
#include "preamble.h"
#include "value.h"
#include "comment.h"
#include "encoderlatex.h"
#include "fileexporterbibtex.h"

@ -22,9 +22,9 @@
#include <iconv.h>
#include <element.h>
#include <entryfield.h>
#include <fileexporter.h>
#include "element.h"
#include "entryfield.h"
#include "fileexporter.h"
class TQChar;

@ -17,15 +17,15 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqdir.h>
#include <ntqstringlist.h>
#include <ntqapplication.h>
#include <ntqbuffer.h>
#include <ntqprocess.h>
#include <ntqwaitcondition.h>
#include <fileexporterbibtex.h>
#include <tqfile.h>
#include <tqdir.h>
#include <tqstringlist.h>
#include <tqapplication.h>
#include <tqbuffer.h>
#include <tqprocess.h>
#include <tqwaitcondition.h>
#include "fileexporterbibtex.h"
#include "fileexporterbibutils.h"
namespace BibTeX

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERBIBUTILS_H
#define BIBTEXFILEEXPORTERBIBUTILS_H
#include <fileexporter.h>
#include "fileexporter.h"
class TQProcess;
class TQBuffer;

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqstringlist.h>
#include <tqfile.h>
#include <tqstringlist.h>
#include <file.h>
#include <fileexporterbibtex.h>
#include "file.h"
#include "fileexporterbibtex.h"
#include "fileexporterdocbook5.h"
namespace BibTeX

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERDOCBOOK5_H
#define BIBTEXFILEEXPORTERDOCBOOK5_H
#include <fileexportertoolchain.h>
#include "fileexportertoolchain.h"
namespace BibTeX
{

@ -17,13 +17,13 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqprocess.h>
#include <ntqwaitcondition.h>
#include <ntqapplication.h>
#include <ntqbuffer.h>
#include <tqprocess.h>
#include <tqwaitcondition.h>
#include <tqapplication.h>
#include <tqbuffer.h>
#include <fileexporterbibtex.h>
#include <settings.h>
#include "fileexporterbibtex.h"
#include "settings.h"
#include "fileexporterexternal.h"
namespace BibTeX

@ -20,8 +20,8 @@
#ifndef BIBTEXFILEEXPORTEREXTERNAL_H
#define BIBTEXFILEEXPORTEREXTERNAL_H
#include <fileexporter.h>
#include <settings.h>
#include "fileexporter.h"
#include "settings.h"
class TQWaitCondition;
class TQProcess;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqstringlist.h>
#include <ntqurl.h>
#include <settings.h>
#include <element.h>
#include <entry.h>
#include <fileexporterbibtex.h>
#include <tqfile.h>
#include <tqstringlist.h>
#include <tqurl.h>
#include "settings.h"
#include "element.h"
#include "entry.h"
#include "fileexporterbibtex.h"
#include "fileexporterpdf.h"
namespace BibTeX

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERPDF_H
#define BIBTEXFILEEXPORTERPDF_H
#include <fileexportertoolchain.h>
#include "fileexportertoolchain.h"
namespace BibTeX
{

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqstringlist.h>
#include <tqfile.h>
#include <tqstringlist.h>
#include <settings.h>
#include <element.h>
#include <fileexporterbibtex.h>
#include "settings.h"
#include "element.h"
#include "fileexporterbibtex.h"
#include "fileexporterps.h"
namespace BibTeX

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERPS_H
#define BIBTEXFILEEXPORTERPS_H
#include <fileexportertoolchain.h>
#include "fileexportertoolchain.h"
class TQStringList;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <tqregexp.h>
#include <entry.h>
#include "entry.h"
#include "fileexporterris.h"

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERRIS_H
#define BIBTEXFILEEXPORTERRIS_H
#include <fileexporter.h>
#include "fileexporter.h"
namespace BibTeX
{

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqstringlist.h>
#include <tqfile.h>
#include <tqstringlist.h>
#include <settings.h>
#include <element.h>
#include <fileexporterbibtex.h>
#include "settings.h"
#include "element.h"
#include "fileexporterbibtex.h"
#include "fileexporterrtf.h"
namespace BibTeX

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERRTF_H
#define BIBTEXFILEEXPORTERRTF_H
#include <fileexportertoolchain.h>
#include "fileexportertoolchain.h"
namespace BibTeX
{

@ -18,10 +18,10 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqprocess.h>
#include <ntqwaitcondition.h>
#include <ntqapplication.h>
#include <ntqstringlist.h>
#include <tqprocess.h>
#include <tqwaitcondition.h>
#include <tqapplication.h>
#include <tqstringlist.h>
#include "fileexportertoolchain.h"

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERTOOLCHAIN_H
#define BIBTEXFILEEXPORTERTOOLCHAIN_H
#include <fileexporter.h>
#include "fileexporter.h"
class TQString;
class TQWaitCondition;

@ -17,15 +17,15 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <ntqstringlist.h>
#include <file.h>
#include <element.h>
#include <entry.h>
#include <encoderxml.h>
#include <macro.h>
#include <comment.h>
#include <tqregexp.h>
#include <tqstringlist.h>
#include "file.h"
#include "element.h"
#include "entry.h"
#include "encoderxml.h"
#include "macro.h"
#include "comment.h"
#include "fileexporterxml.h"
namespace BibTeX

@ -20,9 +20,9 @@
#ifndef BIBTEXFILEEXPORTERXML_H
#define BIBTEXFILEEXPORTERXML_H
#include <element.h>
#include <fileexporter.h>
#include <value.h>
#include "element.h"
#include "fileexporter.h"
#include "value.h"
namespace BibTeX
{

@ -17,10 +17,10 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqbuffer.h>
#include <tqbuffer.h>
#include <fileexporterxml.h>
#include <xsltransform.h>
#include "fileexporterxml.h"
#include "xsltransform.h"
#include "fileexporterxslt.h"

@ -20,7 +20,7 @@
#ifndef BIBTEXFILEEXPORTERXSLT_H
#define BIBTEXFILEEXPORTERXSLT_H
#include <fileexporter.h>
#include "fileexporter.h"
namespace BibTeX
{

@ -17,7 +17,7 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqbuffer.h>
#include <tqbuffer.h>
#include "fileimporter.h"

@ -20,8 +20,8 @@
#ifndef BIBTEXFILEIMPORTER_H
#define BIBTEXFILEIMPORTER_H
#include <ntqobject.h>
#include <ntqmutex.h>
#include <tqobject.h>
#include <tqmutex.h>
class TQIODevice;

@ -17,18 +17,18 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqiodevice.h>
#include <ntqregexp.h>
#include <ntqapplication.h>
#include <file.h>
#include <comment.h>
#include <macro.h>
#include <preamble.h>
#include <entry.h>
#include <element.h>
#include <encoderlatex.h>
#include <value.h>
#include <tqiodevice.h>
#include <tqregexp.h>
#include <tqapplication.h>
#include "file.h"
#include "comment.h"
#include "macro.h"
#include "preamble.h"
#include "entry.h"
#include "element.h"
#include "encoderlatex.h"
#include "value.h"
#include "fileimporterbibtex.h"

@ -22,8 +22,8 @@
#include <iconv.h>
#include <fileimporter.h>
#include <entryfield.h>
#include "fileimporter.h"
#include "entryfield.h"
namespace BibTeX
{

@ -19,16 +19,16 @@
***************************************************************************/
#include <stdio.h>
#include <ntqfile.h>
#include <ntqdir.h>
#include <ntqprocess.h>
#include <ntqstringlist.h>
#include <ntqbuffer.h>
#include <ntqwaitcondition.h>
#include <ntqapplication.h>
#include <file.h>
#include <encoderlatex.h>
#include <tqfile.h>
#include <tqdir.h>
#include <tqprocess.h>
#include <tqstringlist.h>
#include <tqbuffer.h>
#include <tqwaitcondition.h>
#include <tqapplication.h>
#include "file.h"
#include "encoderlatex.h"
#include "fileimporterbibutils.h"
namespace BibTeX

@ -20,9 +20,9 @@
#ifndef BIBTEXFILEIMPORTBIBUTILS_H
#define BIBTEXFILEIMPORTBIBUTILS_H
#include <file.h>
#include <fileimporter.h>
#include <fileimporterbibtex.h>
#include "file.h"
#include "fileimporter.h"
#include "fileimporterbibtex.h"
class TQBuffer;

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqprocess.h>
#include <ntqwaitcondition.h>
#include <ntqapplication.h>
#include <ntqbuffer.h>
#include <tqprocess.h>
#include <tqwaitcondition.h>
#include <tqapplication.h>
#include <tqbuffer.h>
#include <fileimporterbibtex.h>
#include "fileimporterbibtex.h"
#include "fileimporterexternal.h"
namespace BibTeX

@ -20,9 +20,9 @@
#ifndef BIBTEXFILEIMPORTEREXTERNAL_H
#define BIBTEXFILEIMPORTEREXTERNAL_H
#include <fileimporter.h>
#include <file.h>
#include <settings.h>
#include "fileimporter.h"
#include "file.h"
#include "settings.h"
class TQWaitCondition;
class TQProcess;

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqapplication.h>
#include <ntqtextstream.h>
#include <ntqregexp.h>
#include <tqapplication.h>
#include <tqtextstream.h>
#include <tqregexp.h>
#include <entry.h>
#include "entry.h"
#include "fileimporterris.h"

@ -20,8 +20,8 @@
#ifndef BIBTEXFILEIMPORTERRIS_H
#define BIBTEXFILEIMPORTERRIS_H
#include <fileimporter.h>
#include <entry.h>
#include "fileimporter.h"
#include "entry.h"
class TQTextStream;

@ -19,21 +19,21 @@
***************************************************************************/
#include <math.h>
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <ntqregexp.h>
#include <ntqapplication.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include <tqapplication.h>
#include <kdebug.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <kprogress.h>
#include <element.h>
#include <entry.h>
#include <file.h>
#include <preamble.h>
#include <macro.h>
#include "element.h"
#include "entry.h"
#include "file.h"
#include "preamble.h"
#include "macro.h"
#include "findduplicates.h"
#define max(a,b) ((a)>(b)?(a):(b))

@ -20,7 +20,7 @@
#ifndef KBIBTEXFINDDUPLICATES_H
#define KBIBTEXFINDDUPLICATES_H
#include <ntqobject.h>
#include <tqobject.h>
class KProgressDialog;
class TQWidget;

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <tqregexp.h>
#include <tdelocale.h>
#include <encoderlatex.h>
#include <file.h>
#include <settings.h>
#include <entry.h>
#include "encoderlatex.h"
#include "file.h"
#include "settings.h"
#include "entry.h"
#include "idsuggestions.h"
namespace KBibTeX

@ -20,10 +20,10 @@
#ifndef KBIBTEXIDSUGGESTIONS_H
#define KBIBTEXIDSUGGESTIONS_H
#include <ntqstringlist.h>
#include <tqstringlist.h>
#include <file.h>
#include <entry.h>
#include "file.h"
#include "entry.h"
namespace KBibTeX
{

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqspinbox.h>
#include <ntqlabel.h>
#include <ntqcheckbox.h>
#include <ntqobjectlist.h>
#include <ntqscrollview.h>
#include <tqlayout.h>
#include <tqspinbox.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqobjectlist.h>
#include <tqscrollview.h>
#include <tdeglobalsettings.h>
#include <klineedit.h>
@ -33,9 +33,9 @@
#include <kiconloader.h>
#include <tdelocale.h>
#include <idsuggestions.h>
#include <fileimporter.h>
#include <fileimporterbibtex.h>
#include "idsuggestions.h"
#include "fileimporter.h"
#include "fileimporterbibtex.h"
#include "idsuggestionswidget.h"
#define min(a,b) ((a)>(b)?(b):(a))

@ -20,8 +20,8 @@
#ifndef KBIBTEXIDSUGGESTIONSWIDGET_H
#define KBIBTEXIDSUGGESTIONSWIDGET_H
#include <ntqwidget.h>
#include <ntqdialog.h>
#include <tqwidget.h>
#include <tqdialog.h>
class TQCheckBox;
class TQScrollView;

@ -33,7 +33,7 @@
#include "iso5426converter.h"
#include <kdebug.h>
#include <ntqstring.h>
#include <tqstring.h>
using KBibTeX::Iso5426Converter;

@ -27,7 +27,7 @@ class TQCString;
class TQString;
class TQChar;
#include <ntqglobal.h>
#include <tqglobal.h>
namespace KBibTeX {

@ -33,7 +33,7 @@
#include "iso6937converter.h"
#include <kdebug.h>
#include <ntqstring.h>
#include <tqstring.h>
using KBibTeX::Iso6937Converter;

@ -20,18 +20,18 @@
#include <string>
#include <fcntl.h>
#include <ntqstring.h>
#include <ntqsplitter.h>
#include <ntqtimer.h>
#include <ntqvaluelist.h>
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <ntqbuffer.h>
#include <ntqtoolbutton.h>
#include <ntqtabwidget.h>
#include <ntqlabel.h>
#include <ntqtextedit.h>
#include <ntqclipboard.h>
#include <tqstring.h>
#include <tqsplitter.h>
#include <tqtimer.h>
#include <tqvaluelist.h>
#include <tqlayout.h>
#include <tqlineedit.h>
#include <tqbuffer.h>
#include <tqtoolbutton.h>
#include <tqtabwidget.h>
#include <tqlabel.h>
#include <tqtextedit.h>
#include <tqclipboard.h>
#include <kinstance.h>
#include <tdeaction.h>
#include <kstdaction.h>
@ -59,15 +59,15 @@
#endif
#include <string.h>
#include <entry.h>
#include <documentlistviewitem.h>
#include <documentlistview.h>
#include <fileexporter.h>
#include <fileexporterbibtex.h>
#include <fileexporterxml.h>
#include <fileexporterxslt.h>
#include <settings.h>
#include <encoderlatex.h>
#include "entry.h"
#include "documentlistviewitem.h"
#include "documentlistview.h"
#include "fileexporter.h"
#include "fileexporterbibtex.h"
#include "fileexporterxml.h"
#include "fileexporterxslt.h"
#include "settings.h"
#include "encoderlatex.h"
#include "kbibtex_part.h"
const TQString inPipeFilename = TQDir::homeDirPath() + "/.kbibtex.in";

@ -24,10 +24,10 @@
#include <tdeparts/part.h>
#include <tdeparts/factory.h>
#include <element.h>
#include <xsltransform.h>
#include <documentwidget.h>
#include <settingsdlg.h>
#include "element.h"
#include "xsltransform.h"
#include "documentwidget.h"
#include "settingsdlg.h"
class TQWidget;
class TQTextEdit;

@ -17,7 +17,7 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqprocess.h>
#include <tqprocess.h>
#include <kkeydialog.h>
#include <kencodingfiledialog.h>
@ -34,7 +34,7 @@
#include <kstatusbar.h>
#include <tdelocale.h>
#include <kbibtex_part.h>
#include "kbibtex_part.h"
#include "kbibtexshell.h"
KBibTeXShell::KBibTeXShell( TQWidget* parentWidget, const char* name )

@ -27,7 +27,7 @@
#ifndef LATIN1LITERAL_H
#define LATIN1LITERAL_H
#include <ntqstring.h>
#include <tqstring.h>
namespace KBibTeX {

@ -17,8 +17,8 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <ntqstringlist.h>
#include <tqregexp.h>
#include <tqstringlist.h>
#include "macro.h"

@ -20,9 +20,9 @@
#ifndef BIBTEXMACRO_H
#define BIBTEXMACRO_H
#include <element.h>
#include <entryfield.h>
#include <value.h>
#include "element.h"
#include "entryfield.h"
#include "value.h"
class TQString;

@ -17,18 +17,18 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlabel.h>
#include <ntqlayout.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <klineedit.h>
#include <kdialogbase.h>
#include <tdelocale.h>
#include <kdebug.h>
#include <element.h>
#include <fileexporterbibtex.h>
#include <fileimporterbibtex.h>
#include <fieldlineedit.h>
#include "element.h"
#include "fileexporterbibtex.h"
#include "fileimporterbibtex.h"
#include "fieldlineedit.h"
#include "macrowidget.h"

@ -20,10 +20,10 @@
#ifndef MACROWIDGET_H
#define MACROWIDGET_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <macro.h>
#include <fieldlineedit.h>
#include "macro.h"
#include "fieldlineedit.h"
class KLineEdit;

@ -20,8 +20,8 @@
// #define UNIQUEAPP 1
#include <ntqframe.h>
#include <ntqpixmap.h>
#include <tqframe.h>
#include <tqpixmap.h>
#ifdef UNIQUEAPP
#include <kuniqueapplication.h>
#else // UNIQUEAPP

@ -19,10 +19,10 @@
***************************************************************************/
#include <cmath>
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqprogressbar.h>
#include <ntqtimer.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqprogressbar.h>
#include <tqtimer.h>
#include <tdelocale.h>
#include <kpushbutton.h>
@ -33,14 +33,14 @@
#include <tdeconfig.h>
#include <twin.h>
#include <macro.h>
#include <comment.h>
#include <preamble.h>
#include <macrowidget.h>
#include <entrywidget.h>
#include <preamblewidget.h>
#include <settings.h>
#include <fileexporterbibtex.h>
#include "macro.h"
#include "comment.h"
#include "preamble.h"
#include "macrowidget.h"
#include "entrywidget.h"
#include "preamblewidget.h"
#include "settings.h"
#include "fileexporterbibtex.h"
#include "mergeelements.h"
namespace KBibTeX

@ -22,9 +22,9 @@
#include <kdialogbase.h>
#include <findduplicates.h>
#include <file.h>
#include <entry.h>
#include "findduplicates.h"
#include "file.h"
#include "entry.h"
class KPushButton;
class KTextEdit;

@ -17,8 +17,8 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <ntqstringlist.h>
#include <tqregexp.h>
#include <tqstringlist.h>
#include "preamble.h"

@ -20,7 +20,7 @@
#ifndef BIBTEXPREAMBLE_H
#define BIBTEXPREAMBLE_H
#include <element.h>
#include "element.h"
namespace BibTeX
{

@ -17,8 +17,8 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlabel.h>
#include <ntqlayout.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <kdialogbase.h>
#include <tdelocale.h>

@ -20,11 +20,11 @@
#ifndef KBIBTEXPREAMBLEWIDGET_H
#define KBIBTEXPREAMBLEWIDGET_H
#include <ntqwidget.h>
#include <ntqdialog.h>
#include <tqwidget.h>
#include <tqdialog.h>
#include <preamble.h>
#include <fieldlineedit.h>
#include "preamble.h"
#include "fieldlineedit.h"
namespace KBibTeX
{

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlineedit.h>
#include <ntqlayout.h>
#include <ntqlistbox.h>
#include <ntqtimer.h>
#include <ntqtooltip.h>
#include <ntqlabel.h>
#include <tqlineedit.h>
#include <tqlayout.h>
#include <tqlistbox.h>
#include <tqtimer.h>
#include <tqtooltip.h>
#include <tqlabel.h>
#include <kcombobox.h>
#include <kpushbutton.h>
@ -32,7 +32,7 @@
#include <kiconloader.h>
#include <tdepopupmenu.h>
#include <settings.h>
#include "settings.h"
#include "searchbar.h"
namespace KBibTeX

@ -20,12 +20,12 @@
#ifndef KBIBTEXSEARCHBAR_H
#define KBIBTEXSEARCHBAR_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <kxmlguifactory.h>
#include <documentlistview.h>
#include <entryfield.h>
#include "documentlistview.h"
#include "entryfield.h"
class TQTimer;
class KPushButton;

@ -17,28 +17,28 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqstring.h>
#include <ntqprocess.h>
#include <ntqstringlist.h>
#include <ntqfont.h>
#include <ntqregexp.h>
#include <ntqwaitcondition.h>
#include <ntqprocess.h>
#include <ntqapplication.h>
#include <tqstring.h>
#include <tqprocess.h>
#include <tqstringlist.h>
#include <tqfont.h>
#include <tqregexp.h>
#include <tqwaitcondition.h>
#include <tqprocess.h>
#include <tqapplication.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <tdemessagebox.h>
#include <tdelocale.h>
#include <kbibtex_part.h>
#include <kdebug.h>
#include <tdeio/netaccess.h>
#include <entryfield.h>
#include <element.h>
#include <entry.h>
#include <macro.h>
#include "entryfield.h"
#include "element.h"
#include "entry.h"
#include "macro.h"
#include "settings.h"
#include "kbibtex_part.h"
namespace KBibTeX
{

@ -24,16 +24,16 @@
#include <config.h>
#endif
#include <ntqstringlist.h>
#include <tqstringlist.h>
#include <kcompletion.h>
#include <file.h>
#include <fieldlineedit.h>
#include <fileexporterbibtex.h>
#include <fileexporterexternal.h>
#include <entryfield.h>
#include <entry.h>
#include "file.h"
#include "fieldlineedit.h"
#include "fileexporterbibtex.h"
#include "fileexporterexternal.h"
#include "entryfield.h"
#include "entry.h"
class TDEConfig;
class TDEStandardDirs;

@ -18,19 +18,19 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <tqlayout.h>
#include <tdelocale.h>
#include <kiconloader.h>
#include <settingsfileio.h>
#include <settingsediting.h>
#include <settingssearchurl.h>
#include <settingsidsuggestions.h>
#include <settingskeyword.h>
#include <settingsuserdefinedinput.h>
#include "settingsfileio.h"
#include "settingsediting.h"
#include "settingssearchurl.h"
#include "settingsidsuggestions.h"
#include "settingskeyword.h"
#include "settingsuserdefinedinput.h"
#ifdef HAVE_YAZ
#include <settingsz3950.h>
#include "settingsz3950.h"
#endif // HAVE_YAZ
#include "settingsdlg.h"

@ -17,17 +17,17 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqdir.h>
#include <ntqheader.h>
#include <ntqcombobox.h>
#include <ntqslider.h>
#include <ntqtooltip.h>
#include <ntqwhatsthis.h>
#include <ntqgroupbox.h>
#include <ntqpushbutton.h>
#include <ntqcheckbox.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqdir.h>
#include <tqheader.h>
#include <tqcombobox.h>
#include <tqslider.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <tqgroupbox.h>
#include <tqpushbutton.h>
#include <tqcheckbox.h>
#include <kpushbutton.h>
#include <kdirselectdialog.h>
@ -40,7 +40,7 @@
#include <tdefontdialog.h>
#include <kurlcompletion.h>
#include <documentlistview.h>
#include "documentlistview.h"
#include "settingsediting.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef SETTINGSEDITING_H
#define SETTINGSEDITING_H
#include <ntqwidget.h>
#include <tqwidget.h>
class TQCheckBox;
class TQPushButton;

@ -18,17 +18,17 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqhbuttongroup.h>
#include <ntqbuttongroup.h>
#include <ntqpushbutton.h>
#include <ntqlabel.h>
#include <ntqcheckbox.h>
#include <ntqtooltip.h>
#include <ntqwhatsthis.h>
#include <ntqcombobox.h>
#include <ntqlayout.h>
#include <ntqradiobutton.h>
#include <ntqspinbox.h>
#include <tqhbuttongroup.h>
#include <tqbuttongroup.h>
#include <tqpushbutton.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <tqcombobox.h>
#include <tqlayout.h>
#include <tqradiobutton.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include <kurl.h>
@ -40,8 +40,8 @@
#include <kiconloader.h>
#include <kpushbutton.h>
#include <settings.h>
#include <file.h>
#include "settings.h"
#include "file.h"
#include "settingsfileio.h"
namespace KBibTeX

@ -24,7 +24,7 @@
#include <config.h>
#endif
#include <ntqwidget.h>
#include <tqwidget.h>
class TQComboBox;
class TQCheckBox;

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqcheckbox.h>
#include <ntqtimer.h>
#include <ntqvalidator.h>
#include <ntqheader.h>
#include <ntqlabel.h>
#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqtimer.h>
#include <tqvalidator.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <kinputdialog.h>
#include <tdelistview.h>
@ -32,11 +32,11 @@
#include <kdialog.h>
#include <klineedit.h>
#include <idsuggestions.h>
#include <idsuggestionswidget.h>
#include <settings.h>
#include <fileimporter.h>
#include <fileimporterbibtex.h>
#include "idsuggestions.h"
#include "idsuggestionswidget.h"
#include "settings.h"
#include "fileimporter.h"
#include "fileimporterbibtex.h"
#include "settingsidsuggestions.h"
namespace KBibTeX

@ -20,11 +20,11 @@
#ifndef KBIBTEXSETTINGSIDSUGGESTIONS_H
#define KBIBTEXSETTINGSIDSUGGESTIONS_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <tdelistview.h>
#include <entry.h>
#include "entry.h"
class TQRegExpValidator;
class TQCheckBox;

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqpushbutton.h>
#include <ntqheader.h>
#include <ntqtimer.h>
#include <ntqtooltip.h>
#include <tqlayout.h>
#include <tqpushbutton.h>
#include <tqheader.h>
#include <tqtimer.h>
#include <tqtooltip.h>
#include <tdelistview.h>
#include <kdialog.h>
@ -29,11 +29,11 @@
#include <tdemessagebox.h>
#include <tdelocale.h>
#include <file.h>
#include <entryfield.h>
#include <value.h>
#include <entry.h>
#include <settings.h>
#include "file.h"
#include "entryfield.h"
#include "value.h"
#include "entry.h"
#include "settings.h"
#include "settingskeyword.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXSETTINGSKEYWORD_H
#define KBIBTEXSETTINGSKEYWORD_H
#include <ntqwidget.h>
#include <tqwidget.h>
class TDEListView;
class TQPushButton;

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlineedit.h>
#include <ntqlabel.h>
#include <ntqtooltip.h>
#include <ntqheader.h>
#include <ntqcombobox.h>
#include <tqlayout.h>
#include <tqlineedit.h>
#include <tqlabel.h>
#include <tqtooltip.h>
#include <tqheader.h>
#include <tqcombobox.h>
#include <kiconloader.h>
#include <tdelistview.h>
@ -31,7 +31,7 @@
#include <kdialogbase.h>
#include <tdemessagebox.h>
#include <settings.h>
#include "settings.h"
#include "settingssearchurl.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef SETTINGSSEARCHURL_H
#define SETTINGSSEARCHURL_H
#include <ntqwidget.h>
#include <tqwidget.h>
class TQLineEdit;
class KPushButton;

@ -17,10 +17,10 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqheader.h>
#include <ntqlabel.h>
#include <ntqtooltip.h>
#include <tqlayout.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <tqtooltip.h>
#include <kdialog.h>
#include <kdialogbase.h>
@ -33,8 +33,8 @@
#include <tdemessagebox.h>
#include <tdelocale.h>
#include <settings.h>
#include <fieldlineedit.h>
#include "settings.h"
#include "fieldlineedit.h"
#include "settingsuserdefinedinput.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXSETTINGSUSERDEFINEDINPUT_H
#define KBIBTEXSETTINGSUSERDEFINEDINPUT_H
#include <ntqwidget.h>
#include <tqwidget.h>
class TDEListView;
class KPushButton;

@ -23,12 +23,12 @@
#ifdef HAVE_YAZ
#include <ntqlayout.h>
#include <ntqtimer.h>
#include <ntqheader.h>
#include <ntqlabel.h>
#include <ntqspinbox.h>
#include <ntqregexp.h>
#include <tqlayout.h>
#include <tqtimer.h>
#include <tqheader.h>
#include <tqlabel.h>
#include <tqspinbox.h>
#include <tqregexp.h>
#include <tdelistview.h>
#include <kpushbutton.h>

@ -26,9 +26,9 @@
#ifndef KBIBTEXSETTINGSZ3950_H
#define KBIBTEXSETTINGSZ3950_H
#include <ntqwidget.h>
#include <tqwidget.h>
#include <settings.h>
#include "settings.h"
class TQSpinBox;
class KPushButton;

@ -17,13 +17,13 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqcombobox.h>
#include <ntqheader.h>
#include <ntqapplication.h>
#include <ntqtooltip.h>
#include <ntqstring.h>
#include <ntqtoolbutton.h>
#include <tqlayout.h>
#include <tqcombobox.h>
#include <tqheader.h>
#include <tqapplication.h>
#include <tqtooltip.h>
#include <tqstring.h>
#include <tqtoolbutton.h>
#include <kdebug.h>
#include <tdepopupmenu.h>
@ -32,8 +32,8 @@
#include <tdelocale.h>
#include <kiconloader.h>
#include <settings.h>
#include <entry.h>
#include "settings.h"
#include "entry.h"
#include "sidebar.h"
namespace KBibTeX

@ -20,11 +20,11 @@
#ifndef KBIBTEXSIDEBAR_H
#define KBIBTEXSIDEBAR_H
#include <ntqwidget.h>
#include <ntqlistview.h>
#include <tqwidget.h>
#include <tqlistview.h>
#include <entryfield.h>
#include <file.h>
#include "entryfield.h"
#include "file.h"
class TQComboBox;
class TQToolButton;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqregexp.h>
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <tqregexp.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include "value.h"

@ -20,7 +20,7 @@
#ifndef BIBTEXVALUE_H
#define BIBTEXVALUE_H
#include <ntqvaluelist.h>
#include <tqvaluelist.h>
class TQStringList;

@ -17,18 +17,18 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlistview.h>
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqheader.h>
#include <ntqpushbutton.h>
#include <tqlistview.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqheader.h>
#include <tqpushbutton.h>
#include <kdialogbase.h>
#include <tdelocale.h>
#include <kiconloader.h>
#include <value.h>
#include <settings.h>
#include "value.h"
#include "settings.h"
#include "valuewidget.h"
namespace KBibTeX

@ -20,11 +20,11 @@
#ifndef KBIBTEXVALUEWIDGET_H
#define KBIBTEXVALUEWIDGET_H
#include <ntqwidget.h>
#include <ntqdialog.h>
#include <tqwidget.h>
#include <tqdialog.h>
#include <value.h>
#include <entryfield.h>
#include "value.h"
#include "entryfield.h"
class TQListView;
class TQPushButton;

@ -17,19 +17,19 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqtimer.h>
#include <ntqheader.h>
#include <ntqwidget.h>
#include <ntqlayout.h>
#include <ntqtooltip.h>
#include <ntqframe.h>
#include <ntqwidgetstack.h>
#include <ntqlabel.h>
#include <ntqcheckbox.h>
#include <ntqspinbox.h>
#include <ntqapplication.h>
#include <ntqeventloop.h>
#include <ntqbuffer.h>
#include <tqtimer.h>
#include <tqheader.h>
#include <tqwidget.h>
#include <tqlayout.h>
#include <tqtooltip.h>
#include <tqframe.h>
#include <tqwidgetstack.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqspinbox.h>
#include <tqapplication.h>
#include <tqeventloop.h>
#include <tqbuffer.h>
#include <tdelocale.h>
#include <kcombobox.h>
@ -45,25 +45,25 @@
#include <tdeconfig.h>
#include <twin.h>
#include <settings.h>
#include <idsuggestions.h>
#include <entrywidget.h>
#include <webqueryarxiv.h>
#include <webquerybibsonomy.h>
#include <webquerycsb.h>
#include <webquerycitebase.h>
#include <webqueryciteseerx.h>
#include <webquerydblp.h>
#include <webquerygooglescholar.h>
#include <webqueryieeexplore.h>
#include <webquerymathscinet.h>
#include <webquerypubmed.h>
#include <webquerysciencedirect.h>
#include <webqueryspireshep.h>
#include "settings.h"
#include "idsuggestions.h"
#include "entrywidget.h"
#include "webqueryarxiv.h"
#include "webquerybibsonomy.h"
#include "webquerycsb.h"
#include "webquerycitebase.h"
#include "webqueryciteseerx.h"
#include "webquerydblp.h"
#include "webquerygooglescholar.h"
#include "webqueryieeexplore.h"
#include "webquerymathscinet.h"
#include "webquerypubmed.h"
#include "webquerysciencedirect.h"
#include "webqueryspireshep.h"
#ifdef HAVE_YAZ
#include <webqueryz3950.h>
#include "webqueryz3950.h"
#endif // HAVE_YAZ
#include <webqueryzmath.h>
#include "webqueryzmath.h"
#include "webquery.h"
#define min(a,b) ((a)>(b)?(b):(a))

@ -20,8 +20,8 @@
#ifndef KBIBTEXWEBQUERY_H
#define KBIBTEXWEBQUERY_H
#include <ntqobject.h>
#include <ntqstring.h>
#include <tqobject.h>
#include <tqstring.h>
#include <kdialogbase.h>
#include <tdelistview.h>

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqregexp.h>
#include <ntqbuffer.h>
#include <ntqspinbox.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqregexp.h>
#include <tqbuffer.h>
#include <tqspinbox.h>
#include <klineedit.h>
#include <tdelocale.h>
@ -29,7 +29,7 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <fileimporterbibtex.h>
#include "fileimporterbibtex.h"
#include "webqueryamatex.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYAMATEX_H
#define KBIBTEXWEBQUERYAMATEX_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -17,18 +17,18 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqbuffer.h>
#include <ntqspinbox.h>
#include <tqfile.h>
#include <tqbuffer.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include <klineedit.h>
#include <tdemessagebox.h>
#include <kurl.h>
#include <fileimporterbibtex.h>
#include <encoderxml.h>
#include <settings.h>
#include "fileimporterbibtex.h"
#include "encoderxml.h"
#include "settings.h"
#include "webqueryarxiv.h"
namespace KBibTeX

@ -20,14 +20,14 @@
#ifndef KBIBTEXWEBQUERYARXIV_H
#define KBIBTEXWEBQUERYARXIV_H
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <ntqregexp.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include <tdeio/job.h>
#include <fileimporterbibtex.h>
#include <webquery.h>
#include "fileimporterbibtex.h"
#include "webquery.h"
class TQBuffer;

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqapplication.h>
#include <ntqfile.h>
#include <ntqregexp.h>
#include <ntqstring.h>
#include <ntqspinbox.h>
#include <tqapplication.h>
#include <tqfile.h>
#include <tqregexp.h>
#include <tqstring.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include <klineedit.h>
@ -29,8 +29,8 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <settings.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "fileimporterbibtex.h"
#include "webquerybibsonomy.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYBIBSONOMY_H
#define KBIBTEXWEBQUERYBIBSONOMY_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -17,10 +17,10 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqapplication.h>
#include <ntqfile.h>
#include <ntqstring.h>
#include <ntqspinbox.h>
#include <tqapplication.h>
#include <tqfile.h>
#include <tqstring.h>
#include <tqspinbox.h>
#include <klineedit.h>
#include <tdelocale.h>
@ -28,8 +28,8 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <settings.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "fileimporterbibtex.h"
#include "webquerycitebase.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYCITEBASE_H
#define KBIBTEXWEBQUERYCITEBASE_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -17,10 +17,10 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqregexp.h>
#include <ntqbuffer.h>
#include <ntqspinbox.h>
#include <tqfile.h>
#include <tqregexp.h>
#include <tqbuffer.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include <klineedit.h>
@ -28,9 +28,9 @@
#include <kurl.h>
#include <kdebug.h>
#include <fileimporterbibtex.h>
#include <encoderxml.h>
#include <settings.h>
#include "fileimporterbibtex.h"
#include "encoderxml.h"
#include "settings.h"
#include "webqueryciteseerx.h"
using BibTeX::Value;

@ -20,13 +20,13 @@
#ifndef KBIBTEXWEBQUERYCITESEERX_H
#define KBIBTEXWEBQUERYCITESEERX_H
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tdeio/job.h>
#include <fileimporterbibtex.h>
#include <webquery.h>
#include "fileimporterbibtex.h"
#include "webquery.h"
#include <deque>

@ -17,16 +17,16 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlabel.h>
#include <ntqlayout.h>
#include <ntqregexp.h>
#include <ntqbuffer.h>
#include <ntqcstring.h>
#include <ntqiodevice.h>
#include <ntqspinbox.h>
#include <ntqcheckbox.h>
#include <ntqfile.h>
#include <ntqdatetime.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqregexp.h>
#include <tqbuffer.h>
#include <tqcstring.h>
#include <tqiodevice.h>
#include <tqspinbox.h>
#include <tqcheckbox.h>
#include <tqfile.h>
#include <tqdatetime.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
@ -36,7 +36,7 @@
#include <kpushbutton.h>
#include <kiconloader.h>
#include <settings.h>
#include "settings.h"
#include "webquerycsb.h"
namespace KBibTeX

@ -22,8 +22,8 @@
#include <tdeio/job.h>
#include <fileimporterbibtex.h>
#include <webquery.h>
#include "fileimporterbibtex.h"
#include "webquery.h"
class TQSpinBox;
class TQCheckBox;

@ -17,13 +17,13 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqspinbox.h>
#include <ntqregexp.h>
#include <ntqcheckbox.h>
#include <ntqlabel.h>
#include <ntqlayout.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqspinbox.h>
#include <tqregexp.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tdelocale.h>
#include <klineedit.h>
@ -34,8 +34,8 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <settings.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "fileimporterbibtex.h"
#include "webquerydblp.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYDBLP_H
#define KBIBTEXWEBQUERYDBLP_H
#include <webquery.h>
#include "webquery.h"
class TQCheckBox;

@ -17,12 +17,12 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqregexp.h>
#include <ntqtimer.h>
#include <ntqmap.h>
#include <ntqspinbox.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqregexp.h>
#include <tqtimer.h>
#include <tqmap.h>
#include <tqspinbox.h>
#include <tdeconfig.h>
#include <klineedit.h>
@ -33,7 +33,7 @@
#include <dcopref.h>
#include <settings.h>
#include "settings.h"
#include "webquerygooglescholar.h"
namespace KBibTeX

@ -20,13 +20,13 @@
#ifndef KBIBTEXWEBQUERYGOOGLESCHOLAR_H
#define KBIBTEXWEBQUERYGOOGLESCHOLAR_H
#include <ntqstringlist.h>
#include <ntqbuffer.h>
#include <tqstringlist.h>
#include <tqbuffer.h>
#include <kurl.h>
#include <fileimporterbibtex.h>
#include <webquery.h>
#include "fileimporterbibtex.h"
#include "webquery.h"
namespace KBibTeX
{

@ -17,8 +17,8 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqspinbox.h>
#include <ntqfile.h>
#include <tqspinbox.h>
#include <tqfile.h>
#include <tdeio/jobclasses.h>
#include <tdeio/job.h>
@ -28,10 +28,10 @@
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <settings.h>
#include <entryfield.h>
#include <file.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "entryfield.h"
#include "file.h"
#include "fileimporterbibtex.h"
#include "webqueryieeexplore.h"
#define min(a,b) ((a)>(b)?(b):(a))

@ -20,10 +20,10 @@
#ifndef KBIBTEXWEBQUERYIEEEXPLORE_H
#define KBIBTEXWEBQUERYIEEEXPLORE_H
#include <ntqregexp.h>
#include <tqregexp.h>
#include <webquery.h>
#include <fileimporter.h>
#include "webquery.h"
#include "fileimporter.h"
namespace KBibTeX
{

@ -19,10 +19,10 @@
***************************************************************************/
#include "webquerymathscinet.h"
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqregexp.h>
#include <ntqspinbox.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqregexp.h>
#include <tqspinbox.h>
#include <kpushbutton.h>
#include <tdelocale.h>
@ -32,7 +32,7 @@
#include <tdeio/netaccess.h>
#include <tdemessagebox.h>
#include <settings.h>
#include "settings.h"
namespace KBibTeX
{

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYMATHSCINET_H
#define KBIBTEXWEBQUERYMATHSCINET_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -17,14 +17,14 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqwidget.h>
#include <ntqdom.h>
#include <ntqapplication.h>
#include <ntqstringlist.h>
#include <ntqbuffer.h>
#include <ntqcstring.h>
#include <ntqregexp.h>
#include <ntqspinbox.h>
#include <tqwidget.h>
#include <tqdom.h>
#include <tqapplication.h>
#include <tqstringlist.h>
#include <tqbuffer.h>
#include <tqcstring.h>
#include <tqregexp.h>
#include <tqspinbox.h>
#include <klineedit.h>
#include <kdialog.h>
@ -33,9 +33,9 @@
#include <tdemessagebox.h>
#include <tdeio/netaccess.h>
#include <entryfield.h>
#include <value.h>
#include <settings.h>
#include "entryfield.h"
#include "value.h"
#include "settings.h"
#include "webquerypubmed.h"
namespace KBibTeX

@ -20,11 +20,11 @@
#ifndef KBIBTEXWEBQUERYPUBMED_H
#define KBIBTEXWEBQUERYPUBMED_H
#include <ntqwidget.h>
#include <ntqxml.h>
#include <ntqvaluelist.h>
#include <tqwidget.h>
#include <tqxml.h>
#include <tqvaluelist.h>
#include <webquery.h>
#include "webquery.h"
class TQStringList;
class TQDomElement;

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqspinbox.h>
#include <ntqbuffer.h>
#include <ntqfile.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqspinbox.h>
#include <tqbuffer.h>
#include <tqfile.h>
#include <kpushbutton.h>
#include <tdelocale.h>
@ -31,8 +31,8 @@
#include <tdeio/job.h>
#include <tdeio/netaccess.h>
#include <settings.h>
#include <fileimporterris.h>
#include "settings.h"
#include "fileimporterris.h"
#include "webquerysciencedirect.h"
namespace KBibTeX

@ -20,8 +20,8 @@
#ifndef KBIBTEXWEBQUERYSCIENCEDIRECT_H
#define KBIBTEXWEBQUERYSCIENCEDIRECT_H
#include <fileimporterbibtex.h>
#include <webquery.h>
#include "fileimporterbibtex.h"
#include "webquery.h"
namespace KBibTeX
{

@ -17,11 +17,11 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <ntqcheckbox.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <kiconloader.h>
#include <kcombobox.h>
@ -32,8 +32,8 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <settings.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "fileimporterbibtex.h"
#include "webqueryspireshep.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYSPIRESHEP_H
#define KBIBTEXWEBQUERYSPIRESHEP_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -32,11 +32,11 @@
#include <config.h>
#endif
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqspinbox.h>
#include <ntqlayout.h>
#include <ntqlabel.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqspinbox.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tdelocale.h>
#include <kstandarddirs.h>
@ -50,8 +50,8 @@
#include <kdebug.h>
#include <kurl.h>
#include <fileimporterbibutils.h>
#include <settings.h>
#include "fileimporterbibutils.h"
#include "settings.h"
#include "webqueryz3950.h"
namespace KBibTeX

@ -34,16 +34,16 @@
#ifndef KBIBTEXWEBQUERYZ3950_H
#define KBIBTEXWEBQUERYZ3950_H
#include <ntqevent.h>
#include <ntqdeepcopy.h>
#include <ntqthread.h>
#include <tqevent.h>
#include <tqdeepcopy.h>
#include <tqthread.h>
#include <ksharedptr.h>
#include <fileimporter.h>
#include <webquery.h>
#include <xsltransform.h>
#include <z3950connection.h>
#include "fileimporter.h"
#include "webquery.h"
#include "xsltransform.h"
#include "z3950connection.h"
class KComboBox;

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <ntqfile.h>
#include <ntqapplication.h>
#include <ntqspinbox.h>
#include <tqfile.h>
#include <tqapplication.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include <klineedit.h>
@ -28,8 +28,8 @@
#include <tdeio/netaccess.h>
#include <kurl.h>
#include <settings.h>
#include <fileimporterbibtex.h>
#include "settings.h"
#include "fileimporterbibtex.h"
#include "webqueryzmath.h"
namespace KBibTeX

@ -20,7 +20,7 @@
#ifndef KBIBTEXWEBQUERYZMATH_H
#define KBIBTEXWEBQUERYZMATH_H
#include <webquery.h>
#include "webquery.h"
namespace KBibTeX
{

@ -23,8 +23,8 @@
#include <libxslt/transform.h>
#include <libxslt/xsltutils.h>
#include <ntqfile.h>
#include <ntqstring.h>
#include <tqfile.h>
#include <tqstring.h>
#include "xsltransform.h"

@ -28,7 +28,7 @@
#include "iso5426converter.h"
#include "iso6937converter.h"
#include <ntqapplication.h>
#include <tqapplication.h>
#include <config.h>
@ -43,7 +43,7 @@ extern "C"
#include <tdelocale.h>
#include <ntqfile.h>
#include <tqfile.h>
namespace
{

@ -23,9 +23,9 @@
#ifndef KBIBTEX_Z3950CONNECTION_H
#define KBIBTEX_Z3950CONNECTION_H
#include <ntqthread.h>
#include <ntqevent.h>
#include <ntqdeepcopy.h>
#include <tqthread.h>
#include <tqevent.h>
#include <tqdeepcopy.h>
#include <ksharedptr.h>

@ -0,0 +1,6 @@
file( GLOB _xsls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.xsl )
install(
FILES ${_xsls}
DESTINATION ${DATA_INSTALL_DIR}/kbibtexpart/xslt
)
Loading…
Cancel
Save