Changeset 153
- Timestamp:
- 05/08/06 11:15:11 (2 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 6 modified
-
src/FindPter.cxx (added)
-
src/FindPter.h (added)
-
src/IFindView.h (added)
-
src/Makefile.am (modified) (1 diff)
-
src/epdfview.h (modified) (1 diff)
-
tests/DumbFindView.cxx (added)
-
tests/DumbFindView.h (added)
-
tests/DumbPageView.cxx (modified) (1 diff)
-
tests/DumbPageView.h (modified) (1 diff)
-
tests/FindPterTest.cxx (added)
-
tests/FindPterTest.h (added)
-
tests/Makefile.am (modified) (1 diff)
-
tests/PagePterTest.cxx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r147 r153 14 14 DocumentPage.cxx \ 15 15 epdfview.h \ 16 FindPter.cxx \ 17 FindPter.h \ 16 18 gettext.h \ 17 IJob.cxx \18 IJob.h \19 19 IDocument.cxx \ 20 20 IDocument.h \ 21 21 IDocumentObserver.h \ 22 IFindView.h \ 23 IJob.cxx \ 24 IJob.h \ 22 25 IMainView.h \ 23 26 IPageView.h \ -
trunk/src/epdfview.h
r147 r153 31 31 #include <PDFDocument.h> 32 32 33 #include <IFindView.h> 33 34 #include <IPageView.h> 34 35 #include <IMainView.h> 36 #include <FindPter.h> 35 37 #include <PagePter.h> 36 38 #include <MainPter.h> -
trunk/tests/DumbPageView.cxx
r151 r153 1 // ePDFView - Dumb Test MainView.1 // ePDFView - Dumb Test Page View. 2 2 // Copyright (C) 2006 Emma's Software. 3 3 // -
trunk/tests/DumbPageView.h
r151 r153 1 // ePDFView - Dumb Test MainView.1 // ePDFView - Dumb Test Page View. 2 2 // Copyright (C) 2006 Emma's Software. 3 3 // -
trunk/tests/Makefile.am
r141 r153 16 16 DumbDocumentObserver.cxx \ 17 17 DumbDocumentObserver.h \ 18 DumbFindView.cxx \ 19 DumbFindView.h \ 18 20 DumbMainView.cxx \ 19 21 DumbMainView.h \ 20 22 DumbPageView.cxx \ 21 23 DumbPageView.h \ 24 FindPterTest.cxx \ 25 FindPterTest.h \ 22 26 main.cxx \ 23 MainPterTest.cxx \24 MainPterTest.h \25 PagePterTest.cxx \26 PagePterTest.h \27 PDFDocumentTest.cxx \28 PDFDocumentTest.h \29 27 Utils.cxx \ 30 28 Utils.h 31 29 30 # MainPterTest.cxx 31 # MainPterTest.h 32 # PagePterTest.cxx 33 # PagePterTest.h 34 # PDFDocumentTest.cxx 35 # PDFDocumentTest.h 32 36 33 37 test_epdfview_CXXFLAGS = \ -
trunk/tests/PagePterTest.cxx
r146 r153 28 28 29 29 /// 30 /// @brief Sets up the environment for each setup.30 /// @brief Sets up the environment for each test. 31 31 /// 32 32 void
