Ticket #2161 (closed bug)
Imported .pdf file displays only the first page.
Reported by: | todor | Owned by: | pap |
---|---|---|---|
Priority: | major | Milestone: | X3 |
Component: | uncategorized | Version: | 2.0 |
Keywords: | Cc: | ||
Category: | unknown | Effort: | |
Importance: | Ticket_group: | ||
Estimated Number of Hours: | 0 | Add Hours to Ticket: | 0 |
Billable?: | yes | Total Hours: | 0 |
Analysis_owners: | todor | Design_owners: | diana |
Imp._owners: | diana | Test_owners: | |
Analysis_reviewers: | Changelog: | ||
Design_reviewers: | pap | Imp._reviewers: | pap |
Test_reviewers: | Analysis_score: | 0 | |
Design_score: | 4 | Imp._score: | 3.5 |
Test_score: | 0 |
Description (last modified by pap) (diff)
Change History
comment:2 Changed 15 years ago by pap
- Design_owners set to diana
- Status changed from s1b_analysis_finished to s2a_design_started
- Description modified (diff)
Design started by didi
comment:3 Changed 15 years ago by pap
- Status changed from s2a_design_started to s2b_design_finished
In org.sophie2.extra.func.pdf.view package insert:
NextPdfPageContentView class that extends ContentManipulationView class and presents a button for changing the
current pdf page to the next one.
PrevPdfPageContentView class that extends ContentManipulationView class and presents a button for changing the
current pdf page to the previous one.
In PdfContentView class add a new RwProp currentPage that holds the index
of the current page of the pdf file that the view is displaying.
PdfLogic enum that handles the events coming from the NextPdfPageContentView and PrevPdfPageContentView classes.
It sets the sets the PdfContentView:: currentPage to +1 if the event comes from the NextPdfPageContentView class,
and - 1 if the event comes from the PrevPdfPageContentView class.
comment:4 Changed 15 years ago by pap
- Status changed from s2b_design_finished to s2c_design_ok
- Design_reviewers set to pap
- OK
comment:6 Changed 15 years ago by pap
- Owner set to pap
- Status changed from s2c_design_ok to s3a_implementation_started
- Imp._owners set to diana
comment:7 Changed 15 years ago by pap
- Status changed from s3a_implementation_started to s3b_implementation_finished
comment:8 Changed 15 years ago by pap
- Status changed from s3b_implementation_finished to s3c_implementation_ok
- Imp._score changed from 0 to 3.5
- Imp._reviewers set to pap
- Good but you don't follow the conventions for spacing and JavaDoc and that reduces the readability of your code. Please try to correct that.
- Commited to trunk in [8126].