You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return { tr("This sample plug-in has the only purpose to serve as a template for the development of extended features for pgModeler based on the plug-in interface.") };
}
voidSamplePlugin::showPluginInfo()
{
plugin_info_frm->show();
}
voidSamplePlugin::executeToolbarAction()
{
Messagebox::info(tr("This action triggers a specific operation when the user clicks the toolbar action."));
}
voidSamplePlugin::executeModelAction()
{
Messagebox::info(tr("This action triggers a specific operation when the user clicks the action in the current model's context menu."));
}
voidSamplePlugin::executeConfigAction()
{
Messagebox::info(tr("This action triggers a specific operation when the user clicks the action in the plug-ins settings menu."));
}
voidSamplePlugin::executeDbExplorerAction()
{
Messagebox::info(tr("Database explorer button triggered!"));