summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/uwp/window.h
diff options
context:
space:
mode:
author Brad Hughes <bradhugh@outlook.com>2016-11-10 18:58:22 -0500
committer Brad Hughes <bradhugh@outlook.com>2016-11-10 18:58:22 -0500
commit477e47ee5f6c52df72b1a98a4ee472e6842a697c (patch)
tree87a918aaef85c56249d4dbab1697f73c9f25f8ce /src/osd/uwp/window.h
parentbcabf45f0875833a1c3253b513d9862c01d0026b (diff)
More UWP work - the UI actually renders (nw)
Diffstat (limited to 'src/osd/uwp/window.h')
-rw-r--r--src/osd/uwp/window.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osd/uwp/window.h b/src/osd/uwp/window.h
index fe8d2a47379..dcff102bda2 100644
--- a/src/osd/uwp/window.h
+++ b/src/osd/uwp/window.h
@@ -60,7 +60,8 @@ public:
virtual osd_dim get_size() override
{
- throw ref new Platform::NotImplementedException();
+ auto bounds = uwp_window()->Bounds;
+ return osd_dim(bounds.Width, bounds.Height);
}
bool win_has_menu() override
@@ -123,6 +124,7 @@ public:
private:
int complete_create();
+ void draw_video_contents(int update);
void set_starting_view(int index, const char *defview, const char *view);
int wnd_extra_width();
int wnd_extra_height();