8 code results in siffiejoe/lua-fltk4lua or view all results on GitHub
| 157 | char const* l = luaL_optstring( L, 3, NULL ); |
| 158 | Fl_Color co = luaL_opt( L, f4l_check_color, 4, FL_FOREGROUND_COLOR ); |
| 159 | F4L_TRY( L ) { |
| … | |
| 199 | double v = luaL_checknumber( L, 3 ); |
| 200 | char const* l = luaL_optstring( L, 4, NULL ); |
| 201 | Fl_Color co = luaL_opt( L, f4l_check_color, 5, FL_FOREGROUND_COLOR ); |
C++
Showing the top two matches
Last indexed | 64 | static int group_current( lua_State* L ) { |
| 65 | F4L_TRY( L ) { |
| 66 | if( lua_gettop( L ) > 0 ) { |
| 67 | Fl_Group* g = luaL_opt( L, check_group, 1, NULL ); |
| … | |
| 275 | if( F4L_MEMCMP( key, "resizable", 9 ) == 0 ) { |
| 276 | Fl_Widget* w = luaL_opt( L, check_widget, 3, NULL ); |
| 277 | if( w != NULL ) |
C++
Showing the top two matches
Last indexed | 147 | MOON_LOCAL int f4l_widget_inside( lua_State* L ) { |
| 148 | Fl_Widget* widget = check_widget( L, 1 ); |
| 149 | Fl_Widget* widget2 = luaL_opt( L, check_widget, 2, NULL ); |
| … | |
| 498 | } else if( F4L_MEMCMP( key, "image", 5 ) == 0 ) { |
| 499 | Fl_Image* img = luaL_opt( L, check_image, 3, NULL ); |
| 500 | lua_settop( L, 3 ); |
C++
Showing the top two matches
Last indexed | 201 | int fd = moon_checkint( L, 1, 0, INT_MAX ); |
| 202 | luaL_checktype( L, 2, LUA_TFUNCTION ); |
| 203 | int when = luaL_opt( L, f4l_check_fd_when, 3, FL_READ ); |
| … | |
| 231 | static int whens[] = { FL_READ, FL_WRITE, FL_EXCEPT }; |
| 232 | int fd = moon_checkint( L, 1, 0, INT_MAX ); |
| 233 | int when = luaL_opt( L, f4l_check_fd_when, 2, 0 ); |
C++
Showing the top two matches
Last indexed