summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2013-04-04 11:25:25 -0700
committerRobin Watts <robin.watts@artifex.com>2013-05-16 19:25:41 +0100
commit102b040dd98446841acedf944cf2578894b25d0c (patch)
tree951aba687adc3bd56cca0ca7e43e0eee4bacf9fe
parentcb6fcf0d874a8e095a8781751a78cdfb35c10ab3 (diff)
downloadmupdf-102b040dd98446841acedf944cf2578894b25d0c.tar.xz
Add missing files related to contents list view.
-rw-r--r--winrt/winapp/LVContents.cpp9
-rw-r--r--winrt/winapp/LVContents.h12
2 files changed, 21 insertions, 0 deletions
diff --git a/winrt/winapp/LVContents.cpp b/winrt/winapp/LVContents.cpp
new file mode 100644
index 00000000..1905c10c
--- /dev/null
+++ b/winrt/winapp/LVContents.cpp
@@ -0,0 +1,9 @@
+#include "pch.h"
+#include "LVContents.h"
+
+using namespace ListViewContents;
+LVContents::LVContents(void)
+{
+ ContentItem = "";
+ Page = -1;
+}
diff --git a/winrt/winapp/LVContents.h b/winrt/winapp/LVContents.h
new file mode 100644
index 00000000..1ca4179c
--- /dev/null
+++ b/winrt/winapp/LVContents.h
@@ -0,0 +1,12 @@
+#pragma once
+namespace ListViewContents {
+ [Windows::UI::Xaml::Data::Bindable]
+ public ref class LVContents sealed
+ {
+ public:
+ LVContents(void);
+ property Platform::String^ ContentItem;
+ property int Page;
+
+ };
+}