summaryrefslogtreecommitdiff
path: root/winrt/winapp/MainPage.xaml.h
blob: 6f4cd2423933ef9dd73c4532ed50c4a2c5bbb490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
//
// MainPage.xaml.h
// Declaration of the MainPage class.
//

#pragma once

#include "MainPage.g.h"
#include "fitz.h"
#include "fitz-internal.h"
#include "muxps.h"
#include "mupdf.h"
#include "ppl.h"
#include <collection.h>
#include <algorithm>
#include "LVContents.h"

using namespace Platform;
using namespace Concurrency;
using namespace Windows::Storage;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Media::Imaging;
using namespace Windows::Storage::Streams;
using namespace Windows::Foundation;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::UI::Xaml::Media;
using namespace Windows::UI::Xaml::Input;
using namespace Windows::Foundation::Collections;
using namespace Windows::UI::Xaml::Shapes;
using namespace Windows::Foundation::Collections;
using namespace Platform::Collections;
using namespace ListViewContents;

typedef enum {
    REN_AVAILABLE = 0,
    REN_THUMBS,
    REN_UPDATE_THUMB_CANVAS,
    REN_PAGE            /* Used to ignore value when source based setting */  
} RenderingStatus_t;

typedef struct SearchResult_s
{
    int box_count;
    int page_num;
} SearchResult_t;

typedef struct RectSize_s
{
    float width;
    float height;
} RectSize;

typedef struct spatial_info_s
{
    RectSize size;   
    double scale_factor;
} spatial_info_t;

typedef struct thumbs_s
{
    Array<InMemoryRandomAccessStream^>^ raster;  
    Array<double>^ scale;
    Array<Point>^  size;
    Array<Canvas^>^ canvas_v;
    Array<Canvas^>^ canvas_h;
} thumbs_t;

typedef struct content_s
{
    int num;
    Vector<int>^  page;
    Vector<String^>^ string_orig;
    Vector<String^>^ string_margin;
} content_t;




namespace winapp
{
	/// <summary>
	/// An empty page that can be used on its own or navigated to within a Frame.
	/// </summary>
	public ref class MainPage sealed
	{
	public:
		MainPage();

	protected:
		virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;

    /* added */
    private:
        LVContents temp;
        bool m_file_open;
        int  m_currpage;
        int  m_searchpage;
        int  m_num_pages;
        int  m_slider_min;
        int  m_slider_max;
        bool m_init_done;
        bool m_first_time;
        bool m_flip_from_searchlink;
        bool m_links_on;
        int m_search_rect_count;
        Point m_display_size;
        cancellation_token_source m_searchcts;
        cancellation_token_source m_thumbcts;
        long long m_memory_use;
        double m_curr_zoom;
        Point m_zoom_size;
        Point m_touchpoint;
        Point m_canvas_translate;
        Windows::UI::Input::ManipulationDelta m_changes;
        ImageBrush^ m_renderedImage;
        ImageBrush^ m_blankPage;
        Canvas^ m_renderedCanvas;
        ImageBrush^ m_zoomedImage;
        SolidColorBrush^ m_textcolor_brush; 
        SolidColorBrush^ m_linkcolor_brush; 
        FlipView^ m_curr_flipView;
        thumbs_t m_thumbnails;
        RenderingStatus_t m_ren_status;
        int m_thumb_page_start;
        int m_thumb_page_stop;
        cancellation_token_source m_ThumbCancel;
        fz_link *m_links;
        content_t m_content;
        bool m_zoom_mode;
        bool m_from_doubleflip;
        bool m_scaling_occured;
        bool m_insearch;  /* Used for UI display */
        bool m_search_active;  /* Used to avoid multiple UI clicks */
        bool m_sliderchange;
        bool m_update_flip;
		void Picker(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void Searcher(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void OpenDocumentPrep(StorageFile^ file);
        void OpenDocument(StorageFile^ file);
        task<int> RenderRange(int curr_page, int *height, int *width);
        void CleanUp();
        void AddPage(int page_num);
        void ReplacePage(int page_num);
        void AddBlankPage(int page_num);
        void AddBlankPage(int page_num, FlipView^ flip_view);
        void CreateBlank(int width, int height);
        void HandleFileNotFoundException(Platform::COMException^ e); 
        void NotifyUserFileNotExist();
        void SetupZoomCanvas();
        RectSize currPageSize(int page);
        void Slider_ValueChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::Primitives::RangeBaseValueChangedEventArgs^ e);
        void Slider_Released(Platform::Object^ sender, Windows::UI::Xaml::Controls::Primitives::RangeBaseValueChangedEventArgs^ e);
        void FlipView_SelectionChanged(Object^ sender, SelectionChangedEventArgs^ e);
        void FlipView_Double(Object^ sender, DoubleTappedRoutedEventArgs^ e);
        void Canvas_ManipulationDelta(Object^ sender, ManipulationDeltaRoutedEventArgs^ e);
        void Canvas_ManipulationStarted(Object^ sender, ManipulationStartedRoutedEventArgs^ e);
        void Canvas_ManipulationStarting(Object^ sender, ManipulationStartingRoutedEventArgs^ e);  
        void Canvas_Double(Object^ sender, DoubleTappedRoutedEventArgs^ e);
        void SearchNext(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void SearchPrev(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void ResetSearch(void);  
        void CancelSearch(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void SearchInDirection(int dir, String^ textToFind);    
        void ShowSearchResults(SearchResult_t result);
        void GridSizeChanged();
        void UpDatePageSizes();
        void ShowThumbnail();
        void Canvas_ManipulationCompleted(Platform::Object^ sender, Windows::UI::Xaml::Input::ManipulationCompletedRoutedEventArgs^ e);
        void AddThumbNail(int page_num, FlipView^ flip_view);
        spatial_info_t InitSpatial(double scale);
        void InitThumbnails();
        void RenderThumbs();
        void SetThumb(int page_num);
        void ReleasePages(int old_page, int new_page);
        void Linker(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void AddLinkCanvas();
        void Canvas_Single_Tap(Platform::Object^ sender, Windows::UI::Xaml::Input::TappedRoutedEventArgs^ e);
        bool CheckRect(Rectangle^ curr_rect, Point pt);
        void JumpToLink(int index);
        void ClearLinksCanvas();
        void ContentDisplay(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void FlattenOutline(fz_outline *outline, int level);
        void ListView_Single_Tap(Platform::Object^ sender, Windows::UI::Xaml::Input::TappedRoutedEventArgs^ e);
        void ContentSelected(Platform::Object^ sender, Windows::UI::Xaml::Controls::ItemClickEventArgs^ e);
        void ContentChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e);
        void Reflower(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
        void WebViewDelta(Platform::Object^ sender, Windows::UI::Xaml::Input::ManipulationDeltaRoutedEventArgs^ e);
        void WebViewStarting(Platform::Object^ sender, Windows::UI::Xaml::Input::ManipulationStartingRoutedEventArgs^ e);
        void WebViewCompleted(Platform::Object^ sender, Windows::UI::Xaml::Input::ManipulationCompletedRoutedEventArgs^ e);
        void TempViewStarting(Platform::Object^ sender, Windows::UI::Xaml::Input::ManipulationStartingRoutedEventArgs^ e);
};
}