| reed@google.com | 74ce6f0 | 2013-05-22 15:13:18 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2013 Google Inc. |
| 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 SkLua_DEFINED |
| 9 | #define SkLua_DEFINED |
| 10 | |
| 11 | #include "SkColor.h" |
| 12 | #include "SkScalar.h" |
| 13 | |
| 14 | struct lua_State; |
| 15 | |
| 16 | class SkCanvas; |
| 17 | class SkMatrix; |
| 18 | class SkPaint; |
| 19 | class SkPath; |
| 20 | struct SkRect; |
| 21 | class SkRRect; |
| 22 | class SkString; |
| 23 | |
| 24 | #define SkScalarToLua(x) SkScalarToDouble(x) |
| 25 | #define SkLuaToScalar(x) SkDoubleToScalar(x) |
| 26 | |
| 27 | class SkLua { |
| 28 | public: |
| 29 | static void Load(lua_State*); |
| 30 | |
| 31 | SkLua(lua_State*); |
| 32 | ~SkLua(); |
| 33 | |
| 34 | lua_State* getL() const { return fL; } |
| 35 | |
| 36 | void pushBool(bool, const char tableKey[] = NULL); |
| 37 | void pushString(const char[], const char tableKey[] = NULL); |
| 38 | void pushString(const SkString&, const char tableKey[] = NULL); |
| 39 | void pushColor(SkColor, const char tableKey[] = NULL); |
| 40 | void pushScalar(SkScalar, const char tableKey[] = NULL); |
| 41 | void pushRect(const SkRect&, const char tableKey[] = NULL); |
| 42 | void pushRRect(const SkRRect&, const char tableKey[] = NULL); |
| 43 | void pushMatrix(const SkMatrix&, const char tableKey[] = NULL); |
| 44 | void pushPaint(const SkPaint&, const char tableKey[] = NULL); |
| 45 | void pushPath(const SkPath&, const char tableKey[] = NULL); |
| 46 | void pushCanvas(SkCanvas*, const char tableKey[] = NULL); |
| 47 | |
| 48 | private: |
| 49 | lua_State* fL; |
| 50 | }; |
| 51 | |
| 52 | #endif |