Home | History | Annotate | Download | only in tools
      1 /*
      2  * Copyright 2014 Skia
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 
      8 #ifndef iOSShell_DEFINED
      9 #define iOSShell_DEFINED
     10 
     11 #include "SkWindow.h"
     12 
     13 class SkCanvas;
     14 class SkEvent;
     15 class SkViewFactory;
     16 
     17 class ShellWindow : public SkOSWindow {
     18 public:
     19     ShellWindow(void* hwnd, int argc, char** argv);
     20     virtual ~ShellWindow();
     21 
     22 protected:
     23     void onSizeChange() override;
     24 
     25     virtual bool onDispatchClick(int x, int y, Click::State, void* owner,
     26                                  unsigned modi) override;
     27 
     28 private:
     29     typedef SkOSWindow INHERITED;
     30 };
     31 
     32 #endif
     33