mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
7b6b7a359d
It's not yet complete (file dowload and internal notifies are missing) but the new stuff browser is running. The ui is modeled on an Aaron's mockup. NewStuff: Fetches the providers list (kpdf.kde.org/newstuff/providers.xml), lets the user select a provider and displays provider's contents in a KHMTL part (for flexibility and eye candy). Internally we use KNS' Entry and Provider structures only, doing all the transfer operations by hand via KIO::get jobs. Download will be done internally too (to give better consistancy in the interface). Network timeouts, problems or info messages are notified in a statusbar- like widget and we try to keep all information in the dialog, without using messageBoxes Part: Added the action and the dialog invocation Makefiles: Link the KNEWSTUFF and KHTML libraries. svn path=/branches/kpdf_annotations/kdegraphics/kpdf/; revision=405828
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
SUBDIRS = xpdf conf core ui shell
|
|
|
|
INCLUDES = -I$(srcdir)/xpdf -I$(srcdir)/xpdf/goo -I$(top_builddir)/kpdf $(all_includes) $(FREETYPE_CFLAGS)
|
|
|
|
METASOURCES = AUTO
|
|
|
|
messages: rc.cpp
|
|
$(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` >> rc.cpp
|
|
$(XGETTEXT) `find . -name "*.cpp" -o -name "*.cc" -o -name "*.h"` -o $(podir)/kpdf.pot
|
|
|
|
KDE_ICON = kpdf
|
|
|
|
#########################################################################
|
|
# KPART SECTION
|
|
#########################################################################
|
|
kde_module_LTLIBRARIES = libkpdfpart.la
|
|
|
|
libkpdfpart_la_SOURCES = dcop.skel error.cpp part.cpp
|
|
libkpdfpart_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
|
|
libkpdfpart_la_LIBADD = xpdf/xpdf/libxpdf.la conf/libkpdfconf.la core/libkpdfcore.la \
|
|
ui/libkpdfui.la ui/painter_agg2/libagg2.la $(LIB_KPARTS) \
|
|
$(LIB_KFILE) $(LIB_KDEPRINT) $(LIB_KUTILS) $(LIB_KNEWSTUFF) \
|
|
$(LIB_KHTML) -lm
|
|
|
|
partdesktopdir = $(kde_servicesdir)
|
|
partdesktop_DATA = kpdf_part.desktop
|
|
|
|
partrcdir = $(kde_datadir)/kpdfpart
|
|
partrc_DATA = part.rc
|
|
|
|
part.lo: conf/settings.h
|