Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
...
* Added po.Chyla Zbigniew2001-08-201-0/+1
| | | | | | | | | | | | | * Makefile.am (SUBDIRS): Added po. * configure.in (AC_OUTPUT): Added intl/Makefile po/Makefile.in. * xpdf/Makefile.am (INCLUDES): Added -DGNOMELOCALEDIR. * xpdf/bonobo-application-x-pdf.cc (main): Set textdomain and locale. * xpdf/gpdf.cc (main): ditto. Marked a few strings for translation.
* Add ZoomFitHeight verb and toolbar item.Ravi Pratap2001-08-121-51/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2001-08-12 Ravi Pratap <ravi@che.iitm.ac.in> * xpdf/bonobo-application-x-pdf-ui.xml : Add ZoomFitHeight verb and toolbar item. * xpdf/bonobo-application-x-pdf.h (VERB_Z_FIT): Rename to VERB_Z_FIT_WIDTH (VERB_Z_FIT_HEIGHT): Add * xpdf/bonobo-application-x-pdf.cc (verbs): Update to use the new verbs and names. (view_zoom_verb): update accordingly (zoom_to_fit): Modify to take an extra argument determining type of fit. Use the scrolled_window to determine allocation height and width. * xpdf/Makefile.am : Comment out unnecessary targets 2001-08-10 Ravi Pratap <ravi@che.iitm.ac.in> * xpdf/stock-zoom-in.xpm : Add * xpdf/stock-zoom-out.xpm : Add * xpdf/stock-zoom-fit.xpm : Add * xpdf/stock-zoom-fit-wide.xpm : Add * xpdf/stock-zoom-fit-tall.xpm : Add * xpdf/Makefile.am : Update, add targets etc. * xpdf/bonobo-application-x-pdf.cc (view_zoom_verb): Change zoom factor to 1.2 which is more correct (zoom_to_fit): Small tweak to enable better approximation * xpdf/bonobo-application-x-pdf-ui.xml : Change ZoomFit to ZoomFitWidth. * xpdf/bonobo-application-x-pdf.cc : Update to use the new name. 2001-08-09 Ravi Pratap <ravi@che.iitm.ac.in> * xpdf/bonobo-application-pdf-ui.xml: Add Zoom items to the toolbar 2001-07-10 Ravi Pratap <ravi@che.iitm.ac.in> * xpdf/gpdf.cc (main): Make indentation consistent with the rest of the source 2001-07-01 Ravi Pratap <ravi@che.iitm.ac.in> * xpdf/gpdf-ui.xml: Make the print menu item visible.
* Kill mutex / thread init code, it screws gtk.Michael Meeks2000-12-211-21/+8
| | | | | | | | | | | | | | 2000-12-21 Michael Meeks <michael@helixcode.com> * bonobo-application-x-pdf.cc: Kill mutex / thread init code, it screws gtk. * gpdf.cc: update the IID naming scheme. * bonobo-application-x-pdf.cc (init_bonobo_application_x_pdf_factory): ditto. (init_server_factory): setup ORB properly. * Makefile.am: De-goadize; update oafinfo fnames.
* Remove remnants of old ui translation scheme now that we have Kenneth'sDarin Adler2000-11-161-5/+0
| | | | | | | * xpdf/.cvsignore: * xpdf/Makefile.am: Remove remnants of old ui translation scheme now that we have Kenneth's new one (see po).
* add.Michael Meeks2000-10-171-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | 2000-10-17 Michael Meeks <michael@helixcode.com> * gpdf.xml: add. * Makefile.am: sort out xml files. * gpdf.cc: Re-engineer to the new UI handler. * bonobo-application-x-pdf.cc: update to new UI handler * bonobo-appliation-x-pdf-ui.xml: create. * gpdf-ui.xml: create. 2000-10-17 Michael Meeks <michael@helixcode.com> * Makefile.am (WIN32_EXTRA): remove cruft so we distcheck. 2000-10-17 Michael Meeks <michael@helixcode.com> * POTFILES.in: add generated files.
* kill ghastly hack adding -lbonobo. (bonobo_application_x_pdf_LDADD): addMichael Meeks2000-08-031-2/+1
| | | | | | | | | | | | | | 2000-08-02 Michael Meeks <michael@helixcode.com> * Makefile.am (gpdf_LDADD): kill ghastly hack adding -lbonobo. (bonobo_application_x_pdf_LDADD): add EXTRA_GNOME_LIBS 2000-07-25 Michael Meeks <michael@helixcode.com> * bonobo-application-x-pdf.cc (embeddable_factory): s/gtk/bonobo/ on unref. Junk 2 stop tabs throught, Derek can have my kittens. (view_create_menus): create the pdf toolbar before using it. (button_press_event_cb): return a value.
* Work with OAF and fix various bugs:Maciej Stachowiak2000-05-071-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.in, aclocal.m4: Detect when Bonobo is built with OAF support, and if so use OAF. * xpdf/Makefile.am: When using OAF, link against OAF and install oafinfo file. * xpdf/gpdf.cc: Include oaf headers when using OAF. (openpdf): Use OAFIID to activate the component when using OAF. (container_set_view), (container_launch_component), (container_new): Put the view in an EventBox, not a ScrolledWindow; the component now handles scrolling itself. (key_press_event_cb): Removed; key press handling moved to component. (main): Initialize OAF instead of GOAD when using OAF. * xpdf/bonobo-application-x-pdf.cc: Include OAF headers when using OAF. (redraw_view): Handle the case where we are loading before the view is realized by connecting to the "realize" signal handler and deferring redrawing until then in that case. (real_redraw_view): Function to do the real redrawing. (load_pdf_from_stream): Don't call `realize_mainbox' directly, let `real_redraw_view' do it. (key_press_event_cb): In response to various key bindings, scroll the view, navigate pages, or zoom in/out. (button_press_event_cb): Grab the keyboard focus on a press of button 1. (view_create_menus): Rename menus to be more standard, and provide accelerators for menus and items. (realize_mainbox): Get window ourselves if we have to. (view_factory): Put the view in a scrolled window so scrolling can be handled by the component itself. Connect to "key_press" and "button_press" for keyboard and focus handling. Set the GTK_CAN_FOCUS flag for the main view widget. (init_bonobo_application_x_pdf_factory, init_server_factory): Use OAF when appropriate. * xpdf/application-x-pdf.oafinfo: New file, OAF activation record.
* Fixed up lists of sources so that distcheck works. Also, only build gpdfNotZed2000-02-251-3/+33
| | | | | | | | | | 2000-02-25 NotZed <NotZed@HelixCode.com> * Makefile.am: Fixed up lists of sources so that distcheck works. Also, only build gpdf if with gnome (otherwise distcheck fails). * gpdf.cc (container_about_cmd): Define i if we are going to be using it.
* Gesture support + various improvements.Michael Meeks1999-10-061-2/+4
|
* Re-organise to get mime type right,Michael Meeks1999-08-241-24/+17
| | | | Add Help/About dialog.
* Added lock round XPDF global variable 'xref',Michael Meeks1999-08-241-8/+5
| | | | | Fixed up some broken global CORBA things. Added thread support to autogen glib stuff.
* Fixup pdfto* programs,Michael Meeks1999-08-231-3/+1
| | | | Preliminary toolbar stuff.
* New version using Derek's merged Stream stuff,Michael Meeks1999-08-231-1/+3
| | | | disabled helper utils build until I sync with Derek.
* CORBA_exception_init -miguelArturo Espinosa1999-08-221-1/+4
|
* Totaly re-hash stream architecture ... again :-)Michael Meeks1999-08-191-4/+3
| | | | Now we can compile but not run auxiliary utils.
* embryonic PDF viewer as a Bonobo container...Michael Meeks1999-08-181-5/+9
|
* Remove intermediate Makefile.in'sMichael Meeks1999-08-161-1/+2
| | | | | Initialise all the view's data fields ( kill fatal crash ) Fix xpdf/Makefile.am to only build the bonobo component.
* Break everything except bonobo-image-x-pdf :-)Michael Meeks1999-08-151-1/+7
| | | | | New cleaner xpdf IO code. use make bonobo-image-x-pdf in xpdf to compile.
* Compiles at least :)Michael Meeks1999-08-111-3/+16
|
* Painful merge.Arturo Espinosa1999-08-061-0/+5
| | | | | | | | | | | Painful merge. I merged the latest release into the CVS. This version supports the regular xpdf or gpdf if the GNOME libraries are found. Miguel.
* More fixes to get a nice compilation setup -migArturo Espinosa1999-08-041-3/+5
|
* Makefile fixesArturo Espinosa1999-08-041-3/+4
|
* Fix for GNOME detection -migArturo Espinosa1999-08-041-0/+6
|
* Added Automake setup -miguelArturo Espinosa1999-08-041-0/+107