/** void QWidget::setStyleSheet(const char *text) * bind/QWidget.h:52 */ static int MenuBar_setStyleSheet(lua_State *L) { try { MenuBar *self = *((MenuBar **)dub_checksdata(L, 1, "mimas.MenuBar")); const char *text = dub_checkstring(L, 2); self->setStyleSheet(text); return 0; } catch (std::exception &e) { lua_pushfstring(L, "setStyleSheet: %s", e.what()); } catch (...) { lua_pushfstring(L, "setStyleSheet: Unknown exception"); } return dub_error(L); }
/** void QWidget::setStyle(const char *text) * bind/QWidget.h:51 */ static int MenuBar_setStyle(lua_State *L) { try { MenuBar *self = *((MenuBar **)dub_checksdata(L, 1, "mimas.MenuBar")); const char *text = dub_checkstring(L, 2); self->setStyleSheet(QString("%1 { %2 }").arg(self->metaObject()->className()).arg(text)); return 0; } catch (std::exception &e) { lua_pushfstring(L, "setStyle: %s", e.what()); } catch (...) { lua_pushfstring(L, "setStyle: Unknown exception"); } return dub_error(L); }