Removing old run loop/ref/core/etc.

This commit is contained in:
Ben Vanik
2014-12-19 22:04:57 -08:00
parent d70f585f5e
commit a0eebf8898
136 changed files with 461 additions and 1601 deletions

View File

@@ -12,9 +12,8 @@
#include <string>
#include <xenia/core.h>
#include <alloy/delegate.h>
#include <xenia/common.h>
#include <xenia/ui/ui_event.h>
namespace xe {
@@ -22,14 +21,12 @@ namespace ui {
class Window {
public:
Window(xe_run_loop_ref run_loop);
Window();
virtual ~Window();
virtual int Initialize(const std::wstring& title, uint32_t width,
uint32_t height);
xe_run_loop_ref run_loop() const { return run_loop_; }
const std::wstring& title() const { return title_; }
virtual bool set_title(const std::wstring& title);
bool is_visible() const { return is_visible_; }
@@ -69,7 +66,6 @@ class Window {
virtual void OnClose();
private:
xe_run_loop_ref run_loop_;
std::wstring title_;
bool is_visible_;
bool is_cursor_visible_;