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., * * Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/ ***************************************************************************/
#include <ntqregexp.h> #include <tqregexp.h>
#include <ntqstringlist.h> #include <tqstringlist.h>
#include <comment.h> #include "comment.h"
#include <xsltransform.h> #include "xsltransform.h"
namespace BibTeX namespace BibTeX
{ {

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

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

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

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

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

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

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

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

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

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

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

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 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" #include "element.h"
namespace BibTeX namespace BibTeX

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -17,9 +17,9 @@
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 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" #include "fileexporterris.h"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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