Do you know if there are windows binaries available. I have decided to try and do a simple and fast protoype of a stand alone appication in python and gtk rather than trying to get pdf viewing capabilities in winforms and C# with the .net platform. I am also asking the poppler mailing list if they have windows python bindings available. I know the python bindgins are in the gnome-python-desktop package for linux distros i installed it on my laptop.

thanks for your help with the code example too

Cory

On Jul 18, 2010 9:38am, Jose Aliste <[email protected]> wrote:
Hi Cory,








I am assuming you are using Linux. To use EvView and EvDocument from


python you need the python evince bindings. These should be available


in your distribution (for instance, in Ubuntu, you need to install the


python-evince package).





> home. how can i put the Evince libevview into my application through glade?


> do i just have to copy the libs?





AFAIK you can't include the EvView widget directly in Glade. Instead,


you add a ScrolledWindow where you want the EvView Widget to appear.


A minimal python code to use the EvWidget is as follows:





import evince





view = evince.View()


model = evince.DocumentModel()


document = evince.document_factory_get_document(URI TO YOUR FILE)


model.set_document(document)


view.set_model(model)








Then, you need to add by code the view to the scrolledWindow you added


and you will get your file showing in your window.





That should be it, hope that helps.





José





>


> Cory


> _______________________________________________


> evince-list mailing list


> [email protected]


> http://mail.gnome.org/mailman/listinfo/evince-list


>


>



_______________________________________________
evince-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/evince-list

Reply via email to