Changeset 33
- Timestamp:
- 04/12/06 04:30:09 (3 years ago)
- Location:
- trunk/src
- Files:
-
- 3 added
- 5 modified
-
IMainView.h (modified) (1 diff)
-
MainPter.cxx (modified) (3 diffs)
-
MainPter.h (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
gtk/MainView.cxx (added)
-
gtk/MainView.h (added)
-
gtk/Makefile.am (modified) (1 diff)
-
main.cxx (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/IMainView.h
r31 r33 23 23 { 24 24 // Forward declarations 25 class MainPter; 25 class MainPter; 26 class DocumentPage; 26 27 27 28 class IMainView -
trunk/src/MainPter.cxx
r31 r33 26 26 { 27 27 m_Document = new PDFDocument (); 28 m_View = NULL; 28 29 } 29 30 … … 40 41 41 42 m_Document = document; 43 m_View = NULL; 42 44 } 43 45 … … 47 49 MainPter::~MainPter () 48 50 { 51 delete m_Document; 52 delete m_View; 49 53 } 50 54 -
trunk/src/MainPter.h
r31 r33 21 21 namespace ePDFView 22 22 { 23 // Forward declarations. 24 class IDocument; 25 23 26 class MainPter 24 27 { -
trunk/src/Makefile.am
r32 r33 22 22 $(GLIB_CFLAGS) \ 23 23 $(POPPLER_CFLAGS) 24 25 bin_PROGRAMS = epdfview 26 27 epdfview_SOURCES = \ 28 main.cxx 29 30 libshell_cxxflags = -I$(top_srcdir)/src/gtk $(GTK2_CFLAGS) 31 libshell_ldflags = $(GTK2_LIBS) 32 libshell_ldadd = $(top_builddir)/src/gtk/libshell-gtk.a 33 34 epdfview_CXXFLAGS = \ 35 $(GLIB_CFLAGS) \ 36 $(POPPLER_CFLAGS) \ 37 $(libshell_cxxflags) 38 39 epdfview_LDFLAGS = \ 40 $(GLIB_LIBS) \ 41 $(POPPLER_LIBS) \ 42 $(libshell_ldflags) 43 44 epdfview_LDADD = \ 45 libepdfview.a \ 46 $(libshell_ldadd) -
trunk/src/gtk/Makefile.am
r32 r33 1 1 # Process this file with automake to produce a Makefile.in file. 2 noinst_LIBRARIES = libshell-gtk.a 3 libshell_gtk_a_SOURCES = \ 4 MainView.cxx \ 5 MainView.h 2 6 7 libshell_gtk_a_CXXFLAGS = \ 8 -I$(top_srcdir)/src \ 9 $(GTK2_CFLAGS)
