├── .clang-format ├── .gitignore ├── AUTHORS ├── App.config ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog ├── INSTALL ├── Info.plist ├── License.txt ├── MySQLWorkbench.sln ├── MySQLWorkbench.xcodeproj ├── TemplateIcon.icns ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── MySQLWorkbench.xcscheme │ ├── MySQLWorkbenchCom.xcscheme │ ├── WBExtras.xcscheme │ ├── base.xcscheme │ ├── cairo.so.xcscheme │ ├── cdbc.xcscheme │ ├── db.mysql.diff.reporting.wbp.xcscheme │ ├── db.mysql.editors.wbp.xcscheme │ ├── db.mysql.editors.xcscheme │ ├── db.mysql.grt.xcscheme │ ├── db.mysql.parser.grt.xcscheme │ ├── db.mysql.query.grt.xcscheme │ ├── db.mysql.sqlparser.grt.xcscheme │ ├── db.mysql.wbp.xcscheme │ ├── db.search.wbp.xcscheme │ ├── genobj.xcscheme │ ├── genwrap.xcscheme │ ├── grt.xcscheme │ ├── mforms.so.xcscheme │ ├── mforms.xcscheme │ ├── mtemplate.xcscheme │ ├── mysql.canvas.xcscheme │ ├── parsers.xcscheme │ ├── sql.parser.xcscheme │ ├── utilities.grt.xcscheme │ ├── wb.model.editors.wbp.xcscheme │ ├── wb.model.editors.xcscheme │ ├── wb.model.grt.xcscheme │ ├── wb.model.snippets.wbp.xcscheme │ ├── wb.printing.wbp.xcscheme │ ├── wb.printing.xcscheme │ ├── wbcopytables.xcscheme │ ├── wbprivate.be.xcscheme │ ├── wbpublic.be.xcscheme │ ├── wbtests-ce.xcscheme │ └── wbtests-se.xcscheme ├── PrepareOutputDir.cmd ├── README.md ├── SECURITY.md ├── Scintilla-Info.plist ├── WBExtras-Info.plist ├── WBTests.manifest ├── backend ├── CMakeLists.txt ├── wbprivate │ ├── CMakeLists.txt │ ├── model │ │ ├── canvas_floater.cpp │ │ ├── canvas_floater.h │ │ ├── mini_view.cpp │ │ ├── mini_view.h │ │ ├── relationship_canvas_floater.cpp │ │ ├── relationship_canvas_floater.h │ │ ├── wb_catalog_tree_view.cpp │ │ ├── wb_catalog_tree_view.h │ │ ├── wb_component.cpp │ │ ├── wb_component.h │ │ ├── wb_component_basic.cpp │ │ ├── wb_component_basic.h │ │ ├── wb_component_logical.cpp │ │ ├── wb_component_logical.h │ │ ├── wb_component_physical.cpp │ │ ├── wb_component_physical.h │ │ ├── wb_component_physical_relationship.cpp │ │ ├── wb_context_model.cpp │ │ ├── wb_context_model.h │ │ ├── wb_diagram_options.cpp │ │ ├── wb_diagram_options.h │ │ ├── wb_history_tree.cpp │ │ ├── wb_history_tree.h │ │ ├── wb_layer_tree.cpp │ │ ├── wb_layer_tree.h │ │ ├── wb_model_diagram_form.cpp │ │ ├── wb_model_diagram_form.h │ │ ├── wb_overview_diagram.cpp │ │ ├── wb_overview_diagram.h │ │ ├── wb_overview_physical.cpp │ │ ├── wb_overview_physical.h │ │ ├── wb_overview_physical_schema.cpp │ │ ├── wb_overview_physical_schema.h │ │ ├── wb_overview_privileges.cpp │ │ ├── wb_overview_privileges.h │ │ ├── wb_physical_model_diagram_features.cpp │ │ ├── wb_physical_model_diagram_features.h │ │ ├── wb_template_list.cpp │ │ ├── wb_template_list.h │ │ ├── wb_user_datatypes.cpp │ │ └── wb_user_datatypes.h │ ├── sqlide │ │ ├── db_sql_editor_history_be.cpp │ │ ├── db_sql_editor_history_be.h │ │ ├── db_sql_editor_log.cpp │ │ ├── db_sql_editor_log.h │ │ ├── execute_routine_wizard.cpp │ │ ├── execute_routine_wizard.h │ │ ├── query_side_palette.cpp │ │ ├── query_side_palette.h │ │ ├── result_form_view.cpp │ │ ├── result_form_view.h │ │ ├── spatial_data_view.cpp │ │ ├── spatial_data_view.h │ │ ├── spatial_draw_box.cpp │ │ ├── spatial_draw_box.h │ │ ├── wb_context_sqlide.cpp │ │ ├── wb_context_sqlide.h │ │ ├── wb_live_schema_tree.cpp │ │ ├── wb_live_schema_tree.h │ │ ├── wb_sql_editor_buffer.cpp │ │ ├── wb_sql_editor_buffer.h │ │ ├── wb_sql_editor_form.cpp │ │ ├── wb_sql_editor_form.h │ │ ├── wb_sql_editor_form_ui.cpp │ │ ├── wb_sql_editor_form_ui.h │ │ ├── wb_sql_editor_help.cpp │ │ ├── wb_sql_editor_help.h │ │ ├── wb_sql_editor_panel.cpp │ │ ├── wb_sql_editor_panel.h │ │ ├── wb_sql_editor_result_panel.cpp │ │ ├── wb_sql_editor_result_panel.h │ │ ├── wb_sql_editor_snippets.cpp │ │ ├── wb_sql_editor_snippets.h │ │ ├── wb_sql_editor_tree_controller.cpp │ │ └── wb_sql_editor_tree_controller.h │ ├── wbprivate.be.vcxproj │ ├── wbprivate.be.vcxproj.filters │ └── workbench │ │ ├── SSHFileWrapper.cpp │ │ ├── SSHFileWrapper.h │ │ ├── SSHSessionWrapper.cpp │ │ ├── SSHSessionWrapper.h │ │ ├── about_box.cpp │ │ ├── about_box.h │ │ ├── license_view.cpp │ │ ├── license_view.h │ │ ├── metaclasses.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── summary.dox │ │ ├── upgrade_helper.cpp │ │ ├── upgrade_helper.h │ │ ├── wb_backend_public_interface.h │ │ ├── wb_command_ui.cpp │ │ ├── wb_command_ui.h │ │ ├── wb_context.cpp │ │ ├── wb_context.h │ │ ├── wb_context_names.h │ │ ├── wb_context_ui.cpp │ │ ├── wb_context_ui.h │ │ ├── wb_context_ui_home.cpp │ │ ├── wb_context_ui_home.h │ │ ├── wb_db_schema.cpp │ │ ├── wb_db_schema.h │ │ ├── wb_model_file.cpp │ │ ├── wb_model_file.h │ │ ├── wb_model_file_upgrade.cpp │ │ ├── wb_module.cpp │ │ ├── wb_module.h │ │ ├── wb_overview.cpp │ │ ├── wb_overview.h │ │ ├── wb_tunnel.cpp │ │ ├── wb_tunnel.h │ │ ├── wb_version.h │ │ ├── wmi.cpp │ │ └── wmi.h ├── wbpublic │ ├── CMakeLists.txt │ ├── grt │ │ ├── action_list.cpp │ │ ├── action_list.h │ │ ├── clipboard.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── editor_base.cpp │ │ ├── editor_base.h │ │ ├── exceptions.h │ │ ├── grt.be.vcproj │ │ ├── grt_dispatcher.cpp │ │ ├── grt_dispatcher.h │ │ ├── grt_manager.cpp │ │ ├── grt_manager.h │ │ ├── grt_message_list.cpp │ │ ├── grt_message_list.h │ │ ├── grt_reporter.cpp │ │ ├── grt_reporter.h │ │ ├── grt_shell.cpp │ │ ├── grt_shell.h │ │ ├── grt_string_list_model.cpp │ │ ├── grt_string_list_model.h │ │ ├── grt_threaded_task.cpp │ │ ├── grt_threaded_task.h │ │ ├── grt_value_inspector.cpp │ │ ├── grt_value_inspector.h │ │ ├── grt_walker.h │ │ ├── icon_manager.cpp │ │ ├── icon_manager.h │ │ ├── incremental_list_updater.h │ │ ├── parse_utils.cpp │ │ ├── parse_utils.h │ │ ├── plugin_manager.cpp │ │ ├── plugin_manager.h │ │ ├── refresh_ui.cpp │ │ ├── refresh_ui.h │ │ ├── spatial_handler.cpp │ │ ├── spatial_handler.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── summary.dox │ │ ├── tree_model.cpp │ │ ├── tree_model.h │ │ ├── validation_manager.cpp │ │ └── validation_manager.h │ ├── grtdb │ │ ├── catalog_templates.h │ │ ├── charset_list.cpp │ │ ├── charset_list.h │ │ ├── charset_utils.cpp │ │ ├── charset_utils.h │ │ ├── db_helpers.cpp │ │ ├── db_helpers.h │ │ ├── db_object_filter.cpp │ │ ├── db_object_filter.h │ │ ├── db_object_helpers.cpp │ │ ├── db_object_helpers.h │ │ ├── db_object_master_filter.cpp │ │ ├── db_object_master_filter.h │ │ ├── dbobject_roles.cpp │ │ ├── dbobject_roles.h │ │ ├── diff_dbobjectmatch.cpp │ │ ├── diff_dbobjectmatch.h │ │ ├── editor_dbobject.cpp │ │ ├── editor_dbobject.h │ │ ├── editor_routine.cpp │ │ ├── editor_routine.h │ │ ├── editor_routinegroup.cpp │ │ ├── editor_routinegroup.h │ │ ├── editor_schema.cpp │ │ ├── editor_schema.h │ │ ├── editor_table.cpp │ │ ├── editor_table.h │ │ ├── editor_user.cpp │ │ ├── editor_user.h │ │ ├── editor_user_role.cpp │ │ ├── editor_user_role.h │ │ ├── editor_view.cpp │ │ ├── editor_view.h │ │ ├── grt.db.be.vcproj │ │ ├── grtdb_backend_public_interface.h │ │ ├── role_tree_model.cpp │ │ ├── role_tree_model.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── summary.dox │ │ ├── sync_profile.cpp │ │ └── sync_profile.h │ ├── grtsqlparser │ │ ├── fk_ref.h │ │ ├── invalid_sql_parser.h │ │ ├── module_utils.cpp │ │ ├── module_utils.h │ │ ├── mysql_parser_services.cpp │ │ ├── mysql_parser_services.h │ │ ├── parser_services_common.h │ │ ├── sql_facade.cpp │ │ ├── sql_facade.h │ │ ├── sql_inserts_loader.cpp │ │ ├── sql_inserts_loader.h │ │ ├── sql_normalizer.cpp │ │ ├── sql_normalizer.h │ │ ├── sql_parser.h │ │ ├── sql_parser_base.cpp │ │ ├── sql_parser_base.h │ │ ├── sql_parser_public_interface.h │ │ ├── sql_schema_rename.h │ │ ├── sql_semantic_check.cpp │ │ ├── sql_semantic_check.h │ │ ├── sql_specifics.cpp │ │ ├── sql_specifics.h │ │ ├── sql_statement_decomposer.cpp │ │ ├── sql_statement_decomposer.h │ │ ├── sql_syntax_check.h │ │ └── stdafx.h │ ├── grtui │ │ ├── binary_data_editor.cpp │ │ ├── binary_data_editor.h │ │ ├── checkbox_list_control.cpp │ │ ├── checkbox_list_control.h │ │ ├── confirm_save_dialog.cpp │ │ ├── confirm_save_dialog.h │ │ ├── connection_page.h │ │ ├── db_conn_be.cpp │ │ ├── db_conn_be.h │ │ ├── file_charset_dialog.cpp │ │ ├── file_charset_dialog.h │ │ ├── geom_draw_box.cpp │ │ ├── geom_draw_box.h │ │ ├── grt.ui.be.vcproj │ │ ├── grt_wizard_form.cpp │ │ ├── grt_wizard_form.h │ │ ├── grt_wizard_plugin.cpp │ │ ├── grt_wizard_plugin.h │ │ ├── grtdb_connect_dialog.cpp │ │ ├── grtdb_connect_dialog.h │ │ ├── grtdb_connect_panel.cpp │ │ ├── grtdb_connect_panel.h │ │ ├── grtdb_connection_editor.cpp │ │ ├── grtdb_connection_editor.h │ │ ├── grtdb_object_filter.cpp │ │ ├── grtdb_object_filter.h │ │ ├── gui_plugin_base.cpp │ │ ├── gui_plugin_base.h │ │ ├── inserts_export_form.cpp │ │ ├── inserts_export_form.h │ │ ├── string_list_editor.cpp │ │ ├── string_list_editor.h │ │ ├── tests │ │ │ ├── boxtest.cpp │ │ │ └── wiztest.cpp │ │ ├── text_input_dialog.cpp │ │ ├── text_input_dialog.h │ │ ├── wizard_finished_page.cpp │ │ ├── wizard_finished_page.h │ │ ├── wizard_object_filter_page.cpp │ │ ├── wizard_object_filter_page.h │ │ ├── wizard_progress_page.cpp │ │ ├── wizard_progress_page.h │ │ ├── wizard_schema_filter_page.cpp │ │ ├── wizard_schema_filter_page.h │ │ ├── wizard_view_text_page.cpp │ │ └── wizard_view_text_page.h │ ├── objimpl │ │ ├── GrtStoredNote.cpp │ │ ├── db.mgmt │ │ │ ├── db_mgmt_SSHConnection.cpp │ │ │ ├── db_mgmt_SSHConnection.h │ │ │ ├── db_mgmt_SSHFile.cpp │ │ │ └── db_mgmt_SSHFile.h │ │ ├── db.migration │ │ │ └── db_migration_Migration.cpp │ │ ├── db.query │ │ │ ├── db_query_EditableResultset.cpp │ │ │ ├── db_query_EditableResultset.h │ │ │ ├── db_query_Editor.cpp │ │ │ ├── db_query_Editor.h │ │ │ ├── db_query_QueryBuffer.cpp │ │ │ ├── db_query_QueryBuffer.h │ │ │ ├── db_query_Resultset.cpp │ │ │ └── db_query_Resultset.h │ │ ├── db │ │ │ ├── db_Column.cpp │ │ │ ├── db_DatabaseObject.cpp │ │ │ ├── db_ForeignKey.cpp │ │ │ ├── db_Index.cpp │ │ │ ├── db_RoutineGroup.cpp │ │ │ ├── db_Schema.cpp │ │ │ ├── db_Table.cpp │ │ │ └── db_Trigger.cpp │ │ ├── model │ │ │ ├── model_Connection.cpp │ │ │ ├── model_Diagram.cpp │ │ │ ├── model_Figure.cpp │ │ │ ├── model_Layer.cpp │ │ │ ├── model_Model.cpp │ │ │ └── model_Object.cpp │ │ ├── ui │ │ │ ├── ui_ObjectEditor.cpp │ │ │ ├── ui_ObjectEditor_impl.cpp │ │ │ ├── ui_ObjectEditor_impl.h │ │ │ └── ui_db_ConnectPanel.cpp │ │ ├── workbench.logical │ │ │ ├── workbench_logical_Diagram.cpp │ │ │ └── workbench_logical_Model.cpp │ │ ├── workbench.model │ │ │ ├── workbench_model_ImageFigure.cpp │ │ │ └── workbench_model_NoteFigure.cpp │ │ ├── workbench.physical │ │ │ ├── workbench_physical_Connection.cpp │ │ │ ├── workbench_physical_Diagram.cpp │ │ │ ├── workbench_physical_Model.cpp │ │ │ ├── workbench_physical_RoutineGroupFigure.cpp │ │ │ ├── workbench_physical_TableFigure.cpp │ │ │ └── workbench_physical_ViewFigure.cpp │ │ └── wrapper │ │ │ ├── grt_PyObject.cpp │ │ │ ├── grt_PyObject_impl.h │ │ │ ├── mforms_ObjectReference.cpp │ │ │ ├── mforms_ObjectReference_impl.h │ │ │ ├── parser_ContextReference.cpp │ │ │ └── parser_ContextReference_impl.h │ ├── sqlide │ │ ├── column_width_cache.cpp │ │ ├── column_width_cache.h │ │ ├── recordset_be.cpp │ │ ├── recordset_be.h │ │ ├── recordset_cdbc_storage.cpp │ │ ├── recordset_cdbc_storage.h │ │ ├── recordset_data_storage.cpp │ │ ├── recordset_data_storage.h │ │ ├── recordset_sql_storage.cpp │ │ ├── recordset_sql_storage.h │ │ ├── recordset_sqlite_storage.cpp │ │ ├── recordset_sqlite_storage.h │ │ ├── recordset_table_inserts_storage.cpp │ │ ├── recordset_table_inserts_storage.h │ │ ├── recordset_text_storage.cpp │ │ ├── recordset_text_storage.h │ │ ├── sql_editor_be.cpp │ │ ├── sql_editor_be.h │ │ ├── sql_script_run_wizard.cpp │ │ ├── sql_script_run_wizard.h │ │ ├── sqlide.be.vcproj │ │ ├── sqlide_generics.cpp │ │ ├── sqlide_generics.h │ │ ├── sqlide_generics_private.h │ │ ├── table_inserts_loader_be.cpp │ │ ├── table_inserts_loader_be.h │ │ ├── var_grid_model_be.cpp │ │ └── var_grid_model_be.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── wbcanvas │ │ ├── badge_figure.cpp │ │ ├── badge_figure.h │ │ ├── base_bridge.cpp │ │ ├── base_bridge.h │ │ ├── connection_figure.cpp │ │ ├── connection_figure.h │ │ ├── figure_common.cpp │ │ ├── figure_common.h │ │ ├── image_figure.cpp │ │ ├── image_figure.h │ │ ├── layer_figure.cpp │ │ ├── layer_figure.h │ │ ├── model_connection_impl.cpp │ │ ├── model_connection_impl.h │ │ ├── model_diagram_impl.cpp │ │ ├── model_diagram_impl.h │ │ ├── model_figure_impl.cpp │ │ ├── model_figure_impl.h │ │ ├── model_layer_impl.cpp │ │ ├── model_layer_impl.h │ │ ├── model_model_impl.cpp │ │ ├── model_model_impl.h │ │ ├── model_object_impl.cpp │ │ ├── model_object_impl.h │ │ ├── note_figure.cpp │ │ ├── note_figure.h │ │ ├── routine_group_figure.cpp │ │ ├── routine_group_figure.h │ │ ├── stdafx.h │ │ ├── summary.dox │ │ ├── table_figure.cpp │ │ ├── table_figure.h │ │ ├── table_figure_idef1x.cpp │ │ ├── table_figure_idef1x.h │ │ ├── table_figure_simple.cpp │ │ ├── table_figure_simple.h │ │ ├── table_figure_wb.cpp │ │ ├── table_figure_wb.h │ │ ├── view_figure.cpp │ │ ├── view_figure.h │ │ ├── workbench_model_imagefigure_impl.cpp │ │ ├── workbench_model_imagefigure_impl.h │ │ ├── workbench_model_notefigure_impl.cpp │ │ ├── workbench_model_notefigure_impl.h │ │ ├── workbench_physical_connection_impl.cpp │ │ ├── workbench_physical_connection_impl.h │ │ ├── workbench_physical_diagram_impl.cpp │ │ ├── workbench_physical_diagram_impl.h │ │ ├── workbench_physical_model_impl.cpp │ │ ├── workbench_physical_model_impl.h │ │ ├── workbench_physical_routinegroupfigure_impl.cpp │ │ ├── workbench_physical_routinegroupfigure_impl.h │ │ ├── workbench_physical_tablefigure_impl.cpp │ │ ├── workbench_physical_tablefigure_impl.h │ │ ├── workbench_physical_viewfigure_impl.cpp │ │ └── workbench_physical_viewfigure_impl.h │ ├── wbpublic.be.vcxproj │ ├── wbpublic.be.vcxproj.filters │ └── wbpublic_public_interface.h └── windows │ ├── sqlide.wr │ └── src │ │ ├── SQLEditorFormWrapper.cpp │ │ ├── SQLEditorFormWrapper.h │ │ ├── SQLEditorWrapper.cpp │ │ ├── SQLEditorWrapper.h │ │ ├── db_sql_editor_history_wr.cpp │ │ ├── db_sql_editor_history_wr.h │ │ ├── recordset_wr.cpp │ │ ├── recordset_wr.h │ │ ├── var_grid_model_wr.cpp │ │ └── var_grid_model_wr.h │ ├── wbprivate.wr │ ├── src │ │ ├── ModelDiagramFormWrapper.cpp │ │ ├── ModelDiagramFormWrapper.h │ │ ├── Overview.cpp │ │ ├── Overview.h │ │ ├── Wb.cpp │ │ ├── Wb.h │ │ ├── WbCallbacks.cpp │ │ ├── WbCallbacks.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── wbprivate.wr.vcxproj │ └── wbprivate.wr.vcxproj.filters │ └── wbpublic.wr │ ├── src │ ├── ActionList.cpp │ ├── ActionList.h │ ├── BaseEditorWrapper.cpp │ ├── BaseEditorWrapper.h │ ├── DBObjectEditorWrapper.h │ ├── DBObjectFilterBE.cpp │ ├── DBObjectFilterBE.h │ ├── DBObjectMasterFilterBE.cpp │ ├── DBObjectMasterFilterBE.h │ ├── DelegateWrapper.h │ ├── Exceptions.h │ ├── GrtManager.h │ ├── GrtShell.h │ ├── GrtStringListModel.cpp │ ├── GrtStringListModel.h │ ├── GrtTemplates.h │ ├── GrtThreadedTaskWrapper.cpp │ ├── GrtThreadedTaskWrapper.h │ ├── GrtValueInspector.h │ ├── GrtWrapper.cpp │ ├── GrtWrapper.h │ ├── IconManager.h │ ├── ModelWrappers.cpp │ ├── ModelWrappers.h │ ├── ObjectRolesWrapper.cpp │ ├── ObjectRolesWrapper.h │ ├── RefreshUI.cpp │ ├── RefreshUI.h │ ├── RoleTreeBE.cpp │ ├── RoleTreeBE.h │ ├── RoutineEditorWrapper.cpp │ ├── RoutineEditorWrapper.h │ ├── RoutineGroupEditorWrapper.cpp │ ├── RoutineGroupEditorWrapper.h │ ├── SchemaEditorWrapper.cpp │ ├── SchemaEditorWrapper.h │ ├── TableEditorWrapper.cpp │ ├── TableEditorWrapper.h │ ├── UserEditorBE.cpp │ ├── UserEditorBE.h │ ├── UserRoleEditorBE.cpp │ ├── UserRoleEditorBE.h │ ├── ViewEditorWrapper.cpp │ ├── ViewEditorWrapper.h │ ├── stdafx.cpp │ └── stdafx.h │ ├── wbpublic.wr.vcxproj │ └── wbpublic.wr.vcxproj.filters ├── doc ├── Doxyfile ├── Doxyfile.scripting ├── Doxyfile4cpp ├── DoxygenRun.sh ├── WBArchicture.graffle ├── footer.html ├── grt_overview.png ├── main.dox ├── scripting.dox ├── scripting_sample_grt.py ├── tabs.css ├── validation.dox └── wb.css ├── ext ├── Aga.Controls │ ├── Aga.Controls.Design.csproj │ ├── Aga.Controls.csproj │ ├── BitmapHelper.cs │ ├── GifDecoder.cs │ ├── NodeControlCollectionEditor.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfoDesign.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── ResourceHelper.cs │ ├── Resources │ │ ├── 3dots.png │ │ ├── DVSplit.cur │ │ ├── Folder.bmp │ │ ├── FolderClosed.bmp │ │ ├── Leaf.bmp │ │ ├── check.bmp │ │ ├── loading_icon │ │ ├── minus.bmp │ │ ├── plus.bmp │ │ ├── uncheck.bmp │ │ └── unknown.bmp │ ├── StringCollectionEditor.cs │ ├── TextHelper.cs │ ├── Threading │ │ ├── AbortableThreadPool.cs │ │ ├── WorkItem.cs │ │ └── WorkItemStatus.cs │ ├── TimeCounter.cs │ ├── Tree │ │ ├── AutoRowHeightLayout.cs │ │ ├── ClassDiagram.cd │ │ ├── Column.cs │ │ ├── ColumnCollection.cs │ │ ├── DrawContext.cs │ │ ├── DropPosition.cs │ │ ├── EditorContext.cs │ │ ├── Enums.cs │ │ ├── FixedRowHeightLayout.cs │ │ ├── IRowLayout.cs │ │ ├── IToolTipProvider.cs │ │ ├── ITreeModel.cs │ │ ├── IncrementalSearch.cs │ │ ├── Input │ │ │ ├── ClickColumnState.cs │ │ │ ├── ColumnState.cs │ │ │ ├── InputState.cs │ │ │ ├── InputWithControl.cs │ │ │ ├── InputWithShift.cs │ │ │ ├── NormalInputState.cs │ │ │ ├── ReorderColumnState.cs │ │ │ └── ResizeColumnState.cs │ │ ├── Node.cs │ │ ├── NodeControlInfo.cs │ │ ├── NodeControls │ │ │ ├── BaseTextControl.cs │ │ │ ├── BindableControl.cs │ │ │ ├── ClassDiagram.cd │ │ │ ├── DrawEventArgs.cs │ │ │ ├── EditableControl.cs │ │ │ ├── ExpandingIcon.cs │ │ │ ├── InteractiveControl.cs │ │ │ ├── NodeCheckBox.cs │ │ │ ├── NodeComboBox.cs │ │ │ ├── NodeControl.cs │ │ │ ├── NodeControlValueEventArgs.cs │ │ │ ├── NodeControlsCollection.cs │ │ │ ├── NodeCustomBox.cs │ │ │ ├── NodeEventArgs.cs │ │ │ ├── NodeIcon.cs │ │ │ ├── NodeNumericUpDown.cs │ │ │ ├── NodePlusMinus.cs │ │ │ ├── NodeStateIcon.cs │ │ │ └── NodeTextBox.cs │ │ ├── SortedTreeModel.cs │ │ ├── TreeColumn.cs │ │ ├── TreeColumnCollection.cs │ │ ├── TreeColumnEventArgs.cs │ │ ├── TreeListAdapter.cs │ │ ├── TreeModel.cs │ │ ├── TreeModelBase.cs │ │ ├── TreeModelEventArgs.cs │ │ ├── TreeNodeAdv.cs │ │ ├── TreeNodeAdvMouseEventArgs.cs │ │ ├── TreePath.cs │ │ ├── TreePathEventArgs.cs │ │ ├── TreeViewAdv.Accessibility.cs │ │ ├── TreeViewAdv.Designer.cs │ │ ├── TreeViewAdv.Draw.cs │ │ ├── TreeViewAdv.Input.cs │ │ ├── TreeViewAdv.Properties.cs │ │ ├── TreeViewAdv.cs │ │ ├── TreeViewAdvCancelEventArgs.cs │ │ ├── TreeViewAdvDrawRowEventArgs.cs │ │ └── TreeViewAdvEventArgs.cs │ └── key.snk ├── CMakeLists.txt └── scintilla │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CONTRIBUTING │ ├── License.txt │ ├── README │ ├── cocoa │ ├── InfoBar.h │ ├── InfoBar.mm │ ├── InfoBarCommunicator.h │ ├── PlatCocoa.h │ ├── PlatCocoa.mm │ ├── QuartzTextLayout.h │ ├── QuartzTextStyle.h │ ├── QuartzTextStyleAttribute.h │ ├── ScintillaCocoa.h │ ├── ScintillaCocoa.mm │ ├── ScintillaFramework │ │ ├── Info.plist │ │ ├── ScintillaFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Scintilla.xcscheme │ │ ├── Scintilla_Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── module.modulemap │ ├── ScintillaTest │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── Info.plist │ │ ├── Scintilla-Info.plist │ │ ├── ScintillaTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ScintillaTest_Prefix.pch │ │ ├── TestData.sql │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ ├── ScintillaView.h │ ├── ScintillaView.mm │ ├── checkbuildosx.sh │ └── res │ │ ├── mac_cursor_busy.png │ │ └── mac_cursor_busy@2x.png │ ├── cppcheck.suppress │ ├── delbin.bat │ ├── doc │ ├── AddSource.txt │ ├── Design.html │ ├── Icons.html │ ├── Indicators.png │ ├── Lexer.txt │ ├── Markers.png │ ├── Privacy.html │ ├── SciBreak.jpg │ ├── SciCoding.html │ ├── SciRest.jpg │ ├── SciTEIco.png │ ├── SciWord.jpg │ ├── ScintillaDoc.html │ ├── ScintillaDownload.html │ ├── ScintillaHistory.html │ ├── ScintillaRelated.html │ ├── ScintillaToDo.html │ ├── ScintillaUsage.html │ ├── Steps.html │ ├── StyleMetadata.html │ ├── annotations.png │ ├── index.html │ └── styledmargin.png │ ├── gtk │ ├── CMakeLists.txt │ ├── Converter.h │ ├── DepGen.py │ ├── PlatGTK.cxx │ ├── ScintillaGTK.cxx │ ├── ScintillaGTK.h │ ├── ScintillaGTKAccessible.cxx │ ├── ScintillaGTKAccessible.h │ ├── deps.mak │ ├── makefile │ ├── scintilla-marshal.c │ ├── scintilla-marshal.h │ └── scintilla-marshal.list │ ├── include │ ├── ILexer.h │ ├── ILoader.h │ ├── Platform.h │ ├── SciLexer.h │ ├── Sci_Position.h │ ├── Scintilla.h │ ├── Scintilla.iface │ └── ScintillaWidget.h │ ├── lexers │ ├── LexA68k.cxx │ ├── LexAPDL.cxx │ ├── LexASY.cxx │ ├── LexAU3.cxx │ ├── LexAVE.cxx │ ├── LexAVS.cxx │ ├── LexAbaqus.cxx │ ├── LexAda.cxx │ ├── LexAsm.cxx │ ├── LexAsn1.cxx │ ├── LexBaan.cxx │ ├── LexBash.cxx │ ├── LexBasic.cxx │ ├── LexBatch.cxx │ ├── LexBibTeX.cxx │ ├── LexBullant.cxx │ ├── LexCIL.cxx │ ├── LexCLW.cxx │ ├── LexCOBOL.cxx │ ├── LexCPP.cxx │ ├── LexCSS.cxx │ ├── LexCaml.cxx │ ├── LexCmake.cxx │ ├── LexCoffeeScript.cxx │ ├── LexConf.cxx │ ├── LexCrontab.cxx │ ├── LexCsound.cxx │ ├── LexD.cxx │ ├── LexDMAP.cxx │ ├── LexDMIS.cxx │ ├── LexDiff.cxx │ ├── LexECL.cxx │ ├── LexEDIFACT.cxx │ ├── LexEScript.cxx │ ├── LexEiffel.cxx │ ├── LexErlang.cxx │ ├── LexErrorList.cxx │ ├── LexFlagship.cxx │ ├── LexForth.cxx │ ├── LexFortran.cxx │ ├── LexGAP.cxx │ ├── LexGui4Cli.cxx │ ├── LexHTML.cxx │ ├── LexHaskell.cxx │ ├── LexHex.cxx │ ├── LexIndent.cxx │ ├── LexInno.cxx │ ├── LexJSON.cxx │ ├── LexKVIrc.cxx │ ├── LexKix.cxx │ ├── LexLaTeX.cxx │ ├── LexLisp.cxx │ ├── LexLout.cxx │ ├── LexLua.cxx │ ├── LexMMIXAL.cxx │ ├── LexMPT.cxx │ ├── LexMSSQL.cxx │ ├── LexMagik.cxx │ ├── LexMake.cxx │ ├── LexMarkdown.cxx │ ├── LexMatlab.cxx │ ├── LexMaxima.cxx │ ├── LexMetapost.cxx │ ├── LexModula.cxx │ ├── LexMySQL.cxx │ ├── LexNim.cxx │ ├── LexNimrod.cxx │ ├── LexNsis.cxx │ ├── LexNull.cxx │ ├── LexOScript.cxx │ ├── LexOpal.cxx │ ├── LexPB.cxx │ ├── LexPLM.cxx │ ├── LexPO.cxx │ ├── LexPOV.cxx │ ├── LexPS.cxx │ ├── LexPascal.cxx │ ├── LexPerl.cxx │ ├── LexPowerPro.cxx │ ├── LexPowerShell.cxx │ ├── LexProgress.cxx │ ├── LexProps.cxx │ ├── LexPython.cxx │ ├── LexR.cxx │ ├── LexRebol.cxx │ ├── LexRegistry.cxx │ ├── LexRuby.cxx │ ├── LexRust.cxx │ ├── LexSAS.cxx │ ├── LexSML.cxx │ ├── LexSQL.cxx │ ├── LexSTTXT.cxx │ ├── LexScriptol.cxx │ ├── LexSmalltalk.cxx │ ├── LexSorcus.cxx │ ├── LexSpecman.cxx │ ├── LexSpice.cxx │ ├── LexStata.cxx │ ├── LexTACL.cxx │ ├── LexTADS3.cxx │ ├── LexTAL.cxx │ ├── LexTCL.cxx │ ├── LexTCMD.cxx │ ├── LexTeX.cxx │ ├── LexTxt2tags.cxx │ ├── LexVB.cxx │ ├── LexVHDL.cxx │ ├── LexVerilog.cxx │ ├── LexVisualProlog.cxx │ └── LexYAML.cxx │ ├── lexlib │ ├── Accessor.cxx │ ├── Accessor.h │ ├── CharacterCategory.cxx │ ├── CharacterCategory.h │ ├── CharacterSet.cxx │ ├── CharacterSet.h │ ├── DefaultLexer.cxx │ ├── DefaultLexer.h │ ├── LexAccessor.h │ ├── LexerBase.cxx │ ├── LexerBase.h │ ├── LexerModule.cxx │ ├── LexerModule.h │ ├── LexerNoExceptions.cxx │ ├── LexerNoExceptions.h │ ├── LexerSimple.cxx │ ├── LexerSimple.h │ ├── OptionSet.h │ ├── PropSetSimple.cxx │ ├── PropSetSimple.h │ ├── SparseState.h │ ├── StringCopy.h │ ├── StyleContext.cxx │ ├── StyleContext.h │ ├── SubStyles.h │ ├── WordList.cxx │ └── WordList.h │ ├── qt │ ├── README │ ├── ScintillaEdit │ │ ├── ScintillaDocument.cpp │ │ ├── ScintillaDocument.h │ │ ├── ScintillaEdit.cpp.template │ │ ├── ScintillaEdit.h.template │ │ ├── ScintillaEdit.pro │ │ └── WidgetGen.py │ ├── ScintillaEditBase │ │ ├── Notes.txt │ │ ├── PlatQt.cpp │ │ ├── PlatQt.h │ │ ├── ScintillaEditBase.cpp │ │ ├── ScintillaEditBase.h │ │ ├── ScintillaEditBase.pro │ │ ├── ScintillaQt.cpp │ │ └── ScintillaQt.h │ └── ScintillaEditPy │ │ ├── README │ │ ├── ScintillaConstants.py.template │ │ ├── ScintillaEditPy.pro │ │ ├── global.h │ │ ├── sepbuild.py │ │ ├── testsepq.py │ │ └── typesystem_ScintillaEdit.xml.template │ ├── scripts │ ├── Dependencies.py │ ├── Face.py │ ├── FileGenerator.py │ ├── GenerateCaseConvert.py │ ├── GenerateCharacterCategory.py │ ├── HFacer.py │ ├── HeaderCheck.py │ ├── HeaderOrder.txt │ ├── LexGen.py │ ├── ScintillaData.py │ └── __init__.py │ ├── src │ ├── AutoComplete.cxx │ ├── AutoComplete.h │ ├── CallTip.cxx │ ├── CallTip.h │ ├── CaseConvert.cxx │ ├── CaseConvert.h │ ├── CaseFolder.cxx │ ├── CaseFolder.h │ ├── Catalogue.cxx │ ├── Catalogue.h │ ├── CellBuffer.cxx │ ├── CellBuffer.h │ ├── CharClassify.cxx │ ├── CharClassify.h │ ├── ContractionState.cxx │ ├── ContractionState.h │ ├── DBCS.cxx │ ├── DBCS.h │ ├── Decoration.cxx │ ├── Decoration.h │ ├── Document.cxx │ ├── Document.h │ ├── EditModel.cxx │ ├── EditModel.h │ ├── EditView.cxx │ ├── EditView.h │ ├── Editor.cxx │ ├── Editor.h │ ├── ElapsedPeriod.h │ ├── ExternalLexer.cxx │ ├── ExternalLexer.h │ ├── FontQuality.h │ ├── Indicator.cxx │ ├── Indicator.h │ ├── IntegerRectangle.h │ ├── KeyMap.cxx │ ├── KeyMap.h │ ├── LineMarker.cxx │ ├── LineMarker.h │ ├── MarginView.cxx │ ├── MarginView.h │ ├── Partitioning.h │ ├── PerLine.cxx │ ├── PerLine.h │ ├── Position.h │ ├── PositionCache.cxx │ ├── PositionCache.h │ ├── RESearch.cxx │ ├── RESearch.h │ ├── RunStyles.cxx │ ├── RunStyles.h │ ├── SciTE.properties │ ├── ScintillaBase.cxx │ ├── ScintillaBase.h │ ├── Selection.cxx │ ├── Selection.h │ ├── SparseVector.h │ ├── SplitVector.h │ ├── Style.cxx │ ├── Style.h │ ├── UniConversion.cxx │ ├── UniConversion.h │ ├── UniqueString.cxx │ ├── UniqueString.h │ ├── ViewStyle.cxx │ ├── ViewStyle.h │ ├── XPM.cxx │ └── XPM.h │ ├── test │ ├── MessageNumbers.py │ ├── README │ ├── ScintillaCallable.py │ ├── XiteMenu.py │ ├── XiteQt.py │ ├── XiteWin.py │ ├── examples │ │ ├── perl-test-5220delta.pl │ │ ├── perl-test-5220delta.pl.styled │ │ ├── perl-test-sub-prototypes.pl │ │ ├── perl-test-sub-prototypes.pl.styled │ │ ├── x.asp │ │ ├── x.asp.styled │ │ ├── x.cxx │ │ ├── x.cxx.styled │ │ ├── x.d │ │ ├── x.d.styled │ │ ├── x.html │ │ ├── x.html.styled │ │ ├── x.lua │ │ ├── x.lua.styled │ │ ├── x.nim │ │ ├── x.nim.styled │ │ ├── x.php │ │ ├── x.php.styled │ │ ├── x.pl │ │ ├── x.pl.styled │ │ ├── x.py │ │ ├── x.py.styled │ │ ├── x.rb │ │ ├── x.rb.styled │ │ ├── x.tcl │ │ ├── x.tcl.styled │ │ ├── x.vb │ │ └── x.vb.styled │ ├── gi │ │ ├── Scintilla-0.1.gir.good │ │ ├── filter-scintilla-h.py │ │ └── gi-test.py │ ├── lexTests.py │ ├── performanceTests.py │ ├── simpleTests.py │ ├── unit │ │ ├── LICENSE_1_0.txt │ │ ├── README │ │ ├── Sci.natvis │ │ ├── SciTE.properties │ │ ├── UnitTester.cxx │ │ ├── UnitTester.vcxproj │ │ ├── catch.hpp │ │ ├── makefile │ │ ├── test.mak │ │ ├── testCellBuffer.cxx │ │ ├── testCharClassify.cxx │ │ ├── testContractionState.cxx │ │ ├── testDecoration.cxx │ │ ├── testPartitioning.cxx │ │ ├── testRunStyles.cxx │ │ ├── testSparseState.cxx │ │ ├── testSparseVector.cxx │ │ ├── testSplitVector.cxx │ │ ├── testUniConversion.cxx │ │ ├── testWordList.cxx │ │ └── unitTest.cxx │ └── xite.py │ ├── tgzsrc │ ├── vcbuild │ ├── Scintilla.vcxproj │ └── Scintilla.vcxproj.filters │ ├── version.txt │ ├── win32 │ ├── DepGen.py │ ├── HanjaDic.cxx │ ├── HanjaDic.h │ ├── PlatWin.cxx │ ├── PlatWin.h │ ├── SciLexer.vcxproj │ ├── SciTE.properties │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── ScintillaDLL.cxx │ ├── ScintillaWR.cpp │ ├── ScintillaWR.h │ ├── ScintillaWin.cxx │ ├── ScintillaWin.h │ ├── deps.mak │ ├── makefile │ ├── nmdeps.mak │ └── scintilla.mak │ └── zipsrc.bat ├── frontend ├── CMakeLists.txt ├── common │ ├── advanced_sidebar.cpp │ ├── advanced_sidebar.h │ ├── document_properties_form.cpp │ ├── document_properties_form.h │ ├── grt_code_editor.cpp │ ├── grt_code_editor.h │ ├── grt_plugin_wizard.cpp │ ├── grt_plugin_wizard.h │ ├── grt_python_debugger.cpp │ ├── grt_python_debugger.h │ ├── grt_shell_window.cpp │ ├── grt_shell_window.h │ ├── new_connection_wizard.cpp │ ├── new_connection_wizard.h │ ├── new_server_instance_wizard.cpp │ ├── new_server_instance_wizard.h │ ├── plugin_install_window.cpp │ ├── plugin_install_window.h │ ├── plugin_manager_window.cpp │ ├── plugin_manager_window.h │ ├── preferences_form.cpp │ ├── preferences_form.h │ ├── select_option_dialog.cpp │ ├── select_option_dialog.h │ ├── server_instance_editor.cpp │ ├── server_instance_editor.h │ ├── snippet_list.cpp │ ├── snippet_list.h │ ├── snippet_popover.cpp │ ├── snippet_popover.h │ ├── user_defined_type_editor.cpp │ └── user_defined_type_editor.h ├── linux │ ├── CMakeLists.txt │ ├── README │ ├── linux_utilities │ │ ├── CMakeLists.txt │ │ ├── auto_completable.cpp │ │ ├── auto_completable.h │ │ ├── context_menu.h │ │ ├── editable_iconview.cpp │ │ ├── editable_iconview.h │ │ ├── form_view_base.cpp │ │ ├── form_view_base.h │ │ ├── gtk_helpers.cpp │ │ ├── gtk_helpers.h │ │ ├── image_cache.cpp │ │ ├── image_cache.h │ │ ├── listmodel_wrapper.cpp │ │ ├── listmodel_wrapper.h │ │ ├── main_app.cpp │ │ ├── main_app.h │ │ ├── multi_view.cpp │ │ ├── multi_view.h │ │ ├── notebook_dockingpoint.cpp │ │ ├── notebook_dockingpoint.h │ │ ├── plugin_editor_base.cpp │ │ ├── plugin_editor_base.h │ │ ├── text_list_columns_model.h │ │ ├── treemodel_wrapper.cpp │ │ ├── treemodel_wrapper.h │ │ ├── wbdbg.h │ │ ├── widget_saver.cpp │ │ ├── widget_saver.h │ │ ├── widgets_auto_cleaner.cpp │ │ └── widgets_auto_cleaner.h │ ├── mforms │ │ ├── record_grid_view.cpp │ │ └── record_grid_view.h │ ├── sqlide │ │ ├── CMakeLists.txt │ │ ├── custom_renderers.h │ │ ├── grid_view.cpp │ │ ├── grid_view.h │ │ ├── grid_view_model.cpp │ │ ├── grid_view_model.h │ │ ├── recordset_view.cpp │ │ └── recordset_view.h │ └── workbench │ │ ├── CMakeLists.txt │ │ ├── diagram_size_form.cpp │ │ ├── diagram_size_form.h │ │ ├── documentation_box.cpp │ │ ├── documentation_box.h │ │ ├── main.cpp │ │ ├── main_form.cpp │ │ ├── main_form.h │ │ ├── model_diagram_panel.cpp │ │ ├── model_diagram_panel.h │ │ ├── model_panel.cpp │ │ ├── model_panel.h │ │ ├── mysql-workbench.in │ │ ├── navigator_box.cpp │ │ ├── navigator_box.h │ │ ├── overview_panel.cpp │ │ ├── overview_panel.h │ │ ├── program.cpp │ │ ├── program.h │ │ ├── properties_tree.cpp │ │ ├── properties_tree.h │ │ ├── res │ │ ├── diagram_size_form.glade │ │ ├── diagram_view.glade │ │ ├── find.glade │ │ ├── find.gladep │ │ ├── find_advanced.glade │ │ ├── glade2cpp.pl │ │ ├── input_dialog.glade │ │ ├── model_view.glade │ │ ├── wb.glade │ │ ├── wb.gladep │ │ ├── wb.physical.schemata.glade │ │ └── wb_glade.cpp │ │ ├── sqlide_form.cpp │ │ ├── sqlide_form.h │ │ ├── sqlide_main.cpp │ │ ├── sqlide_main.h │ │ ├── sqlide_output_view.cpp │ │ ├── sqlide_output_view.h │ │ ├── workbench.css │ │ └── workbench.rc ├── mac │ ├── Base.lproj │ │ ├── DiagramOptions.xib │ │ ├── IconCollectionView.xib │ │ ├── MainMenu.xib │ │ ├── MainWindow.xib │ │ ├── PageSetup.xib │ │ ├── PluginEditorWindow.xib │ │ └── WbResultsetView.xib │ ├── English.lproj │ │ └── InputDialog.xib │ ├── components │ │ ├── MCollectionViewItem.h │ │ ├── MCollectionViewItem.m │ │ ├── MCollectionViewItemView.h │ │ ├── MCollectionViewItemView.m │ │ ├── MColoredView.h │ │ ├── MColoredView.m │ │ ├── MContainerView.h │ │ ├── MContainerView.m │ │ ├── MFCocoa.h │ │ ├── MFCocoa.mm │ │ ├── MOutlineView.h │ │ ├── MOutlineView.mm │ │ ├── MSpinProgressCell.h │ │ ├── MSpinProgressCell.m │ │ ├── MStatusBar.h │ │ ├── MStatusBar.m │ │ ├── MTabSwitcher.h │ │ ├── MTabSwitcher.mm │ │ ├── MTableView.h │ │ ├── MTableView.mm │ │ ├── MTextFieldCellNoTooltip.h │ │ ├── MTextFieldCellNoTooltip.m │ │ ├── MTogglePane.h │ │ ├── MTogglePane.mm │ │ ├── MVerticalLayoutView.h │ │ ├── MVerticalLayoutView.m │ │ ├── NSMenu_extras.h │ │ ├── NSMenu_extras.mm │ │ ├── WBBasePanel.h │ │ ├── WBBasePanel.mm │ │ ├── WBColorCell │ │ │ ├── WBColorCell.h │ │ │ ├── WBColorCell.m │ │ │ ├── WBColorCellUnitTests.h │ │ │ └── WBColorCellUnitTests.m │ │ ├── WBMiniToolbar.h │ │ ├── WBMiniToolbar.m │ │ ├── WBSidebarPanel.h │ │ ├── WBSidebarPanel.mm │ │ ├── WBSplitPanel.h │ │ ├── WBSplitPanel.mm │ │ ├── WBSplitView │ │ │ ├── WBSplitView.h │ │ │ ├── WBSplitView.m │ │ │ ├── WBSplitViewUnbrokenizerDelegate.h │ │ │ └── WBSplitViewUnbrokenizerDelegate.m │ │ └── WBTabView │ │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ ├── GreenhouseWindowController.h │ │ │ ├── GreenhouseWindowController.m │ │ │ ├── Info.plist │ │ │ ├── WBTabView.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ └── project.pbxproj │ │ │ ├── WBTabView │ │ │ ├── Graphics │ │ │ │ ├── LeftArrowIconDark.png │ │ │ │ ├── LeftArrowIconLight.png │ │ │ │ ├── RightArrowIconDark.png │ │ │ │ ├── RightArrowIconLight.png │ │ │ │ ├── SchemaTabIconDark.png │ │ │ │ ├── SchemaTabIconLight.png │ │ │ │ ├── TabClose_PressedDark.png │ │ │ │ ├── TabClose_PressedLight.png │ │ │ │ ├── TabClose_UnpressedDark.png │ │ │ │ ├── TabClose_UnpressedLight.png │ │ │ │ ├── TabDocument.png │ │ │ │ ├── TabMenuIconDark.png │ │ │ │ └── TabMenuIconLight.png │ │ │ └── Sources │ │ │ │ ├── CGColorUtilities.h │ │ │ │ ├── CGColorUtilities.mm │ │ │ │ ├── EditorTabs │ │ │ │ ├── WBEditorTabItem.h │ │ │ │ ├── WBEditorTabItem.m │ │ │ │ ├── WBEditorTabView.h │ │ │ │ └── WBEditorTabView.m │ │ │ │ ├── GrayTabs │ │ │ │ ├── WBGrayTabItem.h │ │ │ │ ├── WBGrayTabItem.mm │ │ │ │ ├── WBGrayTabView.h │ │ │ │ └── WBGrayTabView.mm │ │ │ │ ├── ResponderLayer.h │ │ │ │ ├── ResponderLayer.mm │ │ │ │ ├── SchemaTabs │ │ │ │ ├── WBSchemaTabItem.h │ │ │ │ ├── WBSchemaTabItem.mm │ │ │ │ ├── WBSchemaTabView.h │ │ │ │ └── WBSchemaTabView.mm │ │ │ │ ├── WBTabItem.h │ │ │ │ ├── WBTabItem.mm │ │ │ │ ├── WBTabView.h │ │ │ │ └── WBTabView.mm │ │ │ ├── WBTabView_Prefix.pch │ │ │ └── main.m │ ├── docking │ │ ├── TabViewDockingDelegate.h │ │ └── TabViewDockingDelegate.mm │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ ├── mforms │ │ ├── RecordGridView.h │ │ └── RecordGridView.mm │ ├── plugin │ │ ├── WBPluginEditorBase.h │ │ ├── WBPluginEditorBase.mm │ │ ├── WBPluginWindowBase.h │ │ └── WBPluginWindowBase.mm │ ├── resultset │ │ ├── MGridView.h │ │ ├── MGridView.mm │ │ ├── MQIndicatorCell.h │ │ ├── MQIndicatorCell.m │ │ ├── MQResultSetCell.h │ │ ├── MQResultSetCell.m │ │ ├── MResultsetViewer.h │ │ └── MResultsetViewer.mm │ ├── sqlide │ │ ├── WBSQLQueryPanel.h │ │ ├── WBSQLQueryPanel.mm │ │ └── WBSQLQueryPanel.xib │ ├── utilities │ │ ├── GRTIconCache.h │ │ ├── GRTIconCache.mm │ │ ├── GRTListDataSource.h │ │ ├── GRTListDataSource.mm │ │ ├── GRTTreeDataSource.h │ │ ├── GRTTreeDataSource.mm │ │ ├── MCPPUtilities.h │ │ ├── MCPPUtilities.mm │ │ ├── NSColor_extras.h │ │ ├── NSColor_extras.m │ │ ├── NSString_extras.h │ │ ├── NSString_extras.mm │ │ ├── WBExceptions.h │ │ └── WBExceptions.m │ └── workbench │ │ ├── MainWindowController+Model.h │ │ ├── MainWindowController+Model.mm │ │ ├── MainWindowController.h │ │ ├── MainWindowController.mm │ │ ├── WBDiagramSizeController.h │ │ ├── WBDiagramSizeController.mm │ │ ├── WBMFormsPluginPanel.h │ │ ├── WBMFormsPluginPanel.mm │ │ ├── WBMainController.h │ │ ├── WBMainController.mm │ │ ├── WBMenuManager.h │ │ ├── WBMenuManager.mm │ │ ├── WBModelDiagram.xib │ │ ├── WBModelDiagramPanel.h │ │ ├── WBModelDiagramPanel.mm │ │ ├── WBModelOverview.xib │ │ ├── WBModelOverviewPanel.h │ │ ├── WBModelOverviewPanel.mm │ │ ├── WBModelSidebarController.h │ │ ├── WBModelSidebarController.mm │ │ ├── WBObjectDescriptionController.h │ │ ├── WBObjectDescriptionController.mm │ │ ├── WBObjectPropertiesController.h │ │ ├── WBObjectPropertiesController.mm │ │ ├── WBOverviewComponents.h │ │ ├── WBOverviewComponents.mm │ │ ├── WBOverviewListController.h │ │ ├── WBOverviewListController.mm │ │ ├── WBOverviewPanel.h │ │ ├── WBOverviewPanel.mm │ │ ├── WBPluginPanel.h │ │ ├── WBPluginPanel.mm │ │ ├── WBPluginPanelController.h │ │ ├── WBPluginPanelController.mm │ │ ├── WBPluginWindowController.h │ │ ├── WBPluginWindowController.mm │ │ ├── WBSQLQueryUI.h │ │ └── WBSQLQueryUI.mm └── windows │ ├── MySQLCsUtilities │ ├── GridView.cs │ ├── GrtListModel.cs │ ├── GrtListNode.cs │ ├── GrtToolTipProvider.cs │ ├── GrtTreeModel.cs │ ├── GrtTreeNode.cs │ ├── MySQLCsUtilities.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── MySQLAssembly.ico │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── busy-indicator-lightblue.gif │ │ ├── busy-indicator-white.gif │ │ ├── field_overlay_blob.png │ │ └── field_overlay_null.png │ ├── SimpleGrtListModel.cs │ └── SimpleGrtTreeModel.cs │ ├── MySQLWorkbench │ ├── App.config │ ├── ApplicationInstanceManager.cs │ ├── AssemblyReleaseType.cs │ ├── DiagramOptionsForm.Designer.cs │ ├── DiagramOptionsForm.cs │ ├── DiagramOptionsForm.resx │ ├── ExceptionDialog.Designer.cs │ ├── ExceptionDialog.cs │ ├── ExceptionDialog.resx │ ├── InstanceProxy.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ModelCatalogForm.Designer.cs │ ├── ModelCatalogForm.cs │ ├── ModelCatalogForm.resx │ ├── ModelDataDictionaryForm.Designer.cs │ ├── ModelDataDictionaryForm.cs │ ├── ModelDataDictionaryForm.resx │ ├── ModelDiagramForm.Designer.cs │ ├── ModelDiagramForm.cs │ ├── ModelDiagramForm.resx │ ├── ModelLayerForm.Designer.cs │ ├── ModelLayerForm.cs │ ├── ModelLayerForm.resx │ ├── ModelNavigatorForm.Designer.cs │ ├── ModelNavigatorForm.cs │ ├── ModelNavigatorForm.resx │ ├── ModelObjectDescriptionForm.Designer.cs │ ├── ModelObjectDescriptionForm.cs │ ├── ModelObjectDescriptionForm.resx │ ├── ModelOverviewForm.Designer.cs │ ├── ModelOverviewForm.cs │ ├── ModelOverviewForm.resx │ ├── ModelPropertiesForm.Designer.cs │ ├── ModelPropertiesForm.cs │ ├── ModelPropertiesForm.resx │ ├── MySQLWorkbench.csproj │ ├── NodeMultiTypeBox.cs │ ├── PageSettingsForm.Designer.cs │ ├── PageSettingsForm.cs │ ├── PageSettingsForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── Resources │ │ ├── MySQLWorkbench.ico │ │ ├── PinDown_18x18.png │ │ ├── Pin_18x18.png │ │ ├── WBSplitterBackground.png │ │ ├── WBTabHeaderBackground.png │ │ ├── background_top_shadow.png │ │ ├── edit.png │ │ ├── header_bar_blue.png │ │ ├── header_bar_gray.png │ │ ├── header_bar_orange.png │ │ ├── menu_se.png │ │ ├── message_wb_bug.png │ │ ├── navigator_zoom_in.png │ │ ├── navigator_zoom_out.png │ │ ├── news_arrow.png │ │ ├── oracle_logo_white.png │ │ ├── statusbar_output.png │ │ ├── statusbar_separator.png │ │ ├── statusbar_shell.png │ │ └── wb_toolbar_pages_18x18.png │ ├── Settings.cs │ ├── SqlIdeForm.Designer.cs │ ├── SqlIdeForm.cs │ ├── SqlIdeForm.resx │ ├── TextEditorForm.Designer.cs │ ├── TextEditorForm.cs │ ├── TextEditorForm.resx │ ├── UndoHistoryForm.Designer.cs │ ├── UndoHistoryForm.cs │ ├── UndoHistoryForm.resx │ ├── UserDatatypesForm.Designer.cs │ ├── UserDatatypesForm.cs │ ├── UserDatatypesForm.resx │ └── WorkbenchMenuManager.cs │ ├── WBControls │ ├── AdvNodeCheckBox.cs │ ├── AdvNodeComboBox.cs │ ├── AdvNodeTextBox.cs │ ├── AgaTreeStateKeeper.cs │ ├── App.config │ ├── Bevel.cs │ ├── CollapsingPanel.cs │ ├── DrawablePanel.cs │ ├── FindPanel.Designer.cs │ ├── FindPanel.cs │ ├── FindPanel.resx │ ├── FlatTabControl.cs │ ├── FlatTabControl.resx │ ├── FlatTabControlCollecttionEditor.cs │ ├── HUDForm.Designer.cs │ ├── HUDForm.cs │ ├── HUDForm.resx │ ├── HeaderPanel.cs │ ├── MenuManager.cs │ ├── MySQLAdvTextBox.Designer.cs │ ├── MySQLAdvTextBox.cs │ ├── MySQLAdvTextBox.resx │ ├── MySQLAssembly.ico │ ├── MySQLTaskStatusLabel.Designer.cs │ ├── MySQLTaskStatusLabel.cs │ ├── MySQLTaskStatusLabel.resx │ ├── Properties │ │ ├── AssemblyInfo.Design.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Back.png │ │ ├── DockPaneCaption_Options1.png │ │ ├── Next.png │ │ ├── busy-indicator-blue.gif │ │ ├── busy-indicator-darkblue.gif │ │ ├── busy-indicator-lightblue.gif │ │ ├── busy-indicator-white.gif │ │ ├── busy-indicator-yellow.gif │ │ ├── collapsing_panel_bg.png │ │ ├── collapsing_panel_grid_bg.png │ │ ├── collapsing_panel_grid_details.png │ │ ├── collapsing_panel_grid_large_icons.png │ │ ├── collapsing_panel_grid_small_icons.png │ │ ├── collapsing_panel_header_bg.png │ │ ├── collapsing_panel_header_bg_flat.png │ │ ├── collapsing_panel_header_shadow.png │ │ ├── collapsing_panel_header_tab_add.png │ │ ├── collapsing_panel_header_tab_del.png │ │ ├── collapsing_panel_header_tab_left.png │ │ ├── collapsing_panel_header_tab_left_flat.png │ │ ├── collapsing_panel_header_tab_middle.png │ │ ├── collapsing_panel_header_tab_middle_flat.png │ │ ├── collapsing_panel_header_tab_right.png │ │ ├── collapsing_panel_header_tab_right_flat.png │ │ ├── collapsing_panel_header_tab_separator.png │ │ ├── collapsing_panel_header_tab_separator_flat.png │ │ ├── collapsing_panel_minus.png │ │ ├── collapsing_panel_minus_flat.png │ │ ├── collapsing_panel_plus.png │ │ ├── collapsing_panel_plus_flat.png │ │ ├── collapsing_panel_tab_left.png │ │ ├── collapsing_panel_tab_middle.png │ │ ├── collapsing_panel_tab_right.png │ │ ├── dialog_input.png │ │ ├── field_overlay_blob.png │ │ ├── field_overlay_null.png │ │ ├── group_header_bg.png │ │ ├── group_header_minus.png │ │ ├── group_header_plus.png │ │ ├── menu_se.png │ │ ├── search_clear.png │ │ ├── search_doc_action.png │ │ ├── search_dropdown.png │ │ ├── search_icon.png │ │ ├── task_checked.png │ │ ├── task_disabled.png │ │ ├── task_error.png │ │ ├── task_unchecked.png │ │ └── wait_panel_cancel_button.png │ ├── StringInputForm.Designer.cs │ ├── StringInputForm.cs │ ├── StringInputForm.resx │ ├── WBControls.Design.csproj │ ├── WBControls.csproj │ └── WbToolStripRenderers.cs │ ├── WBPlugins │ ├── DockablePlugin.Designer.cs │ ├── DockablePlugin.cs │ ├── DockablePlugin.resx │ ├── IWorkbenchDocument.cs │ ├── MySQLAssembly.ico │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WBPlugins.csproj │ ├── WizardPlugin.Designer.cs │ ├── WizardPlugin.cs │ ├── WizardPlugin.resx │ └── WizardPluginPages.cs │ ├── grt.db │ ├── DbObjectEditorPages.Designer.cs │ ├── DbObjectEditorPages.cs │ ├── DbObjectEditorPages.resx │ ├── MySQLAssembly.ico │ ├── ObjectEditorPlugin.Designer.cs │ ├── ObjectEditorPlugin.cs │ ├── ObjectEditorPlugin.resx │ ├── ObjectEditorView.Designer.cs │ ├── ObjectEditorView.cs │ ├── ObjectEditorView.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── StandaloneWindowPlugin.Designer.cs │ ├── StandaloneWindowPlugin.cs │ └── grt.db.fe.csproj │ └── sqlide │ ├── MySQLAssembly.ico │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── RecordsetView.Designer.cs │ ├── RecordsetView.cs │ ├── RecordsetView.resx │ ├── Resources │ ├── tiny_pin.png │ └── tiny_pinned.png │ ├── WorkbenchToolbarManager.cs │ └── sqlide.fe.csproj ├── generated ├── CMakeLists.txt ├── Doxyfile ├── Makefile ├── README.txt ├── generate-mac.sh ├── generate.cmd ├── grti │ ├── plugin.h │ ├── wb_model_reporting.h │ └── wbvalidation.h ├── grts │ ├── structs.app.h │ ├── structs.db.h │ ├── structs.db.mgmt.h │ ├── structs.db.migration.h │ ├── structs.db.mssql.h │ ├── structs.db.mysql.h │ ├── structs.db.query.h │ ├── structs.db.sybase.h │ ├── structs.eer.h │ ├── structs.h │ ├── structs.meta.h │ ├── structs.model.h │ ├── structs.ui.h │ ├── structs.workbench.h │ ├── structs.workbench.logical.h │ ├── structs.workbench.model.h │ ├── structs.workbench.model.reporting.h │ ├── structs.workbench.physical.h │ └── structs.wrapper.h └── summary.dox ├── images ├── CMakeLists.txt ├── admin │ ├── CMakeLists.txt │ ├── admin_add_user.png │ ├── admin_add_user@2x.png │ ├── admin_audit_inspector.png │ ├── admin_audit_inspector@2x.png │ ├── admin_config_wizard.png │ ├── admin_config_wizard@2x.png │ ├── admin_connections.png │ ├── admin_connections@2x.png │ ├── admin_dashboard.png │ ├── admin_dashboard@2x.png │ ├── admin_export.png │ ├── admin_export@2x.png │ ├── admin_firewall.png │ ├── admin_firewall@2x.png │ ├── admin_firewall_reports.png │ ├── admin_info_offline.png │ ├── admin_info_offline@2x.png │ ├── admin_info_running.png │ ├── admin_info_running@2x.png │ ├── admin_info_stopped.png │ ├── admin_info_stopped@2x.png │ ├── admin_info_unknown.png │ ├── admin_info_unknown@2x.png │ ├── admin_instrumentation_setup.png │ ├── admin_instrumentation_setup@2x.png │ ├── admin_manage_exported.png │ ├── admin_manage_exported@2x.png │ ├── admin_manage_privs.png │ ├── admin_manage_privs@2x.png │ ├── admin_meb_backup.png │ ├── admin_meb_backup@2x.png │ ├── admin_meb_restore.png │ ├── admin_meb_restore@2x.png │ ├── admin_option_file.png │ ├── admin_option_file@2x.png │ ├── admin_performance_reports.png │ ├── admin_performance_reports@2x.png │ ├── admin_restore_data.png │ ├── admin_restore_data@2x.png │ ├── admin_schema_management.png │ ├── admin_schema_management@2x.png │ ├── admin_scripts.png │ ├── admin_scripts@2x.png │ ├── admin_server_logs.png │ ├── admin_server_logs@2x.png │ ├── admin_server_status.png │ ├── admin_server_status@2x.png │ ├── admin_start_stop.png │ ├── admin_start_stop@2x.png │ ├── admin_status_vars.png │ ├── admin_status_vars@2x.png │ ├── admin_system_startup.png │ ├── admin_system_startup@2x.png │ ├── dashboard_arrow_in_static.png │ ├── dashboard_arrow_out_static.png │ ├── dashboard_header_innodb_dark.png │ ├── dashboard_header_innodb_dark@2x.png │ ├── dashboard_header_innodb_light.png │ ├── dashboard_header_innodb_light@2x.png │ ├── dashboard_header_mysql_dark.png │ ├── dashboard_header_mysql_dark@2x.png │ ├── dashboard_header_mysql_light.png │ ├── dashboard_header_mysql_light@2x.png │ ├── dashboard_header_network_dark.png │ ├── dashboard_header_network_dark@2x.png │ ├── dashboard_header_network_light.png │ ├── dashboard_header_network_light@2x.png │ ├── dashboard_separator.png │ ├── dashboard_separator@2x.png │ ├── mysql-logo-00.png │ ├── mysql-logo-00@2x.png │ ├── mysql-logo-50.png │ ├── mysql-logo-50@2x.png │ ├── mysql-logo-51.png │ ├── mysql-logo-51@2x.png │ ├── mysql-logo-55.png │ ├── mysql-logo-55@2x.png │ ├── mysql-logo-56.png │ ├── mysql-logo-56@2x.png │ ├── mysql-logo-57.png │ ├── mysql-logo-57@2x.png │ ├── mysql-logo-58.png │ ├── mysql-logo-58@2x.png │ ├── mysql-status-off.png │ ├── mysql-status-off@2x.png │ ├── mysql-status-on.png │ ├── mysql-status-on@2x.png │ ├── mysql-status-separator-linux.png │ ├── mysql-status-separator.png │ ├── mysql-status-separator@2x.png │ ├── page_restore.png │ ├── page_restore@2x.png │ ├── ps_easysetup_logo.png │ ├── ps_easysetup_logo@2x.png │ ├── ps_easysetup_logo_enabled.png │ ├── ps_easysetup_logo_enabled@2x.png │ ├── ps_overview.png │ ├── ps_overview@2x.png │ ├── ps_switcher_custom_hoover.png │ ├── ps_switcher_custom_hoover@2x.png │ ├── ps_switcher_custom_off.png │ ├── ps_switcher_custom_off@2x.png │ ├── ps_switcher_custom_on.png │ ├── ps_switcher_custom_on@2x.png │ ├── ps_switcher_default_hoover.png │ ├── ps_switcher_default_hoover@2x.png │ ├── ps_switcher_default_off.png │ ├── ps_switcher_default_off@2x.png │ ├── ps_switcher_default_on.png │ ├── ps_switcher_default_on@2x.png │ ├── ps_switcher_disabled_hoover.png │ ├── ps_switcher_disabled_hoover@2x.png │ ├── ps_switcher_disabled_off.png │ ├── ps_switcher_disabled_off@2x.png │ ├── ps_switcher_disabled_on.png │ ├── ps_switcher_disabled_on@2x.png │ ├── ps_switcher_fully_hoover.png │ ├── ps_switcher_fully_hoover@2x.png │ ├── ps_switcher_fully_off.png │ ├── ps_switcher_fully_off@2x.png │ ├── ps_switcher_fully_on.png │ ├── ps_switcher_fully_on@2x.png │ ├── ps_switcher_legend.png │ ├── ps_switcher_legend@2x.png │ ├── ps_switcher_text_dark.png │ ├── ps_switcher_text_dark@2x.png │ ├── ps_switcher_text_light.png │ ├── ps_switcher_text_light@2x.png │ ├── title_backup.png │ ├── title_backup@2x.png │ ├── title_connections.png │ ├── title_connections@2x.png │ ├── title_dashboard.png │ ├── title_dashboard@2x.png │ ├── title_export.png │ ├── title_export@2x.png │ ├── title_import.png │ ├── title_import@2x.png │ ├── title_instrumentation_setup.png │ ├── title_instrumentation_setup@2x.png │ ├── title_logs.png │ ├── title_logs@2x.png │ ├── title_options.png │ ├── title_options@2x.png │ ├── title_performance_reports.png │ ├── title_performance_reports@2x.png │ ├── title_restore.png │ ├── title_restore@2x.png │ ├── title_startup.png │ ├── title_startup@2x.png │ ├── title_users.png │ ├── title_users@2x.png │ ├── title_variables.png │ ├── title_variables@2x.png │ ├── wb-backup-logo-small.png │ ├── wb-backup-logo-small@2x.png │ ├── wb-backup-logo.png │ ├── wb-backup-logo@2x.png │ └── wb_perform_config.png ├── cursors │ ├── CMakeLists.txt │ ├── hand.png │ ├── hand_dark.png │ ├── image.png │ ├── image_dark.png │ ├── layer.png │ ├── layer_dark.png │ ├── magnify_region.png │ ├── magnify_region_dark.png │ ├── note.png │ ├── note_dark.png │ ├── rel11.png │ ├── rel11_dark.png │ ├── rel1n.png │ ├── rel1n_dark.png │ ├── relnm.png │ ├── relnm_dark.png │ ├── routine.png │ ├── routine_dark.png │ ├── rubber.png │ ├── rubber_dark.png │ ├── table.png │ ├── table_dark.png │ ├── view.png │ ├── view_dark.png │ ├── zoom_in.png │ ├── zoom_in_dark.png │ ├── zoom_out.png │ └── zoom_out_dark.png ├── grt │ ├── CMakeLists.txt │ ├── grt_dict.png │ ├── grt_function.png │ ├── grt_list.png │ ├── grt_module.png │ ├── grt_object.png │ ├── grt_simple_type.png │ ├── grt_struct.png │ └── structs │ │ ├── GrtObject.16x16.png │ │ ├── GrtObject.24x24.png │ │ ├── GrtObject.32x32.png │ │ ├── GrtObject.48x48.png │ │ ├── GrtObject.add.16x16.png │ │ ├── GrtObject.add.24x24.png │ │ ├── GrtObject.add.32x32.png │ │ ├── GrtObject.add.48x48.png │ │ ├── GrtObject.many_32x32.png │ │ ├── GrtStoredNote.48x48.png │ │ ├── GrtStoredNote.add.48x48.png │ │ ├── db.Column.11x11.png │ │ ├── db.Column.16x16.png │ │ ├── db.Column.fk.11x11.png │ │ ├── db.Column.fk.16x16.png │ │ ├── db.Column.fk.side.16x16.png │ │ ├── db.Column.fk.side.16x16@2x.png │ │ ├── db.Column.fknn.11x11.png │ │ ├── db.Column.fknn.16x16.png │ │ ├── db.Column.many.side.16x16.png │ │ ├── db.Column.many.side.16x16@2x.png │ │ ├── db.Column.nn.11x11.png │ │ ├── db.Column.nn.16x16.png │ │ ├── db.Column.pk.11x11.png │ │ ├── db.Column.pk.16x16.png │ │ ├── db.Column.pk.side.16x16.png │ │ ├── db.Column.pk.side.16x16@2x.png │ │ ├── db.Column.pkai.11x11.png │ │ ├── db.Column.pkai.16x16.png │ │ ├── db.Column.pkfk.11x11.png │ │ ├── db.Column.pkfk.16x16.png │ │ ├── db.Column.side.16x16.png │ │ ├── db.Column.side.16x16@2x.png │ │ ├── db.DatatypeGroup.blob.16x16.png │ │ ├── db.DatatypeGroup.datetime.16x16.png │ │ ├── db.DatatypeGroup.geo.16x16.png │ │ ├── db.DatatypeGroup.numeric.16x16.png │ │ ├── db.DatatypeGroup.text.16x16.png │ │ ├── db.DatatypeGroup.userdefined.16x16.png │ │ ├── db.ForeignKey.16x16.png │ │ ├── db.ForeignKey.many.side.16x16.png │ │ ├── db.ForeignKey.many.side.16x16@2x.png │ │ ├── db.ForeignKey.side.16x16.png │ │ ├── db.ForeignKey.side.16x16@2x.png │ │ ├── db.Index.16x16.png │ │ ├── db.Index.many.side.16x16.png │ │ ├── db.Index.many.side.16x16@2x.png │ │ ├── db.Index.side.16x16.png │ │ ├── db.Index.side.16x16@2x.png │ │ ├── db.Role.16x16.png │ │ ├── db.Role.48x48.png │ │ ├── db.Role.add.16x16.png │ │ ├── db.Role.add.48x48.png │ │ ├── db.Role.editor.48x48.png │ │ ├── db.Routine.16x16.png │ │ ├── db.Routine.24x24.png │ │ ├── db.Routine.48x48.png │ │ ├── db.Routine.64x64.png │ │ ├── db.Routine.add.16x16.png │ │ ├── db.Routine.add.48x48.png │ │ ├── db.Routine.editor.48x48.png │ │ ├── db.Routine.many.16x16.png │ │ ├── db.Routine.many.32x32.png │ │ ├── db.Routine.many.side.16x16.png │ │ ├── db.Routine.many.side.16x16@2x.png │ │ ├── db.Routine.side.16x16.png │ │ ├── db.Routine.side.16x16@2x.png │ │ ├── db.RoutineGroup.16x16.png │ │ ├── db.RoutineGroup.48x48.png │ │ ├── db.RoutineGroup.add.16x16.png │ │ ├── db.RoutineGroup.add.48x48.png │ │ ├── db.Schema.16x16.png │ │ ├── db.Schema.24x24.png │ │ ├── db.Schema.32x32.png │ │ ├── db.Schema.add.32x32.png │ │ ├── db.Schema.editor.48x48.png │ │ ├── db.Schema.loading.side.16x16.png │ │ ├── db.Schema.loading.side.16x16@2x.png │ │ ├── db.Schema.many.16x16.png │ │ ├── db.Schema.many.32x32.png │ │ ├── db.Schema.selected.32x32.png │ │ ├── db.Schema.side.16x16.png │ │ ├── db.Schema.side.16x16@2x.png │ │ ├── db.Schema.unloaded.side.16x16.png │ │ ├── db.Schema.unloaded.side.16x16@2x.png │ │ ├── db.Script.48x48.png │ │ ├── db.Script.add.48x48.png │ │ ├── db.Table.16x16.png │ │ ├── db.Table.24x24.png │ │ ├── db.Table.32x32.png │ │ ├── db.Table.48x48.png │ │ ├── db.Table.add.16x16.png │ │ ├── db.Table.add.48x48.png │ │ ├── db.Table.editor.24x24.png │ │ ├── db.Table.editor.48x48.png │ │ ├── db.Table.many.16x16.png │ │ ├── db.Table.many.32x32.png │ │ ├── db.Table.many.side.16x16.png │ │ ├── db.Table.many.side.16x16@2x.png │ │ ├── db.Table.side.16x16.png │ │ ├── db.Table.side.16x16@2x.png │ │ ├── db.Trigger.16x16.png │ │ ├── db.Trigger.many.side.16x16.png │ │ ├── db.Trigger.many.side.16x16@2x.png │ │ ├── db.Trigger.side.16x16.png │ │ ├── db.Trigger.side.16x16@2x.png │ │ ├── db.User.16x16.png │ │ ├── db.User.48x48.png │ │ ├── db.User.add.16x16.png │ │ ├── db.User.add.48x48.png │ │ ├── db.User.editor.48x48.png │ │ ├── db.View.16x16.png │ │ ├── db.View.24x24.png │ │ ├── db.View.48x48.png │ │ ├── db.View.64x64.png │ │ ├── db.View.add.16x16.png │ │ ├── db.View.add.48x48.png │ │ ├── db.View.broken.side.16x16.png │ │ ├── db.View.broken.side.16x16@2x.png │ │ ├── db.View.editor.48x48.png │ │ ├── db.View.many.16x16.png │ │ ├── db.View.many.32x32.png │ │ ├── db.View.many.side.16x16.png │ │ ├── db.View.many.side.16x16@2x.png │ │ ├── db.View.side.16x16.png │ │ ├── db.View.side.16x16@2x.png │ │ ├── db.mgmt.Connection.16x16.png │ │ ├── db.mgmt.Connection.32x32.png │ │ ├── db.mgmt.Connection.48x48.png │ │ ├── db.mgmt.Connection.add.16x16.png │ │ ├── db.mgmt.Connection.add.48x48.png │ │ ├── db.mgmt.Connection.manage.48x48.png │ │ ├── db.mgmt.ServerInstance.48x48.png │ │ ├── db.mgmt.ServerInstance.manage.48x48.png │ │ ├── workbench.Document.16x16.png │ │ ├── workbench.Document.32x32.png │ │ ├── workbench.Document.48x48.png │ │ ├── workbench.logical.Diagram.16x16.png │ │ ├── workbench.logical.Diagram.48x48.png │ │ ├── workbench.logical.Diagram.add.48x48.png │ │ ├── workbench.logical.Model.16x16.png │ │ ├── workbench.logical.Model.48x48.png │ │ ├── workbench.model.ImageFigure.16x16.png │ │ ├── workbench.model.NoteFigure.16x16.png │ │ ├── workbench.physical.Diagram.16x16.png │ │ ├── workbench.physical.Diagram.48x48.png │ │ ├── workbench.physical.Diagram.add.16x16.png │ │ ├── workbench.physical.Diagram.add.48x48.png │ │ ├── workbench.physical.Layer.16x16.png │ │ ├── workbench.physical.Layer.24x24.png │ │ ├── workbench.physical.Layer.many.16x16.png │ │ ├── workbench.physical.Model.16x16.png │ │ ├── workbench.physical.Model.48x48.png │ │ ├── workbench.physical.RoutineGroupFigure.16x16.png │ │ ├── workbench.physical.TableFigure.16x16.png │ │ ├── workbench.physical.ViewFigure.16x16.png │ │ ├── workbench.physical.db2.Model.48x48.png │ │ ├── workbench.physical.mssql.Model.48x48.png │ │ ├── workbench.physical.mysql.Model.16x16.png │ │ ├── workbench.physical.mysql.Model.48x48.png │ │ ├── workbench.physical.oracle.Model.48x48.png │ │ ├── workbench.physical.sqlite.Model.48x48.png │ │ └── workbench.physical.sybase.Model.48x48.png ├── home │ ├── CMakeLists.txt │ ├── WB_Home.png │ ├── home_screen_close_dark.png │ ├── home_screen_close_dark@2x.png │ ├── home_screen_close_light.png │ ├── home_screen_close_light@2x.png │ ├── migration_banner.png │ ├── migration_btn.png │ ├── migration_btn@2x.png │ ├── new_sticker.png │ ├── new_sticker@2x.png │ ├── sidebar_launchers.png │ ├── sidebar_launchers@2x.png │ ├── sidebar_migration.png │ ├── sidebar_migration@2x.png │ ├── sidebar_modeling.png │ ├── sidebar_modeling@2x.png │ ├── sidebar_wb.png │ ├── sidebar_wb@2x.png │ ├── wb_close.png │ ├── wb_doc_model.png │ ├── wb_doc_model@2x.png │ ├── wb_doc_sql.png │ ├── wb_tile_folder.png │ ├── wb_tile_folder_mini_dark.png │ ├── wb_tile_folder_mini_dark@2x.png │ ├── wb_tile_folder_mini_light.png │ ├── wb_tile_folder_mini_light@2x.png │ ├── wb_tile_manage_dark.png │ ├── wb_tile_manage_light.png │ ├── wb_tile_more_dark.png │ ├── wb_tile_more_light.png │ ├── wb_tile_network_dark.png │ ├── wb_tile_network_light.png │ ├── wb_tile_number_dark.png │ ├── wb_tile_number_light.png │ ├── wb_tile_open_dark.png │ ├── wb_tile_open_light.png │ ├── wb_tile_plus_dark.png │ ├── wb_tile_plus_light.png │ ├── wb_tile_sakila_dark.png │ ├── wb_tile_sakila_light.png │ ├── wb_tile_schema_dark.png │ ├── wb_tile_schema_dark@2x.png │ ├── wb_tile_schema_light.png │ ├── wb_tile_schema_light@2x.png │ ├── wb_tile_time_dark.png │ ├── wb_tile_time_dark@2x.png │ ├── wb_tile_time_light.png │ ├── wb_tile_time_light@2x.png │ ├── wb_tile_user_dark.png │ └── wb_tile_user_light.png ├── icons │ ├── CMakeLists.txt │ ├── MySQLPlugin-128.png │ ├── MySQLPlugin-16.png │ ├── MySQLPlugin-24.png │ ├── MySQLPlugin-256.png │ ├── MySQLPlugin-32.png │ ├── MySQLPlugin-48.png │ ├── MySQLPlugin-64.png │ ├── MySQLWBPlugin.icns │ ├── MySQLWorkbench-128.png │ ├── MySQLWorkbench-16.png │ ├── MySQLWorkbench-256.png │ ├── MySQLWorkbench-32.png │ ├── MySQLWorkbench-48.png │ ├── MySQLWorkbench-512.png │ ├── MySQLWorkbench.icns │ ├── MySQLWorkbench.ico │ ├── MySQLWorkbenchDoc-128.png │ ├── MySQLWorkbenchDoc-16.png │ ├── MySQLWorkbenchDoc-24.png │ ├── MySQLWorkbenchDoc-32.png │ ├── MySQLWorkbenchDoc-48.png │ ├── MySQLWorkbenchDoc-64.png │ ├── MySQLWorkbenchDoc.icns │ ├── MySQLWorkbenchDoc.ico │ ├── MySQLWorkbenchDocIcon128x128.png │ ├── MySQLWorkbenchDocIcon16x16.png │ ├── MySQLWorkbenchDocIcon32x32.png │ ├── MySQLWorkbenchDocIcon48x48.png │ ├── comment.png │ ├── grt.png │ ├── history.png │ ├── json_arr.png │ ├── json_nmb.png │ ├── json_null.png │ ├── json_obj.png │ ├── json_str.png │ ├── layers.png │ ├── linux │ │ ├── 128x128 │ │ │ ├── CMakeLists.txt │ │ │ ├── apps │ │ │ │ └── mysql-workbench.png │ │ │ └── mimetypes │ │ │ │ ├── application-vnd.mysql-workbench-model.png │ │ │ │ └── application-vnd.mysql-workbench-plugin.png │ │ ├── 16x16 │ │ │ ├── CMakeLists.txt │ │ │ ├── apps │ │ │ │ └── mysql-workbench.png │ │ │ └── mimetypes │ │ │ │ ├── application-vnd.mysql-workbench-model.png │ │ │ │ └── application-vnd.mysql-workbench-plugin.png │ │ ├── 48x48 │ │ │ ├── CMakeLists.txt │ │ │ ├── apps │ │ │ │ └── mysql-workbench.png │ │ │ └── mimetypes │ │ │ │ ├── application-vnd.mysql-workbench-model.png │ │ │ │ └── application-vnd.mysql-workbench-plugin.png │ │ └── CMakeLists.txt │ ├── mini_edit.png │ ├── mini_error.png │ ├── mini_notice.png │ ├── mini_notice_blue.png │ ├── mini_ok.png │ ├── mini_warning.png │ ├── properties.png │ ├── schemata.png │ ├── user_datatypes.png │ └── warning_icon.png ├── migration │ ├── CMakeLists.txt │ ├── migration.png │ ├── migration_background.png │ ├── migration_check_current.png │ ├── migration_check_done.png │ ├── migration_check_open.png │ ├── migration_check_point.png │ ├── migration_icon_32x32.png │ ├── migration_logo.png │ └── migration_title.png ├── readme.txt ├── sql │ ├── CMakeLists.txt │ ├── ac_charset.png │ ├── ac_collation.png │ ├── ac_column.png │ ├── ac_engine.png │ ├── ac_event.png │ ├── ac_function.png │ ├── ac_index.png │ ├── ac_keyword.png │ ├── ac_logfilegroup.png │ ├── ac_operator.png │ ├── ac_routine.png │ ├── ac_schema.png │ ├── ac_sysvar.png │ ├── ac_table.png │ ├── ac_tablespace.png │ ├── ac_trigger.png │ ├── ac_user.png │ ├── ac_uservar.png │ ├── ac_view.png │ ├── object_inspector.png │ ├── object_inspector_mac.png │ ├── object_inspector_mac@2x.png │ ├── output_type-executionplan.png │ ├── output_type-executionplan@2x.png │ ├── output_type-explaindata.png │ ├── output_type-explaindata@2x.png │ ├── output_type-fieldtypes.png │ ├── output_type-fieldtypes@2x.png │ ├── output_type-formeditor.png │ ├── output_type-formeditor@2x.png │ ├── output_type-item_selected.png │ ├── output_type-item_selected@2x.png │ ├── output_type-querystats.png │ ├── output_type-querystats@2x.png │ ├── output_type-resultset.png │ ├── output_type-resultset@2x.png │ ├── output_type-spacialview.png │ ├── output_type-spacialview@2x.png │ ├── output_type-toggle-off.png │ ├── output_type-toggle-off@2x.png │ ├── output_type-toggle-on.png │ ├── output_type-toggle-on@2x.png │ ├── qe_main-tb-icon_add-function.png │ ├── qe_main-tb-icon_add-function_mac.png │ ├── qe_main-tb-icon_add-function_mac@2x.png │ ├── qe_main-tb-icon_add-routine.png │ ├── qe_main-tb-icon_add-routine_mac.png │ ├── qe_main-tb-icon_add-routine_mac@2x.png │ ├── qe_main-tb-icon_add-schema.png │ ├── qe_main-tb-icon_add-schema_mac.png │ ├── qe_main-tb-icon_add-schema_mac@2x.png │ ├── qe_main-tb-icon_add-sql-editor.png │ ├── qe_main-tb-icon_add-sql-editor_mac.png │ ├── qe_main-tb-icon_add-sql-editor_mac@2x.png │ ├── qe_main-tb-icon_add-table.png │ ├── qe_main-tb-icon_add-table_mac.png │ ├── qe_main-tb-icon_add-table_mac@2x.png │ ├── qe_main-tb-icon_add-view.png │ ├── qe_main-tb-icon_add-view_mac.png │ ├── qe_main-tb-icon_add-view_mac@2x.png │ ├── qe_main-tb-icon_execute-sql-file.png │ ├── qe_main-tb-icon_execute-sql-file_mac.png │ ├── qe_main-tb-icon_execute-sql-file_mac@2x.png │ ├── qe_main-tb-icon_open-sql-file.png │ ├── qe_main-tb-icon_open-sql-file_mac.png │ ├── qe_main-tb-icon_open-sql-file_mac@2x.png │ ├── qe_main-tb-icon_preferences.png │ ├── qe_main-tb-icon_preferences_mac.png │ ├── qe_main-tb-icon_preferences_mac@2x.png │ ├── qe_main-tb-icon_refresh-conn.png │ ├── qe_main-tb-icon_refresh-conn_mac.png │ ├── qe_main-tb-icon_refresh-conn_mac@2x.png │ ├── qe_main-tb-icon_search_db.png │ ├── qe_main-tb-icon_search_db_mac.png │ ├── qe_main-tb-icon_search_db_mac@2x.png │ ├── qe_main-tb-sep.png │ ├── qe_sql-editor-explain-tb-overview.png │ ├── qe_sql-editor-explain-tb-overview@2x.png │ ├── qe_sql-editor-resultset-tb-pin.png │ ├── qe_sql-editor-resultset-tb-pin@2x.png │ ├── qe_sql-editor-resultset-tb-pinned.png │ ├── qe_sql-editor-resultset-tb-pinned@2x.png │ ├── qe_sql-editor-tb-icon_autocommit-off.png │ ├── qe_sql-editor-tb-icon_autocommit-off@2x.png │ ├── qe_sql-editor-tb-icon_autocommit-on.png │ ├── qe_sql-editor-tb-icon_autocommit-on@2x.png │ ├── qe_sql-editor-tb-icon_beautifier.png │ ├── qe_sql-editor-tb-icon_beautifier@2x.png │ ├── qe_sql-editor-tb-icon_beautifier_current.png │ ├── qe_sql-editor-tb-icon_beautifier_current@2x.png │ ├── qe_sql-editor-tb-icon_commit.png │ ├── qe_sql-editor-tb-icon_commit@2x.png │ ├── qe_sql-editor-tb-icon_execute-current.png │ ├── qe_sql-editor-tb-icon_execute-current@2x.png │ ├── qe_sql-editor-tb-icon_execute.png │ ├── qe_sql-editor-tb-icon_execute@2x.png │ ├── qe_sql-editor-tb-icon_explain.png │ ├── qe_sql-editor-tb-icon_explain@2x.png │ ├── qe_sql-editor-tb-icon_find.png │ ├── qe_sql-editor-tb-icon_find@2x.png │ ├── qe_sql-editor-tb-icon_open.png │ ├── qe_sql-editor-tb-icon_open@2x.png │ ├── qe_sql-editor-tb-icon_rollback.png │ ├── qe_sql-editor-tb-icon_rollback@2x.png │ ├── qe_sql-editor-tb-icon_save.png │ ├── qe_sql-editor-tb-icon_save@2x.png │ ├── qe_sql-editor-tb-icon_special-chars-off.png │ ├── qe_sql-editor-tb-icon_special-chars-off@2x.png │ ├── qe_sql-editor-tb-icon_special-chars-on.png │ ├── qe_sql-editor-tb-icon_special-chars-on@2x.png │ ├── qe_sql-editor-tb-icon_stop-on-error-off.png │ ├── qe_sql-editor-tb-icon_stop-on-error-off@2x.png │ ├── qe_sql-editor-tb-icon_stop-on-error-on.png │ ├── qe_sql-editor-tb-icon_stop-on-error-on@2x.png │ ├── qe_sql-editor-tb-icon_stop.png │ ├── qe_sql-editor-tb-icon_stop@2x.png │ ├── qe_sql-editor-tb-icon_word-wrap-off.png │ ├── qe_sql-editor-tb-icon_word-wrap-off@2x.png │ ├── qe_sql-editor-tb-icon_word-wrap-on.png │ ├── qe_sql-editor-tb-icon_word-wrap-on@2x.png │ ├── qe_sql-editor-tb-icon_zoom-area.png │ ├── qe_sql-editor-tb-icon_zoom-area@2x.png │ ├── qe_sql-editor-tb-icon_zoom-auto.png │ ├── qe_sql-editor-tb-icon_zoom-auto@2x.png │ ├── qe_sql-editor-tb-icon_zoom-center.png │ ├── qe_sql-editor-tb-icon_zoom-center@2x.png │ ├── qe_sql-editor-tb-icon_zoom-in.png │ ├── qe_sql-editor-tb-icon_zoom-in@2x.png │ ├── qe_sql-editor-tb-icon_zoom-jump.png │ ├── qe_sql-editor-tb-icon_zoom-jump@2x.png │ ├── qe_sql-editor-tb-icon_zoom-out.png │ ├── qe_sql-editor-tb-icon_zoom-out@2x.png │ ├── qe_sql-editor-tb-icon_zoom-reset.png │ ├── qe_sql-editor-tb-icon_zoom-reset@2x.png │ ├── snippet_css.png │ ├── snippet_htm.png │ ├── snippet_lua.png │ ├── snippet_mwb.png │ ├── snippet_php.png │ ├── snippet_py.png │ ├── snippet_sql.png │ ├── switcher_bottom_off.png │ ├── switcher_bottom_off@2x.png │ ├── switcher_bottom_on.png │ ├── switcher_bottom_on@2x.png │ ├── switcher_left_off.png │ ├── switcher_left_off@2x.png │ ├── switcher_left_on.png │ ├── switcher_left_on@2x.png │ ├── switcher_right_off.png │ ├── switcher_right_off@2x.png │ ├── switcher_right_on.png │ ├── switcher_right_on@2x.png │ ├── title_schema_inspector.png │ ├── title_schema_inspector@2x.png │ ├── title_table_inspector.png │ ├── title_table_inspector@2x.png │ ├── wb-sidebar-refresh.png │ ├── wb-sidebar-refresh@2x.png │ ├── wb_item_overlay_autozoom.png │ ├── wb_item_overlay_autozoom@2x.png │ ├── wb_item_overlay_editor.png │ ├── wb_item_overlay_editor@2x.png │ ├── wb_item_overlay_execute.png │ ├── wb_item_overlay_execute@2x.png │ ├── wb_item_overlay_inspector.png │ ├── wb_item_overlay_inspector@2x.png │ ├── wb_item_overlay_result.png │ └── wb_item_overlay_result@2x.png ├── toolbar │ ├── CMakeLists.txt │ ├── clear_output.png │ ├── debug_continue.png │ ├── debug_pause.png │ ├── debug_step.png │ ├── debug_step_into.png │ ├── debug_step_out.png │ ├── debug_stop.png │ ├── edit_table_templates.png │ ├── query_continue_on_error.png │ ├── query_stop_on_error.png │ ├── record_add.png │ ├── record_add@2x.png │ ├── record_autosize.png │ ├── record_autosize@2x.png │ ├── record_back.png │ ├── record_back@2x.png │ ├── record_del.png │ ├── record_del@2x.png │ ├── record_discard.png │ ├── record_edit.png │ ├── record_edit@2x.png │ ├── record_export.png │ ├── record_export@2x.png │ ├── record_fetch_all.png │ ├── record_fetch_all@2x.png │ ├── record_fetch_next.png │ ├── record_fetch_next@2x.png │ ├── record_fetch_prev.png │ ├── record_fetch_prev@2x.png │ ├── record_first.png │ ├── record_first@2x.png │ ├── record_import.png │ ├── record_import@2x.png │ ├── record_last.png │ ├── record_last@2x.png │ ├── record_next.png │ ├── record_next@2x.png │ ├── record_refresh.png │ ├── record_refresh@2x.png │ ├── record_save.png │ ├── record_sort_asc.png │ ├── record_sort_desc.png │ ├── record_sort_reset.png │ ├── record_wrap_vertical.png │ ├── snippet_add.png │ ├── snippet_clipboard.png │ ├── snippet_del.png │ ├── snippet_insert.png │ ├── snippet_use.png │ ├── tiny_align_h_left.png │ ├── tiny_align_h_left2.png │ ├── tiny_align_h_middle.png │ ├── tiny_align_h_middle2.png │ ├── tiny_align_h_right.png │ ├── tiny_align_h_right2.png │ ├── tiny_align_v_bottom.png │ ├── tiny_align_v_bottom2.png │ ├── tiny_align_v_middle.png │ ├── tiny_align_v_middle2.png │ ├── tiny_align_v_top.png │ ├── tiny_align_v_top2.png │ ├── tiny_grid.png │ ├── tiny_gridview.png │ ├── tiny_grtshell.png │ ├── tiny_hidesidebar.png │ ├── tiny_less_space.png │ ├── tiny_load.png │ ├── tiny_loadsql.png │ ├── tiny_lock.png │ ├── tiny_more_space.png │ ├── tiny_new.png │ ├── tiny_new_diagram.png │ ├── tiny_new_doc.png │ ├── tiny_new_routine.png │ ├── tiny_new_schema.png │ ├── tiny_new_script.png │ ├── tiny_new_table.png │ ├── tiny_new_view.png │ ├── tiny_open.png │ ├── tiny_redo.png │ ├── tiny_refresh.png │ ├── tiny_refresh@2x.png │ ├── tiny_refresh_plugins.png │ ├── tiny_rollback.png │ ├── tiny_rollback@2x.png │ ├── tiny_rollback_disabled.png │ ├── tiny_ruler.png │ ├── tiny_save.png │ ├── tiny_saveas.png │ ├── tiny_savesql.png │ ├── tiny_search.png │ ├── tiny_undo.png │ ├── wb-toolbar_automatic-help-off.png │ ├── wb-toolbar_automatic-help-off@2x.png │ ├── wb-toolbar_automatic-help-on.png │ ├── wb-toolbar_automatic-help-on@2x.png │ ├── wb-toolbar_manual-help.png │ ├── wb-toolbar_manual-help@2x.png │ ├── wb-toolbar_nav-back.png │ ├── wb-toolbar_nav-back@2x.png │ ├── wb-toolbar_nav-forward.png │ ├── wb-toolbar_nav-forward@2x.png │ ├── wb_arrow.png │ ├── wb_db_routinegroup.png │ ├── wb_db_table.png │ ├── wb_db_view.png │ ├── wb_draw_ellipse.png │ ├── wb_draw_freehand.png │ ├── wb_draw_line.png │ ├── wb_draw_polygon.png │ ├── wb_draw_rect.png │ ├── wb_hand.png │ ├── wb_image.png │ ├── wb_layer.png │ ├── wb_magnifier.png │ ├── wb_note.png │ ├── wb_rel_11.png │ ├── wb_rel_11_dark.png │ ├── wb_rel_11_nonid.png │ ├── wb_rel_11_nonid_dark.png │ ├── wb_rel_1n.png │ ├── wb_rel_1n_dark.png │ ├── wb_rel_1n_nonid.png │ ├── wb_rel_1n_nonid_dark.png │ ├── wb_rel_1n_pick.png │ ├── wb_rel_1n_pick_dark.png │ ├── wb_rel_nm.png │ ├── wb_rel_nm_dark.png │ ├── wb_rubber.png │ └── wb_toolbar_pages_18x18.png └── ui │ ├── Apply.png │ ├── Apply_16x16.png │ ├── CMakeLists.txt │ ├── Close_16x16.png │ ├── Close_18x18.png │ ├── Discard.png │ ├── Discard_16x16.png │ ├── DotBlue.png │ ├── DotDisabled.png │ ├── DotGrey.png │ ├── DotRed.png │ ├── EditorCollapsed.png │ ├── EditorExpanded.png │ ├── Firewall_reports.png │ ├── First_16x16.png │ ├── JS_Datatype_Array.png │ ├── JS_Datatype_Array@2x.png │ ├── JS_Datatype_Bin.png │ ├── JS_Datatype_Bin@2x.png │ ├── JS_Datatype_Bool.png │ ├── JS_Datatype_Bool@2x.png │ ├── JS_Datatype_Date.png │ ├── JS_Datatype_Date@2x.png │ ├── JS_Datatype_Null.png │ ├── JS_Datatype_Null@2x.png │ ├── JS_Datatype_Number.png │ ├── JS_Datatype_Number@2x.png │ ├── JS_Datatype_Object.png │ ├── JS_Datatype_Object@2x.png │ ├── JS_Datatype_ObjectId.png │ ├── JS_Datatype_ObjectId@2x.png │ ├── JS_Datatype_String.png │ ├── JS_Datatype_String@2x.png │ ├── Last_16x16.png │ ├── MacWizardBackground.png │ ├── MySQL-WB-about-screen.png │ ├── MySQL-WB-about-screen@2x.png │ ├── Refresh_16x16.png │ ├── Refresh_18x18.png │ ├── Refresh_disabled_18x18.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── audit_log.png │ ├── audit_log@2x.png │ ├── background.png │ ├── background_stripes_light.png │ ├── background_top_shadow.png │ ├── big_switcher_no.png │ ├── big_switcher_no@2x.png │ ├── big_switcher_yes.png │ ├── big_switcher_yes@2x.png │ ├── busy_sidebar.png │ ├── busy_sidebar_mac.png │ ├── change_alert_create.png │ ├── change_alert_drop.png │ ├── change_alert_thin.png │ ├── change_backward.png │ ├── change_forward.png │ ├── change_ignore.png │ ├── change_nothing.png │ ├── check.png │ ├── collapsing_panel_bg.png │ ├── collapsing_panel_grid_bg.png │ ├── collapsing_panel_grid_details.png │ ├── collapsing_panel_grid_details2.png │ ├── collapsing_panel_grid_large_icons.png │ ├── collapsing_panel_grid_large_icons2.png │ ├── collapsing_panel_grid_small_icons.png │ ├── collapsing_panel_grid_small_icons2.png │ ├── collapsing_panel_header_bg.png │ ├── collapsing_panel_header_bg_flat.png │ ├── collapsing_panel_header_shadow.png │ ├── collapsing_panel_header_tab_add.png │ ├── collapsing_panel_header_tab_add2.png │ ├── collapsing_panel_header_tab_del.png │ ├── collapsing_panel_header_tab_del2.png │ ├── collapsing_panel_header_tab_left.png │ ├── collapsing_panel_header_tab_left_flat.png │ ├── collapsing_panel_header_tab_middle.png │ ├── collapsing_panel_header_tab_middle_flat.png │ ├── collapsing_panel_header_tab_right.png │ ├── collapsing_panel_header_tab_right_flat.png │ ├── collapsing_panel_header_tab_separator.png │ ├── collapsing_panel_header_tab_separator_flat.png │ ├── collapsing_panel_minus.png │ ├── collapsing_panel_minus_flat.png │ ├── collapsing_panel_plus.png │ ├── collapsing_panel_plus_flat.png │ ├── collapsing_panel_tab_left.png │ ├── collapsing_panel_tab_middle.png │ ├── collapsing_panel_tab_right.png │ ├── dialog_input.png │ ├── edit.png │ ├── editor_breakpoint.png │ ├── editor_breakpoint_hit.png │ ├── editor_continue_on_error.png │ ├── editor_current_pos.png │ ├── editor_error.png │ ├── editor_statement.png │ ├── field_overlay_blob.png │ ├── field_overlay_null.png │ ├── firewall-header.png │ ├── firewall-header@2x.png │ ├── folder.png │ ├── header_bar_blue.png │ ├── header_bar_gray.png │ ├── header_bar_orange.png │ ├── item_overlay_add.png │ ├── item_overlay_add@2x.png │ ├── item_overlay_delete.png │ ├── item_overlay_delete@2x.png │ ├── linux │ ├── switcher_bottom_off.png │ ├── switcher_bottom_on.png │ ├── switcher_left_off.png │ ├── switcher_left_on.png │ ├── switcher_right_off.png │ └── switcher_right_on.png │ ├── mac │ ├── maintab_home_black.png │ ├── maintab_home_black@2x.png │ ├── maintab_home_white.png │ ├── maintab_home_white@2x.png │ ├── tab_icon_administrator.png │ ├── tab_icon_administrator@2x.png │ ├── tab_icon_db.query.QueryBuffer_dark.png │ ├── tab_icon_db.query.QueryBuffer_dark@2x.png │ ├── tab_icon_db.query.QueryBuffer_light.png │ ├── tab_icon_db.query.QueryBuffer_light@2x.png │ ├── tab_icon_editor.png │ ├── tab_icon_editor@2x.png │ ├── tab_icon_plugin.png │ ├── tab_icon_plugin@2x.png │ ├── wb_tab_close_dark.png │ ├── wb_tab_close_dark@2x.png │ ├── wb_tab_close_light.png │ └── wb_tab_close_light@2x.png │ ├── message_confirm.png │ ├── message_edit.png │ ├── message_error.png │ ├── message_warning.png │ ├── message_wb_bug.png │ ├── message_wb_lock.png │ ├── message_wb_wait.png │ ├── navigator_zoom_in.png │ ├── navigator_zoom_out.png │ ├── note.128x128.png │ ├── options-horizontal-separator.png │ ├── refresh_sidebar.png │ ├── refresh_sidebar_mac.png │ ├── sakila.png │ ├── search_clear.png │ ├── search_doc_action.png │ ├── search_icon.png │ ├── search_sidebar.png │ ├── section_expanded.png │ ├── section_unexpandable.png │ ├── section_unexpanded.png │ ├── separator-dots.png │ ├── separator_vertical.png │ ├── separator_vertical@2x.png │ ├── session-switch.png │ ├── session.png │ ├── show_eof.png │ ├── show_whitespace.png │ ├── small_toolbar_bg.png │ ├── statusbar_output.png │ ├── statusbar_separator.png │ ├── statusbar_shell.png │ ├── switcher_bottom_off_win8.png │ ├── switcher_bottom_on_win8.png │ ├── switcher_left_off_win8.png │ ├── switcher_left_on_win8.png │ ├── switcher_right_off_win8.png │ ├── switcher_right_on_win8.png │ ├── tab.diagram.16x16.png │ ├── tab.overview.home.16x16.png │ ├── tab.overview.physical.16x16.png │ ├── tab.sqlquery.16x16.png │ ├── task_checked.png │ ├── task_checked_mac.png │ ├── task_disabled.png │ ├── task_disabled_mac.png │ ├── task_error.png │ ├── task_error_mac.png │ ├── task_executing.png │ ├── task_executing_mac.png │ ├── task_unchecked.png │ ├── task_unchecked_mac.png │ ├── task_warning.png │ ├── task_warning_mac.png │ ├── tree_collapsed.png │ ├── tree_expanded.png │ ├── uncheck.png │ ├── unknown.png │ ├── wait_panel_cancel_button.png │ ├── wb-wizard-vista-bg.png │ ├── wb_lock.png │ ├── wb_lock@2x.png │ ├── zoom_in.png │ ├── zoom_out.png │ └── zoom_reset.png ├── library ├── CMakeLists.txt ├── base.windows │ ├── ControlUtilities.cs │ ├── DragDrop.cs │ ├── ImageListHelper.cs │ ├── MySQLAssembly.ico │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StringUtilities.cs │ ├── Win32.cs │ └── base.windows.csproj ├── base.wr │ ├── MySQLAssembly.ico │ ├── app.rc │ ├── base.wr.vcxproj │ ├── base.wr.vcxproj.filters │ ├── resource.h │ └── src │ │ ├── AssemblyInfo.cpp │ │ ├── ConvUtils.h │ │ ├── Conversions.cpp │ │ ├── Conversions.h │ │ ├── IRecordsetView.cpp │ │ ├── IRecordsetView.h │ │ ├── LogWrapper.cpp │ │ ├── LogWrapper.h │ │ ├── ManagedNotifications.cpp │ │ ├── ManagedNotifications.h │ │ ├── Stdafx.cpp │ │ ├── Stdafx.h │ │ ├── UIForm.cpp │ │ ├── UiForm.h │ │ ├── Win32API.cpp │ │ └── Win32API.h ├── base │ ├── CMakeLists.txt │ ├── accessibility.cpp │ ├── base.vcxproj │ ├── base.vcxproj.filters │ ├── base │ │ ├── accessibility.h │ │ ├── any.h │ │ ├── boost_smart_ptr_helpers.h │ │ ├── c++helpers.h │ │ ├── common.h │ │ ├── config_file.h │ │ ├── data_types.h │ │ ├── debugging.h │ │ ├── drawing.h │ │ ├── entities.h │ │ ├── event_log.cpp │ │ ├── event_log.h │ │ ├── file_functions.h │ │ ├── file_utilities.h │ │ ├── generic_templates.h │ │ ├── geometry.h │ │ ├── log.h │ │ ├── mem_stat.h │ │ ├── notifications.h │ │ ├── profiling.h │ │ ├── python_utils.h │ │ ├── scope_exit_trigger.h │ │ ├── sqlstring.h │ │ ├── string_utilities.h │ │ ├── symbol-info.h │ │ ├── threaded_timer.h │ │ ├── threading.h │ │ ├── trackable.h │ │ ├── ui_form.h │ │ ├── utf8string.h │ │ ├── util.c │ │ ├── util.h │ │ ├── util_functions.h │ │ ├── wb_iterators.h │ │ ├── wb_memory.h │ │ └── xml_functions.h │ ├── boost_fix.cpp │ ├── config_file.cpp │ ├── data_types.cpp │ ├── debugging.cpp │ ├── drawing.cpp │ ├── drawing_gtk.cpp │ ├── drawing_osx.mm │ ├── drawing_win.cpp │ ├── event_log.cpp │ ├── file_functions.cpp │ ├── file_utilities.cpp │ ├── geometry.cpp │ ├── log.cpp │ ├── mem_stat.cpp │ ├── notifications.cpp │ ├── profiling.cpp │ ├── python_utils.cpp │ ├── sqlstring.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── string_utilities.cpp │ ├── symbol-info.cpp │ ├── threaded_timer.cpp │ ├── threading.cpp │ ├── ui_form.cpp │ ├── utf8string.cpp │ ├── util_functions.cpp │ └── xml_functions.cpp ├── cdbc │ ├── CMakeLists.txt │ ├── cdbc.vcxproj │ ├── cdbc.vcxproj.filters │ └── src │ │ ├── cppdbc.h │ │ ├── cppdbc_public_interface.h │ │ ├── driver_manager.cpp │ │ ├── driver_manager.h │ │ ├── sql_batch_exec.cpp │ │ ├── sql_batch_exec.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── forms │ ├── CMakeLists.txt │ ├── app.cpp │ ├── appview.cpp │ ├── base.cpp │ ├── box.cpp │ ├── button.cpp │ ├── canvas.cpp │ ├── checkbox.cpp │ ├── cocoa │ │ ├── EmbedableFindPane.xib │ │ ├── FileTypeAccessoryView.xib │ │ ├── HUDPanel.xib │ │ ├── MFBase.h │ │ ├── MFBase.mm │ │ ├── MFBox.h │ │ ├── MFBox.mm │ │ ├── MFButton.h │ │ ├── MFButton.mm │ │ ├── MFCanvas.h │ │ ├── MFCanvas.mm │ │ ├── MFCheckBox.h │ │ ├── MFCheckBox.mm │ │ ├── MFCodeEditor.h │ │ ├── MFCodeEditor.mm │ │ ├── MFContainerBase.h │ │ ├── MFContainerBase.mm │ │ ├── MFDrawBox.h │ │ ├── MFDrawBox.mm │ │ ├── MFFileChooser.h │ │ ├── MFFileChooser.mm │ │ ├── MFFindPanel.h │ │ ├── MFFindPanel.mm │ │ ├── MFForm.h │ │ ├── MFForm.mm │ │ ├── MFHyperTextView.h │ │ ├── MFHyperTextView.mm │ │ ├── MFImageBox.h │ │ ├── MFImageBox.mm │ │ ├── MFLabel.h │ │ ├── MFLabel.mm │ │ ├── MFListBox.h │ │ ├── MFListBox.mm │ │ ├── MFMForms.h │ │ ├── MFMForms.mm │ │ ├── MFMenu.h │ │ ├── MFMenu.mm │ │ ├── MFMenuBar.h │ │ ├── MFMenuBar.mm │ │ ├── MFPanel.h │ │ ├── MFPanel.mm │ │ ├── MFPopover.h │ │ ├── MFPopover.mm │ │ ├── MFPopup.h │ │ ├── MFPopup.mm │ │ ├── MFProgressBar.h │ │ ├── MFProgressBar.mm │ │ ├── MFRadioButton.h │ │ ├── MFRadioButton.mm │ │ ├── MFScrollPanel.h │ │ ├── MFScrollPanel.mm │ │ ├── MFSelector.h │ │ ├── MFSelector.mm │ │ ├── MFSplitter.h │ │ ├── MFSplitter.mm │ │ ├── MFTabView.h │ │ ├── MFTabView.mm │ │ ├── MFTable.h │ │ ├── MFTable.mm │ │ ├── MFTextBox.h │ │ ├── MFTextBox.mm │ │ ├── MFTextEntry.h │ │ ├── MFTextEntry.mm │ │ ├── MFToolBar.h │ │ ├── MFToolBar.mm │ │ ├── MFTreeView.h │ │ ├── MFTreeView.mm │ │ ├── MFUtilities.h │ │ ├── MFUtilities.mm │ │ ├── MFView.h │ │ ├── MFView.mm │ │ ├── MFWizard.h │ │ ├── MFWizard.mm │ │ ├── MHudController.h │ │ ├── MHudController.mm │ │ ├── MTextImageCell.h │ │ ├── MTextImageCell.m │ │ └── WizardWindow.xib │ ├── code_editor.cpp │ ├── container.cpp │ ├── dockingpoint.cpp │ ├── docs │ │ └── Doxyfile │ ├── drawbox.cpp │ ├── filechooser.cpp │ ├── find_panel.cpp │ ├── form.cpp │ ├── fs_object_selector.cpp │ ├── gridview.cpp │ ├── gtk │ │ ├── embedded_find.glade │ │ ├── lf_app.h │ │ ├── lf_base.h │ │ ├── lf_box.h │ │ ├── lf_button.h │ │ ├── lf_canvas.h │ │ ├── lf_checkbox.h │ │ ├── lf_code_editor.h │ │ ├── lf_drawbox.h │ │ ├── lf_filechooser.h │ │ ├── lf_form.h │ │ ├── lf_imagebox.h │ │ ├── lf_label.h │ │ ├── lf_listbox.h │ │ ├── lf_menu.h │ │ ├── lf_menubar.h │ │ ├── lf_mforms.h │ │ ├── lf_native.h │ │ ├── lf_panel.h │ │ ├── lf_popover.h │ │ ├── lf_popup.h │ │ ├── lf_progressbar.h │ │ ├── lf_radiobutton.h │ │ ├── lf_scrollpanel.h │ │ ├── lf_selector.h │ │ ├── lf_splitter.h │ │ ├── lf_table.h │ │ ├── lf_tabview.h │ │ ├── lf_textbox.h │ │ ├── lf_textentry.h │ │ ├── lf_toolbar.h │ │ ├── lf_treeview.h │ │ ├── lf_utilities.h │ │ ├── lf_view.h │ │ ├── lf_wizard.h │ │ ├── lfi_bin.h │ │ ├── mforms_acc.h │ │ ├── mforms_gtk.h │ │ └── src │ │ │ ├── active_label.cpp │ │ │ ├── active_label.h │ │ │ ├── lf_app.cpp │ │ │ ├── lf_box.cpp │ │ │ ├── lf_button.cpp │ │ │ ├── lf_code_editor.cpp │ │ │ ├── lf_drawbox.cpp │ │ │ ├── lf_find_panel.cpp │ │ │ ├── lf_form.cpp │ │ │ ├── lf_hypertext.cpp │ │ │ ├── lf_label.cpp │ │ │ ├── lf_listbox.cpp │ │ │ ├── lf_menu.cpp │ │ │ ├── lf_menubar.cpp │ │ │ ├── lf_mforms.cpp │ │ │ ├── lf_native.cpp │ │ │ ├── lf_panel.cpp │ │ │ ├── lf_popover.cpp │ │ │ ├── lf_popup.cpp │ │ │ ├── lf_radiobutton.cpp │ │ │ ├── lf_scrollpanel.cpp │ │ │ ├── lf_selector.cpp │ │ │ ├── lf_splitter.cpp │ │ │ ├── lf_table.cpp │ │ │ ├── lf_tabview.cpp │ │ │ ├── lf_textbox.cpp │ │ │ ├── lf_textentry.cpp │ │ │ ├── lf_toolbar.cpp │ │ │ ├── lf_treeview.cpp │ │ │ ├── lf_utilities.cpp │ │ │ ├── lf_view.cpp │ │ │ ├── lf_wizard.cpp │ │ │ └── mforms_acc.cpp │ ├── home_screen.cpp │ ├── home_screen_connections.cpp │ ├── home_screen_documents.cpp │ ├── home_screen_helpers.cpp │ ├── hypertext.cpp │ ├── imagebox.cpp │ ├── jsonview.cpp │ ├── label.cpp │ ├── listbox.cpp │ ├── menu.cpp │ ├── menubar.cpp │ ├── mforms.cpp │ ├── mforms │ │ ├── app.h │ │ ├── appview.h │ │ ├── base.h │ │ ├── box.h │ │ ├── button.h │ │ ├── canvas.h │ │ ├── checkbox.h │ │ ├── code_editor.h │ │ ├── container.h │ │ ├── dockingpoint.h │ │ ├── drawbox.h │ │ ├── filechooser.h │ │ ├── find_panel.h │ │ ├── form.h │ │ ├── fs_object_selector.h │ │ ├── gridview.h │ │ ├── home_screen.h │ │ ├── home_screen_connections.h │ │ ├── home_screen_documents.h │ │ ├── home_screen_helpers.h │ │ ├── hypertext.h │ │ ├── imagebox.h │ │ ├── jsonview.h │ │ ├── label.h │ │ ├── listbox.h │ │ ├── menu.h │ │ ├── menubar.h │ │ ├── mforms.h │ │ ├── native.h │ │ ├── panel.h │ │ ├── password_cache.h │ │ ├── popover.h │ │ ├── popup.h │ │ ├── progressbar.h │ │ ├── radiobutton.h │ │ ├── scrollpanel.h │ │ ├── sectionbox.h │ │ ├── selector.h │ │ ├── simpleform.h │ │ ├── splitter.h │ │ ├── table.h │ │ ├── tabswitcher.h │ │ ├── tabview.h │ │ ├── tabview_dock.h │ │ ├── task_sidebar.h │ │ ├── textbox.h │ │ ├── textentry.h │ │ ├── toolbar.h │ │ ├── treeview.h │ │ ├── uistyle.h │ │ ├── utilities.h │ │ ├── view.h │ │ ├── widgets.h │ │ └── wizard.h │ ├── mysql.forms.vcxproj │ ├── mysql.forms.vcxproj.filters │ ├── native.cpp │ ├── panel.cpp │ ├── password_cache.cpp │ ├── popover.cpp │ ├── popup.cpp │ ├── progressbar.cpp │ ├── radiobutton.cpp │ ├── scrollpanel.cpp │ ├── sectionbox.cpp │ ├── selector.cpp │ ├── simpleform.cpp │ ├── splitter.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stub │ │ ├── src │ │ │ ├── stub_app.cpp │ │ │ ├── stub_base.cpp │ │ │ ├── stub_base.mm │ │ │ ├── stub_drawbox.cpp │ │ │ ├── stub_form.cpp │ │ │ ├── stub_listbox.cpp │ │ │ ├── stub_menu.cpp │ │ │ ├── stub_mforms.cpp │ │ │ ├── stub_selector.cpp │ │ │ ├── stub_textbox.cpp │ │ │ ├── stub_textentry.cpp │ │ │ ├── stub_treenode.cpp │ │ │ ├── stub_utilities.cpp │ │ │ ├── stub_view.cpp │ │ │ └── stub_wizard.cpp │ │ ├── stub_app.h │ │ ├── stub_base.h │ │ ├── stub_box.h │ │ ├── stub_button.h │ │ ├── stub_checkbox.h │ │ ├── stub_codeeditor.h │ │ ├── stub_container.h │ │ ├── stub_drawbox.h │ │ ├── stub_filechooser.h │ │ ├── stub_form.h │ │ ├── stub_hypertext.h │ │ ├── stub_imagebox.h │ │ ├── stub_label.h │ │ ├── stub_listbox.h │ │ ├── stub_menu.h │ │ ├── stub_menuitem.h │ │ ├── stub_mforms.h │ │ ├── stub_panel.h │ │ ├── stub_popup.h │ │ ├── stub_progressbar.h │ │ ├── stub_radiobutton.h │ │ ├── stub_scrollpanel.h │ │ ├── stub_selector.h │ │ ├── stub_splitter.h │ │ ├── stub_table.h │ │ ├── stub_tabview.h │ │ ├── stub_textbox.h │ │ ├── stub_textentry.h │ │ ├── stub_toolbar.h │ │ ├── stub_treenode.h │ │ ├── stub_treeview.h │ │ ├── stub_utilities.h │ │ ├── stub_view.h │ │ └── stub_wizard.h │ ├── swig │ │ ├── CMakeLists.txt │ │ ├── _cairo.vcxproj │ │ ├── _cairo.vcxproj.filters │ │ ├── _mforms.vcxproj │ │ ├── _mforms.vcxproj.filters │ │ ├── cairo.i │ │ ├── mforms.i │ │ ├── mforms_drawbox.h │ │ ├── mforms_grt.h │ │ ├── setup.py │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── table.cpp │ ├── tabswitcher.cpp │ ├── tabview.cpp │ ├── tabview_dock.cpp │ ├── task_sidebar.cpp │ ├── textbox.cpp │ ├── textentry.cpp │ ├── toolbar.cpp │ ├── treeview.cpp │ ├── utilities.cpp │ ├── view.cpp │ ├── widgets.cpp │ ├── winforms │ │ ├── AssemblyInfo.cpp │ │ ├── Canvas.cpp │ │ ├── Canvas.h │ │ ├── CanvasViewer.cpp │ │ ├── CanvasViewer.h │ │ ├── MySQLAssembly.ico │ │ ├── app.rc │ │ ├── mforms.wr.vcxproj │ │ ├── mforms.wr.vcxproj.filters │ │ ├── resource.h │ │ └── src │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── wf_app.cpp │ │ │ ├── wf_app.h │ │ │ ├── wf_appview.cpp │ │ │ ├── wf_appview.h │ │ │ ├── wf_base.cpp │ │ │ ├── wf_base.h │ │ │ ├── wf_box.cpp │ │ │ ├── wf_box.h │ │ │ ├── wf_button.cpp │ │ │ ├── wf_button.h │ │ │ ├── wf_canvas.cpp │ │ │ ├── wf_canvas.h │ │ │ ├── wf_checkbox.cpp │ │ │ ├── wf_checkbox.h │ │ │ ├── wf_code_editor.cpp │ │ │ ├── wf_code_editor.h │ │ │ ├── wf_dockingpoint.cpp │ │ │ ├── wf_dockingpoint.h │ │ │ ├── wf_drawbox.cpp │ │ │ ├── wf_drawbox.h │ │ │ ├── wf_filechooser.cpp │ │ │ ├── wf_filechooser.h │ │ │ ├── wf_find_panel.cpp │ │ │ ├── wf_find_panel.h │ │ │ ├── wf_form.cpp │ │ │ ├── wf_form.h │ │ │ ├── wf_gridview.cpp │ │ │ ├── wf_gridview.h │ │ │ ├── wf_hypertext.cpp │ │ │ ├── wf_hypertext.h │ │ │ ├── wf_imagebox.cpp │ │ │ ├── wf_imagebox.h │ │ │ ├── wf_label.cpp │ │ │ ├── wf_label.h │ │ │ ├── wf_listbox.cpp │ │ │ ├── wf_listbox.h │ │ │ ├── wf_menu.cpp │ │ │ ├── wf_menu.h │ │ │ ├── wf_menubar.cpp │ │ │ ├── wf_menubar.h │ │ │ ├── wf_mforms.cpp │ │ │ ├── wf_mforms.h │ │ │ ├── wf_native.cpp │ │ │ ├── wf_native.h │ │ │ ├── wf_panel.cpp │ │ │ ├── wf_panel.h │ │ │ ├── wf_popover.cpp │ │ │ ├── wf_popover.h │ │ │ ├── wf_popup.cpp │ │ │ ├── wf_popup.h │ │ │ ├── wf_progressbar.cpp │ │ │ ├── wf_progressbar.h │ │ │ ├── wf_radiobutton.cpp │ │ │ ├── wf_radiobutton.h │ │ │ ├── wf_scrollpanel.cpp │ │ │ ├── wf_scrollpanel.h │ │ │ ├── wf_selector.cpp │ │ │ ├── wf_selector.h │ │ │ ├── wf_splitter.cpp │ │ │ ├── wf_splitter.h │ │ │ ├── wf_table.cpp │ │ │ ├── wf_table.h │ │ │ ├── wf_tabview.cpp │ │ │ ├── wf_tabview.h │ │ │ ├── wf_textbox.cpp │ │ │ ├── wf_textbox.h │ │ │ ├── wf_textentry.cpp │ │ │ ├── wf_textentry.h │ │ │ ├── wf_toolbar.cpp │ │ │ ├── wf_toolbar.h │ │ │ ├── wf_treenode.cpp │ │ │ ├── wf_treenode.h │ │ │ ├── wf_treeview.cpp │ │ │ ├── wf_treeview.h │ │ │ ├── wf_utilities.cpp │ │ │ ├── wf_utilities.h │ │ │ ├── wf_view.cpp │ │ │ ├── wf_view.h │ │ │ ├── wf_wizard.cpp │ │ │ └── wf_wizard.h │ └── wizard.cpp ├── grt │ ├── CMakeLists.txt │ ├── grt.vcxproj │ ├── grt.vcxproj.filters │ ├── src │ │ ├── CMakeLists.txt │ │ ├── diff │ │ │ ├── changefactory.cpp │ │ │ ├── changefactory.h │ │ │ ├── changelistobjects.cpp │ │ │ ├── changelistobjects.h │ │ │ ├── changeobjects.h │ │ │ ├── diffchange.cpp │ │ │ ├── diffchange.h │ │ │ ├── grtdiff.cpp │ │ │ ├── grtdiff.h │ │ │ ├── grtlistdiff.cpp │ │ │ └── grtlistdiff.h │ │ ├── grt.cpp │ │ ├── grt.h │ │ ├── grtpp_helper.cpp │ │ ├── grtpp_helper.h │ │ ├── grtpp_metaclass.cpp │ │ ├── grtpp_module.cpp │ │ ├── grtpp_module_cpp.cpp │ │ ├── grtpp_module_cpp.h │ │ ├── grtpp_module_python.cpp │ │ ├── grtpp_module_python.h │ │ ├── grtpp_notifications.cpp │ │ ├── grtpp_notifications.h │ │ ├── grtpp_shell.cpp │ │ ├── grtpp_shell.h │ │ ├── grtpp_shell_python.cpp │ │ ├── grtpp_shell_python.h │ │ ├── grtpp_shell_python_help.cpp │ │ ├── grtpp_shell_python_help.h │ │ ├── grtpp_undo_manager.cpp │ │ ├── grtpp_undo_manager.h │ │ ├── grtpp_util.cpp │ │ ├── grtpp_util.h │ │ ├── grtpp_value.cpp │ │ ├── grtpp_value.h │ │ ├── python_context.cpp │ │ ├── python_context.h │ │ ├── python_grtdict.cpp │ │ ├── python_grtdict.h │ │ ├── python_grtlist.cpp │ │ ├── python_grtlist.h │ │ ├── python_grtobject.cpp │ │ ├── python_grtobject.h │ │ ├── python_module.cpp │ │ ├── python_module.h │ │ ├── serializer.cpp │ │ ├── serializer.h │ │ ├── unserializer.cpp │ │ └── unserializer.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── summary.dox ├── mtemplate │ ├── CMakeLists.txt │ ├── README │ ├── common.h │ ├── dictionary.cpp │ ├── dictionary.h │ ├── modifier.cpp │ ├── modifier.h │ ├── mtemplate.vcxproj │ ├── mtemplate.vcxproj.filters │ ├── output.cpp │ ├── output.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── template.cpp │ ├── template.h │ ├── types.cpp │ └── types.h ├── mysql.canvas │ ├── CMakeLists.txt │ ├── mysql.canvas.vcxproj │ ├── mysql.canvas.vcxproj.filters │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa │ │ ├── MCanvasScrollView.h │ │ ├── MCanvasScrollView.mm │ │ ├── MCanvasViewer.h │ │ └── MCanvasViewer.mm │ │ ├── gtk │ │ ├── mdc_gtk_canvas_scroller.cpp │ │ ├── mdc_gtk_canvas_scroller.h │ │ ├── mdc_gtk_canvas_view.cpp │ │ └── mdc_gtk_canvas_view.h │ │ ├── mdc.h │ │ ├── mdc_algorithms.cpp │ │ ├── mdc_algorithms.h │ │ ├── mdc_area_group.cpp │ │ ├── mdc_area_group.h │ │ ├── mdc_back_layer.cpp │ │ ├── mdc_back_layer.h │ │ ├── mdc_bounds_magnet.cpp │ │ ├── mdc_bounds_magnet.h │ │ ├── mdc_box.cpp │ │ ├── mdc_box.h │ │ ├── mdc_box_handle.cpp │ │ ├── mdc_box_handle.h │ │ ├── mdc_box_side_magnet.cpp │ │ ├── mdc_box_side_magnet.h │ │ ├── mdc_button.cpp │ │ ├── mdc_button.h │ │ ├── mdc_canvas_item.cpp │ │ ├── mdc_canvas_item.h │ │ ├── mdc_canvas_public.h │ │ ├── mdc_canvas_view.cpp │ │ ├── mdc_canvas_view.h │ │ ├── mdc_canvas_view_glx.cpp │ │ ├── mdc_canvas_view_glx.h │ │ ├── mdc_canvas_view_image.cpp │ │ ├── mdc_canvas_view_image.h │ │ ├── mdc_canvas_view_macosx.cpp │ │ ├── mdc_canvas_view_macosx.h │ │ ├── mdc_canvas_view_opengl.cpp │ │ ├── mdc_canvas_view_opengl.h │ │ ├── mdc_canvas_view_printing.cpp │ │ ├── mdc_canvas_view_printing.h │ │ ├── mdc_canvas_view_windows.cpp │ │ ├── mdc_canvas_view_windows.h │ │ ├── mdc_canvas_view_x11.cpp │ │ ├── mdc_canvas_view_x11.h │ │ ├── mdc_common.cpp │ │ ├── mdc_common.h │ │ ├── mdc_connector.cpp │ │ ├── mdc_connector.h │ │ ├── mdc_draw_util.cpp │ │ ├── mdc_draw_util.h │ │ ├── mdc_events.h │ │ ├── mdc_figure.cpp │ │ ├── mdc_figure.h │ │ ├── mdc_grid.cpp │ │ ├── mdc_grid.h │ │ ├── mdc_group.cpp │ │ ├── mdc_group.h │ │ ├── mdc_icon_text.cpp │ │ ├── mdc_icon_text.h │ │ ├── mdc_image.cpp │ │ ├── mdc_image.h │ │ ├── mdc_image_manager.cpp │ │ ├── mdc_image_manager.h │ │ ├── mdc_interaction_layer.cpp │ │ ├── mdc_interaction_layer.h │ │ ├── mdc_item_handle.cpp │ │ ├── mdc_item_handle.h │ │ ├── mdc_layer.cpp │ │ ├── mdc_layer.h │ │ ├── mdc_layouter.cpp │ │ ├── mdc_layouter.h │ │ ├── mdc_line.cpp │ │ ├── mdc_line.h │ │ ├── mdc_line_segment_handle.cpp │ │ ├── mdc_line_segment_handle.h │ │ ├── mdc_magnet.cpp │ │ ├── mdc_magnet.h │ │ ├── mdc_orthogonal_line_layouter.cpp │ │ ├── mdc_orthogonal_line_layouter.h │ │ ├── mdc_pango_text.cpp │ │ ├── mdc_pango_text.h │ │ ├── mdc_polygon.h │ │ ├── mdc_rectangle.cpp │ │ ├── mdc_rectangle.h │ │ ├── mdc_selection.cpp │ │ ├── mdc_selection.h │ │ ├── mdc_straight_line_layouter.cpp │ │ ├── mdc_straight_line_layouter.h │ │ ├── mdc_text.cpp │ │ ├── mdc_text.h │ │ ├── mdc_vertex_handle.cpp │ │ ├── mdc_vertex_handle.h │ │ ├── spl.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── parsers │ ├── CMakeLists.txt │ ├── SymbolTable.cpp │ ├── SymbolTable.h │ ├── code-completion │ │ ├── CodeCompletionCore.cpp │ │ ├── CodeCompletionCore.h │ │ ├── mysql-code-completion.cpp │ │ └── mysql-code-completion.h │ ├── grammars │ │ ├── MySQLLexer.g4 │ │ ├── MySQLParser.g4 │ │ ├── build-parsers-mac │ │ ├── build-parsers.cmd │ │ ├── predefined.tokens │ │ ├── readme.txt │ │ └── test.parser │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── main.m │ │ │ ├── mysql.parser.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── mysql_parser-Info.plist │ │ │ ├── mysql_parserAppDelegate.h │ │ │ ├── mysql_parserAppDelegate.mm │ │ │ └── mysql_parser_Prefix.h │ ├── mysql │ │ ├── MySQLBaseLexer.cpp │ │ ├── MySQLBaseLexer.h │ │ ├── MySQLBaseRecognizer.cpp │ │ ├── MySQLBaseRecognizer.h │ │ ├── MySQLRecognizerCommon.cpp │ │ ├── MySQLRecognizerCommon.h │ │ └── mysql-recognition-types.h │ ├── parsers-common.cpp │ ├── parsers-common.h │ ├── parsers.vcxproj │ ├── parsers.vcxproj.filters │ ├── stdafx.cpp │ └── stdafx.h ├── python │ ├── CMakeLists.txt │ └── workbench │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── change_tracker.py │ │ ├── client_utils.py │ │ ├── database_object_selector_widget.py │ │ ├── database_schema_selector_widget.py │ │ ├── db_driver.py │ │ ├── db_utils.py │ │ ├── doc │ │ └── images │ │ │ ├── database_object_selector.png │ │ │ └── schema_selection_widget.png │ │ ├── exceptions.py │ │ ├── graphics │ │ ├── __init__.py │ │ ├── cairo_utils.py │ │ ├── canvas.py │ │ └── charting.py │ │ ├── log.py │ │ ├── notifications.py │ │ ├── os_utils.py │ │ ├── plugins.py │ │ ├── profiling.py │ │ ├── tcp_utils.py │ │ ├── template.py │ │ ├── ui.py │ │ ├── utils.py │ │ ├── wizard_form.py │ │ ├── wizard_page_widget.py │ │ └── wizard_progress_page_widget.py ├── sql.parser │ ├── CMakeLists.txt │ ├── Parser generation course.txt │ ├── charsets │ │ ├── Index.xml │ │ ├── README │ │ ├── armscii8.xml │ │ ├── ascii.xml │ │ ├── cp1250.xml │ │ ├── cp1251.xml │ │ ├── cp1256.xml │ │ ├── cp1257.xml │ │ ├── cp850.xml │ │ ├── cp852.xml │ │ ├── cp866.xml │ │ ├── dec8.xml │ │ ├── geostd8.xml │ │ ├── greek.xml │ │ ├── hebrew.xml │ │ ├── hp8.xml │ │ ├── keybcs2.xml │ │ ├── koi8r.xml │ │ ├── koi8u.xml │ │ ├── languages.html │ │ ├── latin1.xml │ │ ├── latin2.xml │ │ ├── latin5.xml │ │ ├── latin7.xml │ │ ├── macce.xml │ │ ├── macroman.xml │ │ └── swe7.xml │ ├── generate_parser │ ├── generate_parser.bat │ ├── include │ │ ├── lex.h │ │ ├── myx_lex_helpers.h │ │ ├── myx_sql_parser_public_interface.h │ │ ├── myx_sql_tree_item.h │ │ └── myx_statement_parser.h │ ├── library_sql_parser.sln │ ├── mysql.parser.vcproj │ ├── source │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── charset-def.cpp │ │ ├── charset.cpp │ │ ├── config-win.h │ │ ├── ctype-big5.cpp │ │ ├── ctype-bin.cpp │ │ ├── ctype-cp932.cpp │ │ ├── ctype-czech.cpp │ │ ├── ctype-euc_kr.cpp │ │ ├── ctype-eucjpms.cpp │ │ ├── ctype-extra.cpp │ │ ├── ctype-gb2312.cpp │ │ ├── ctype-gbk.cpp │ │ ├── ctype-latin1.cpp │ │ ├── ctype-mb.cpp │ │ ├── ctype-simple.cpp │ │ ├── ctype-sjis.cpp │ │ ├── ctype-tis620.cpp │ │ ├── ctype-uca.cpp │ │ ├── ctype-ucs2.cpp │ │ ├── ctype-ujis.cpp │ │ ├── ctype-utf8.cpp │ │ ├── ctype-win1250ch.cpp │ │ ├── ctype.cpp │ │ ├── dllmain.cpp │ │ ├── hash.h │ │ ├── int2str.cpp │ │ ├── lex_symbol.h │ │ ├── linux │ │ │ ├── myx_sql_parser.cpp │ │ │ └── myx_sql_parser.tab.hh │ │ ├── m_ctype.h │ │ ├── m_string.h │ │ ├── my_alarm.h │ │ ├── my_base.h │ │ ├── my_config.h │ │ ├── my_dbug.h │ │ ├── my_dir.h │ │ ├── my_global.h │ │ ├── my_lib.cpp │ │ ├── my_list.h │ │ ├── my_messnc.cpp │ │ ├── my_no_pthread.h │ │ ├── my_nosys.h │ │ ├── my_static.cpp │ │ ├── my_static.h │ │ ├── my_strtoll10.cpp │ │ ├── my_sys.h │ │ ├── my_uctype.h │ │ ├── my_vsnprintf.cpp │ │ ├── my_xml.h │ │ ├── mysql_version.h │ │ ├── mysqld_error.h │ │ ├── mysys_err.h │ │ ├── mysys_priv.h │ │ ├── myx_lex_helpers.cpp │ │ ├── myx_sql_parser.yy │ │ ├── myx_sql_tree_item.cpp │ │ ├── myx_statement_parser.cpp │ │ ├── myx_unicode_scanner.cpp │ │ ├── sql_lex.h │ │ ├── sql_parser_symbols.cpp │ │ ├── sql_parser_symbols.h │ │ ├── sql_string.h │ │ ├── str_alloc.cpp │ │ ├── strmake.cpp │ │ ├── strnmov.cpp │ │ ├── strtod.cpp │ │ ├── structs.h │ │ ├── strxmov.cpp │ │ ├── t_ctype.h │ │ ├── typelib.h │ │ ├── unireg.h │ │ ├── windows │ │ │ ├── myx_sql_parser.tab.cc │ │ │ └── myx_sql_parser.tab.hh │ │ └── xml.cpp │ ├── test │ │ ├── LexerTest.cpp │ │ ├── LexerTest.h │ │ ├── test.cpp │ │ └── test.vcproj │ ├── update-tool │ │ ├── BisonHelper.iml │ │ ├── BisonHelper.ipr │ │ ├── BisonHelper.iws │ │ ├── classes │ │ │ └── BisonHelper.class │ │ └── src │ │ │ └── BisonHelper.java │ ├── yy_gen-tool │ │ ├── generate_wb_sql_grammar.bat │ │ ├── rules_to_html.bat │ │ ├── sql_yacc.prf │ │ ├── sql_yacc.yy │ │ ├── sql_yacc.yy.cpp │ │ ├── sql_yacc.yy.h │ │ ├── yy_gen-tool.sln │ │ └── yy_gen-tool │ │ │ ├── bison.bat │ │ │ ├── grammar_tree_item.cpp │ │ │ ├── grammar_tree_item.h │ │ │ ├── lex.bat │ │ │ ├── main.cpp │ │ │ ├── parser.lex │ │ │ ├── parser.lex.cc │ │ │ ├── parser.tab.cc │ │ │ ├── parser.tab.hh │ │ │ ├── parser.yy │ │ │ ├── unistd.cc │ │ │ ├── unistd.h │ │ │ ├── yy_common.cpp │ │ │ ├── yy_common.h │ │ │ ├── yy_gen-tool.vcxproj │ │ │ └── yy_gen-tool.vcxproj.filters │ └── yy_purify-tool │ │ ├── build.xml │ │ ├── dist │ │ ├── README.TXT │ │ └── yy_purify.jar │ │ ├── manifest.mf │ │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── project.properties │ │ └── project.xml │ │ ├── sql_yacc.prf │ │ ├── sql_yacc.yy │ │ ├── src │ │ └── yy_purify │ │ │ └── YYPurify.java │ │ └── yy_purify.bat ├── ssh │ ├── CMakeLists.txt │ ├── SSHCommon.cpp │ ├── SSHCommon.h │ ├── SSHSession.cpp │ ├── SSHSession.h │ ├── SSHSftp.cpp │ ├── SSHSftp.h │ ├── SSHTunnelHandler.cpp │ ├── SSHTunnelHandler.h │ ├── SSHTunnelManager.cpp │ ├── SSHTunnelManager.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── wbssh.vcxproj │ └── wbssh.vcxproj.filters └── sshtunnel │ └── sshtunnel.py ├── make_deb ├── modules ├── CMakeLists.txt ├── PrepareOutputDir.cmd ├── README ├── db.generic │ ├── CMakeLists.txt │ ├── SQLEXT.py │ ├── db_generic_migration_grt.py │ ├── db_generic_re_grt.py │ └── res │ │ ├── generic_rdbms_info.xml │ │ └── migration_generic_typemap.xml ├── db.msaccess │ ├── db_msaccess_migration_grt.py │ ├── db_msaccess_re_grt.py │ └── res │ │ └── msaccess_rdbms_info.xml ├── db.mssql │ ├── CMakeLists.txt │ ├── db_mssql_grt.py │ ├── db_mssql_migration_grt.py │ ├── res │ │ └── mssql_rdbms_info.xml │ └── unit-tests │ │ ├── db_mssql_test_main.py │ │ ├── fixtures │ │ └── table_mssql_all_datatypes.sql │ │ ├── test_db_driver.py │ │ ├── test_mssql_migration.py │ │ └── test_mssql_rev_eng.py ├── db.mysql.parser │ ├── CMakeLists.txt │ ├── db.mysql.parser.grt.vcxproj │ ├── db.mysql.parser.grt.vcxproj.filters │ └── src │ │ ├── ObjectListeners.cpp │ │ ├── ObjectListeners.h │ │ ├── mysql_parser_module.cpp │ │ ├── mysql_parser_module.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── db.mysql.query │ ├── CMakeLists.txt │ ├── db.mysql.query.grt.vcxproj │ ├── db.mysql.query.grt.vcxproj.filters │ └── src │ │ ├── dbquery.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── db.mysql.sqlparser │ ├── CMakeLists.txt │ ├── db.mysql.sqlparser.grt.vcxproj │ ├── db.mysql.sqlparser.grt.vcxproj.filters │ ├── mysql.sql.parser.be.vcproj │ └── src │ │ ├── db.mysql.sqlparser.cpp │ │ ├── mysql_invalid_sql_parser.cpp │ │ ├── mysql_invalid_sql_parser.h │ │ ├── mysql_sql_facade.cpp │ │ ├── mysql_sql_facade.h │ │ ├── mysql_sql_inserts_loader.cpp │ │ ├── mysql_sql_inserts_loader.h │ │ ├── mysql_sql_normalizer.cpp │ │ ├── mysql_sql_normalizer.h │ │ ├── mysql_sql_parser.cpp │ │ ├── mysql_sql_parser.h │ │ ├── mysql_sql_parser_base.cpp │ │ ├── mysql_sql_parser_base.h │ │ ├── mysql_sql_parser_fe.cpp │ │ ├── mysql_sql_parser_fe.h │ │ ├── mysql_sql_parser_public_interface.h │ │ ├── mysql_sql_parser_utils.cpp │ │ ├── mysql_sql_parser_utils.h │ │ ├── mysql_sql_schema_rename.cpp │ │ ├── mysql_sql_schema_rename.h │ │ ├── mysql_sql_script_splitter.cpp │ │ ├── mysql_sql_script_splitter.h │ │ ├── mysql_sql_semantic_check.cpp │ │ ├── mysql_sql_semantic_check.h │ │ ├── mysql_sql_specifics.cpp │ │ ├── mysql_sql_specifics.h │ │ ├── mysql_sql_statement_decomposer.cpp │ │ ├── mysql_sql_statement_decomposer.h │ │ ├── mysql_sql_syntax_check.cpp │ │ └── mysql_sql_syntax_check.h ├── db.mysql │ ├── CMakeLists.txt │ ├── db.mysql.grt.vcxproj │ ├── db.mysql.grt.vcxproj.filters │ ├── db_mysql_fe_grt.py │ ├── db_mysql_migration_grt.py │ ├── db_mysql_re_grt.py │ ├── res │ │ ├── db_mysql_catalog_reporting │ │ │ └── Basic_Text.tpl │ │ │ │ └── basic_text_report.txt.tpl │ │ ├── mysql_engines.xml │ │ ├── mysql_rdbms_info.xml │ │ └── reporting_includes │ │ │ ├── basic_text_report.txt.tpl.varnames.h │ │ │ └── reporting_create_headers.cmd │ └── src │ │ ├── db_mysql_catalog_report.cpp │ │ ├── db_mysql_catalog_report.h │ │ ├── db_mysql_diffsqlgen.cpp │ │ ├── db_mysql_diffsqlgen.h │ │ ├── db_mysql_diffsqlgen_grant.h │ │ ├── db_mysql_params.cpp │ │ ├── db_mysql_params.h │ │ ├── db_mysql_public_interface.h │ │ ├── module_db_mysql.cpp │ │ ├── module_db_mysql.h │ │ ├── module_db_mysql_shared_code.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── db.postgresql │ ├── CMakeLists.txt │ ├── db_postgresql_migration_grt.py │ ├── db_postgresql_re_grt.py │ └── res │ │ └── postgresql_rdbms_info.xml ├── db.sql92 │ ├── CMakeLists.txt │ ├── db_sql92_migration_grt.py │ ├── db_sql92_re_grt.py │ └── res │ │ └── sql92_rdbms_info.xml ├── db.sqlanywhere │ ├── CMakeLists.txt │ ├── db_sqlanywhere_migration_grt.py │ ├── db_sqlanywhere_re_grt.py │ ├── res │ │ └── sqlanywhere_rdbms_info.xml │ └── sqlanydbwrapper.py ├── db.sqlite │ ├── CMakeLists.txt │ ├── db_sqlite_migration_grt.py │ ├── db_sqlite_re_grt.py │ └── res │ │ └── sqlite_rdbms_info.xml ├── db.sybase │ ├── CMakeLists.txt │ ├── db_sybase_migration_grt.py │ ├── db_sybase_re_grt.py │ └── res │ │ └── sybase_rdbms_info.xml ├── interfaces │ ├── CONTENTS │ ├── interfaces.h │ ├── plugin.h │ ├── sqlgenerator.h │ ├── wb_model_reporting.h │ └── wbvalidation.h ├── sample │ └── src │ │ ├── sample.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── utilities │ ├── CMakeLists.txt │ ├── src │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── utilities.cpp │ ├── utilities.grt.vcxproj │ └── utilities.grt.vcxproj.filters ├── wb.model │ ├── CMakeLists.txt │ ├── res │ │ └── wb_model_reporting │ │ │ ├── HTML_Basic_Frames.tpl │ │ │ ├── basic.css.tpl │ │ │ ├── index.html.tpl │ │ │ ├── info.xml │ │ │ ├── overview.html.tpl │ │ │ ├── preview_basic.png │ │ │ ├── preview_restrained.png │ │ │ ├── restrained.css.tpl │ │ │ └── table_details.html.tpl │ │ │ ├── HTML_Basic_Single_Page.tpl │ │ │ ├── basic.css.tpl │ │ │ ├── index.html.tpl │ │ │ └── info.xml │ │ │ ├── HTML_Detailed_Frames.tpl │ │ │ ├── basic.css.tpl │ │ │ ├── coated.css.tpl │ │ │ ├── images │ │ │ │ ├── back.png │ │ │ │ ├── logo.png │ │ │ │ ├── next.png │ │ │ │ ├── preview_coated.png │ │ │ │ ├── preview_main.png │ │ │ │ └── title-background.png │ │ │ ├── index.html.tpl │ │ │ ├── info.xml │ │ │ ├── overview.html.tpl │ │ │ ├── overview_list.html.tpl │ │ │ ├── routine_details.html.tpl │ │ │ ├── table_details.html.tpl │ │ │ ├── table_details_list.html.tpl │ │ │ ├── table_element_details.html.tpl │ │ │ ├── top.html.tpl │ │ │ └── view_details.html.tpl │ │ │ └── Text_Basic.tpl │ │ │ ├── info.xml │ │ │ ├── preview_basic.png │ │ │ └── report.txt.tpl │ ├── src │ │ ├── reporting.cpp │ │ ├── reporting.h │ │ ├── reporting_template_variables.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb_model.cpp │ │ ├── wb_model.h │ │ └── wb_model_public_interface.h │ ├── wb.model.grt.vcxproj │ └── wb.model.grt.vcxproj.filters └── wb.utils │ ├── CMakeLists.txt │ ├── code_utils_grt.py │ ├── table_templates.py │ ├── table_utils_grt.py │ ├── text_grt.py │ ├── wb_catalog_utils.py │ ├── wb_dev_utils_grt.py │ ├── wb_model_utils.py │ └── wb_utils_grt.py ├── mysql-workbench.desktop.in ├── mysql-workbench.mime ├── plugins ├── CMakeLists.txt ├── README ├── db.mysql.diff.reporting │ ├── CMakeLists.txt │ ├── backend │ │ ├── db_mysql_diff_reporting.cpp │ │ ├── db_mysql_diff_reporting.h │ │ ├── db_mysql_diff_reporting_public_interface.h │ │ └── register_plugin.cpp │ ├── db.mysql.diff.reporting.wbp.vcxproj │ ├── db.mysql.diff.reporting.wbp.vcxproj.filters │ ├── frontend │ │ └── diff_reporting.cpp │ ├── stdafx.cpp │ └── stdafx.h ├── db.mysql.editors │ ├── CMakeLists.txt │ ├── backend │ │ ├── db.mysql.editors.wbp.be.vcxproj │ │ ├── db.mysql.editors.wbp.be.vcxproj.filters │ │ ├── db.mysql.editors.wbp.be.vcxproj.moved │ │ ├── mysql_relationship_editor.cpp │ │ ├── mysql_relationship_editor.h │ │ ├── mysql_routine_editor.cpp │ │ ├── mysql_routine_editor.h │ │ ├── mysql_routinegroup_editor.cpp │ │ ├── mysql_routinegroup_editor.h │ │ ├── mysql_schema_editor.cpp │ │ ├── mysql_schema_editor.h │ │ ├── mysql_support_backend_public_interface.h │ │ ├── mysql_table_editor.cpp │ │ ├── mysql_table_editor.h │ │ ├── mysql_view_editor.cpp │ │ ├── mysql_view_editor.h │ │ ├── register_plugin.cpp │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── mysql_editor_priv_page.cpp │ │ ├── mysql_editor_priv_page.h │ │ ├── mysql_relationship_editor_fe.cpp │ │ ├── mysql_role_editor_fe.cpp │ │ ├── mysql_routine_editor_fe.cpp │ │ ├── mysql_routinegroup_editor_fe.cpp │ │ ├── mysql_table_editor_column_page.cpp │ │ ├── mysql_table_editor_column_page.h │ │ ├── mysql_table_editor_fe.cpp │ │ ├── mysql_table_editor_fe.h │ │ ├── mysql_table_editor_fk_page.cpp │ │ ├── mysql_table_editor_fk_page.h │ │ ├── mysql_table_editor_index_page.cpp │ │ ├── mysql_table_editor_index_page.h │ │ ├── mysql_table_editor_opt_page.cpp │ │ ├── mysql_table_editor_opt_page.h │ │ ├── mysql_table_editor_part_page.cpp │ │ ├── mysql_table_editor_part_page.h │ │ ├── mysql_table_editor_trigger_page.cpp │ │ ├── mysql_table_editor_trigger_page.h │ │ ├── mysql_user_editor_fe.cpp │ │ ├── mysql_view_editor_fe.cpp │ │ ├── res │ │ │ ├── editor_mysql_table.glade │ │ │ ├── editor_mysql_table_live.glade │ │ │ ├── editor_relationship.glade │ │ │ ├── editor_rg.glade │ │ │ ├── editor_role.glade │ │ │ ├── editor_routine.glade │ │ │ ├── editor_schema.glade │ │ │ ├── editor_user.glade │ │ │ ├── editor_view.glade │ │ │ └── live_editor_decoration.glade │ │ └── schema_editor_fe.cpp │ ├── macosx │ │ ├── DbPrivilegeEditorTab.h │ │ ├── DbPrivilegeEditorTab.mm │ │ ├── MacTableEditorColumnsInformationSource.h │ │ ├── MacTableEditorColumnsInformationSource.mm │ │ ├── MacTableEditorFKColumnsInformationSource.h │ │ ├── MacTableEditorFKColumnsInformationSource.mm │ │ ├── MacTableEditorIndexColumnsInformationSource.h │ │ ├── MacTableEditorIndexColumnsInformationSource.mm │ │ ├── MacTableEditorInformationSource.h │ │ ├── MacTableEditorInformationSource.mm │ │ ├── MySQLRelationshipEditor.h │ │ ├── MySQLRelationshipEditor.mm │ │ ├── MySQLRelationshipEditor.xib │ │ ├── MySQLRoutineEditor.h │ │ ├── MySQLRoutineEditor.mm │ │ ├── MySQLRoutineEditor.xib │ │ ├── MySQLRoutineGroupEditor.h │ │ ├── MySQLRoutineGroupEditor.mm │ │ ├── MySQLRoutineGroupEditor.xib │ │ ├── MySQLSchemaEditor.h │ │ ├── MySQLSchemaEditor.mm │ │ ├── MySQLSchemaEditor.xib │ │ ├── MySQLTableEditor.h │ │ ├── MySQLTableEditor.mm │ │ ├── MySQLTableEditor.xib │ │ ├── MySQLViewEditor.h │ │ ├── MySQLViewEditor.mm │ │ ├── MySQLViewEditor.xib │ │ ├── PrivilegesTab.xib │ │ ├── RoleEditor.h │ │ ├── RoleEditor.mm │ │ ├── RoleEditor.xib │ │ ├── UserEditor.h │ │ ├── UserEditor.mm │ │ ├── UserEditor.xib │ │ └── db.mysql.editors-Info.plist │ └── windows │ │ ├── cs │ │ ├── DbMysqlRelationshipEditor.Designer.cs │ │ ├── DbMysqlRelationshipEditor.cs │ │ ├── DbMysqlRelationshipEditor.resx │ │ ├── DbMysqlRoleEditor.Designer.cs │ │ ├── DbMysqlRoleEditor.cs │ │ ├── DbMysqlRoleEditor.resx │ │ ├── DbMysqlRoutineEditor.Designer.cs │ │ ├── DbMysqlRoutineEditor.cs │ │ ├── DbMysqlRoutineEditor.resx │ │ ├── DbMysqlRoutineGroupEditor.Designer.cs │ │ ├── DbMysqlRoutineGroupEditor.cs │ │ ├── DbMysqlRoutineGroupEditor.resx │ │ ├── DbMysqlSchemaEditor.Designer.cs │ │ ├── DbMysqlSchemaEditor.cs │ │ ├── DbMysqlSchemaEditor.resx │ │ ├── DbMysqlTableColumnsListModel.cs │ │ ├── DbMysqlTableEditor.Designer.cs │ │ ├── DbMysqlTableEditor.cs │ │ ├── DbMysqlTableEditor.resx │ │ ├── DbMysqlTableFkColumnListModel.cs │ │ ├── DbMysqlTableFkListModel.cs │ │ ├── DbMysqlTableIndexColumnsListModel.cs │ │ ├── DbMysqlTableIndicesListModel.cs │ │ ├── DbMysqlUserEditor.Designer.cs │ │ ├── DbMysqlUserEditor.cs │ │ ├── DbMysqlUserEditor.resx │ │ ├── DbMysqlViewEditor.Designer.cs │ │ ├── DbMysqlViewEditor.cs │ │ ├── DbMysqlViewEditor.resx │ │ ├── MySQLAssembly.ico │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── EditorCollapsed.png │ │ │ ├── EditorExpanded.png │ │ │ ├── mini_error.png │ │ │ ├── mini_notice.png │ │ │ ├── parse_indicator_green.png │ │ │ └── parse_indicator_red.png │ │ └── db.mysql.editors.wbp.fe.csproj │ │ └── wrapper │ │ ├── MySQLRelationshipEditorWrapper.cpp │ │ ├── MySQLRelationshipEditorWrapper.h │ │ ├── MySQLRoutineEditorWrapper.cpp │ │ ├── MySQLRoutineEditorWrapper.h │ │ ├── MySQLRoutineGroupEditorWrapper.cpp │ │ ├── MySQLRoutineGroupEditorWrapper.h │ │ ├── MySQLSchemaEditorWrapper.cpp │ │ ├── MySQLSchemaEditorWrapper.h │ │ ├── MySQLTableEditorWrapper.cpp │ │ ├── MySQLTableEditorWrapper.h │ │ ├── MySQLViewEditorWrapper.cpp │ │ ├── MySQLViewEditorWrapper.h │ │ ├── db.mysql.editors.wbp.wr.vcxproj │ │ ├── db.mysql.editors.wbp.wr.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── db.mysql │ ├── CMakeLists.txt │ ├── backend │ │ ├── db_alter_script_be.cpp │ │ ├── db_alter_script_be.h │ │ ├── db_frw_eng_be.cpp │ │ ├── db_frw_eng_be.h │ │ ├── db_mysql_public_interface.h │ │ ├── db_mysql_sql_export.cpp │ │ ├── db_mysql_sql_export.h │ │ ├── db_mysql_sql_script_sync.cpp │ │ ├── db_mysql_sql_script_sync.h │ │ ├── db_mysql_sql_sync.cpp │ │ ├── db_mysql_sql_sync.h │ │ ├── db_mysql_validation_page.cpp │ │ ├── db_mysql_validation_page.h │ │ ├── db_plugin_be.cpp │ │ ├── db_plugin_be.h │ │ ├── db_rev_eng_be.cpp │ │ ├── db_rev_eng_be.h │ │ ├── diff_tree.cpp │ │ ├── diff_tree.h │ │ ├── register_plugin.cpp │ │ ├── sql_import_be.cpp │ │ ├── sql_import_be.h │ │ ├── wb_plugin_be.cpp │ │ └── wb_plugin_be.h │ ├── db.mysql.wbp.vcxproj │ ├── db.mysql.wbp.vcxproj.filters │ ├── frontend │ │ ├── catalog_validation_page.h │ │ ├── data_source_selector_page.h │ │ ├── db_forward_engineer.cpp │ │ ├── db_forward_engineer_script.cpp │ │ ├── db_reverse_engineer.cpp │ │ ├── db_reverse_engineer_script.cpp │ │ ├── db_reverse_engineer_script.h │ │ ├── db_synchronize_any.cpp │ │ ├── db_synchronize_model.cpp │ │ ├── fetch_schema_contents_multi_page.h │ │ ├── fetch_schema_contents_page.h │ │ ├── fetch_schema_names_multi_page.h │ │ ├── fetch_schema_names_page.h │ │ ├── multi_source_selector_page.h │ │ ├── name_mapping_editor.h │ │ ├── schema_matching_page.cpp │ │ ├── schema_matching_page.h │ │ ├── schema_selection_page.h │ │ ├── synchronize_differences_page.cpp │ │ └── synchronize_differences_page.h │ ├── stdafx.cpp │ └── stdafx.h ├── db.search │ ├── CMakeLists.txt │ ├── DbSearchFilterPanel.cpp │ ├── DbSearchFilterPanel.h │ ├── DbSearchPanel.cpp │ ├── DbSearchPanel.h │ ├── db.search.wbp.be.vcxproj │ ├── db.search.wbp.be.vcxproj.filters │ ├── register_plugin.cpp │ ├── stdafx.cpp │ └── stdafx.h ├── migration │ ├── CMakeLists.txt │ ├── backend │ │ ├── DataMigrator.py │ │ └── migration.py │ ├── copytable │ │ ├── converter.cpp │ │ ├── converter.h │ │ ├── copytable.cpp │ │ ├── copytable.h │ │ ├── main.cpp │ │ ├── python_copy_data_source.cpp │ │ ├── python_copy_data_source.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb.migration.copytable.vcxproj │ │ └── wb.migration.copytable.vcxproj.filters │ ├── dbcopy │ │ ├── db_copy_grt.py │ │ ├── db_copy_main.py │ │ ├── db_copy_overview.py │ │ ├── db_copy_progress.py │ │ ├── db_copy_report.py │ │ ├── db_copy_schema_selection.py │ │ └── db_copy_source_target.py │ ├── doc │ │ ├── Makefile │ │ ├── conf.py │ │ ├── grt.py │ │ ├── images │ │ │ ├── migration_odbc_drivers.png │ │ │ └── migration_process.png │ │ ├── index.rst │ │ ├── make.bat │ │ ├── mforms.py │ │ ├── migration_api.rst │ │ ├── odbc_setup.rst │ │ └── workbench_module.rst │ ├── frontend │ │ ├── datatype_mapping_editor.py │ │ ├── migration_bulk_copy_data.py │ │ ├── migration_data_transfer.py │ │ ├── migration_main.py │ │ ├── migration_object_editing.py │ │ ├── migration_object_migration.py │ │ ├── migration_object_selection.py │ │ ├── migration_overview.py │ │ ├── migration_project_management.py │ │ ├── migration_schema_creation.py │ │ ├── migration_schema_mappings.py │ │ ├── migration_schema_selection.py │ │ ├── migration_source_selection.py │ │ ├── migration_summary.py │ │ ├── migration_toolbars.py │ │ └── migration_ui_style.py │ ├── migration_grt.py │ ├── unit-tests │ │ ├── fixtures │ │ │ ├── mssql_connection.xml │ │ │ ├── sqlite │ │ │ │ ├── blob_expected_target_data.sql │ │ │ │ ├── blob_source.sql │ │ │ │ ├── blob_table_file.txt │ │ │ │ ├── blob_target.sql │ │ │ │ ├── datetime_expected_target_data.sql │ │ │ │ ├── datetime_source.sql │ │ │ │ ├── datetime_table_file.txt │ │ │ │ ├── datetime_target.sql │ │ │ │ ├── integer_expected_target_data.sql │ │ │ │ ├── integer_source.sql │ │ │ │ ├── integer_table_file.txt │ │ │ │ ├── integer_target.sql │ │ │ │ ├── numeric_expected_target_data.sql │ │ │ │ ├── numeric_source.sql │ │ │ │ ├── numeric_table_file.txt │ │ │ │ ├── numeric_target.sql │ │ │ │ ├── string_expected_target_data.sql │ │ │ │ ├── string_source.sql │ │ │ │ ├── string_table_file.txt │ │ │ │ ├── string_target.sql │ │ │ │ ├── unsigned_integer_expected_target_data.sql │ │ │ │ ├── unsigned_integer_source.sql │ │ │ │ ├── unsigned_integer_table_file.txt │ │ │ │ └── unsigned_integer_target.sql │ │ │ └── tables_mysql.sql │ │ ├── migration_test_main.py │ │ ├── settings.py.in │ │ ├── test_migration_script.py │ │ └── test_wbcopytables.py │ └── wbcopytables.in ├── wb.admin │ ├── CMakeLists.txt │ ├── backend │ │ ├── config │ │ │ ├── gen-opt │ │ │ │ ├── 1_mysqld2optlist.py │ │ │ │ ├── 2_genoptions_layout.py │ │ │ │ ├── 3_rawopts2opts.py │ │ │ │ ├── README │ │ │ │ ├── generate.sh │ │ │ │ ├── missing_info.py │ │ │ │ ├── mysqld.xml │ │ │ │ ├── option_category_editor.py │ │ │ │ ├── options_layout.py │ │ │ │ ├── opts.py │ │ │ │ ├── raw_opts.py │ │ │ │ ├── raw_vars.py │ │ │ │ ├── status_groups.py │ │ │ │ ├── variable_column_widths.py │ │ │ │ ├── variable_groups.py │ │ │ │ └── wb_admin_variable_list.py │ │ │ └── test │ │ │ │ ├── README │ │ │ │ └── wba_new.py │ │ ├── my.cnf │ │ ├── opts.py │ │ ├── unit-tests │ │ │ ├── ci_test_wb_common.py │ │ │ ├── ci_test_wb_server_management.py │ │ │ ├── grt.py │ │ │ └── wb_admin_config_file_be_unittests.py │ │ ├── wb_admin_config_file_be.py │ │ ├── wb_admin_control.py │ │ ├── wb_admin_perfschema_instrumentation_be.py │ │ ├── wb_admin_security_be.py │ │ ├── wb_admin_user_privileges.py │ │ ├── wb_admin_variable_list.py │ │ ├── wb_common.py │ │ ├── wb_log_reader.py │ │ ├── wb_server_control.py │ │ ├── wb_server_management.py │ │ └── wba_monitor_be.py │ ├── frontend │ │ ├── wb_admin_config_file_ui.py │ │ ├── wb_admin_configuration_startup.py │ │ ├── wb_admin_connections.py │ │ ├── wb_admin_export.py │ │ ├── wb_admin_export_options.py │ │ ├── wb_admin_grt.py │ │ ├── wb_admin_logs.py │ │ ├── wb_admin_main.py │ │ ├── wb_admin_monitor.py │ │ ├── wb_admin_performance_dashboard.py │ │ ├── wb_admin_perfschema.py │ │ ├── wb_admin_perfschema_instrumentation.py │ │ ├── wb_admin_perfschema_reports.py │ │ ├── wb_admin_security.py │ │ ├── wb_admin_server_status.py │ │ ├── wb_admin_ui_profile.py │ │ ├── wb_admin_utils.py │ │ ├── wb_admin_variables.py │ │ ├── wb_execute_window.py │ │ └── wba_ssh_ui.py │ └── unit-tests │ │ ├── fixtures │ │ └── sample_general_log.sql │ │ ├── test_wb_log_reader.py │ │ └── wb_admin_test_main.py ├── wb.model.editors │ ├── CMakeLists.txt │ ├── backend │ │ ├── register_plugin.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb.model.editors.wbp.be.vcxproj │ │ ├── wb.model.editors.wbp.be.vcxproj.filters │ │ ├── wb.model.editors.wbp.be.vcxproj.moved │ │ ├── wb_editor_backend_public_interface.h │ │ ├── wb_editor_image.cpp │ │ ├── wb_editor_image.h │ │ ├── wb_editor_layer.cpp │ │ ├── wb_editor_layer.h │ │ ├── wb_editor_note.cpp │ │ ├── wb_editor_note.h │ │ ├── wb_editor_storednote.cpp │ │ └── wb_editor_storednote.h │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── editor_image_fe.cpp │ │ ├── editor_layer_fe.cpp │ │ ├── editor_note_fe.cpp │ │ ├── editor_stored_note_fe.cpp │ │ └── res │ │ │ ├── editor_image.glade │ │ │ ├── editor_layer.glade │ │ │ ├── editor_note.glade │ │ │ ├── editor_note.gladep │ │ │ └── editor_storednote.glade │ ├── macosx │ │ ├── WbModelImageEditor.h │ │ ├── WbModelImageEditor.mm │ │ ├── WbModelImageEditor.xib │ │ ├── WbModelNoteEditor.h │ │ ├── WbModelNoteEditor.mm │ │ ├── WbModelNoteEditor.xib │ │ ├── WbModelStoredNoteEditor.h │ │ ├── WbModelStoredNoteEditor.mm │ │ ├── WbModelStoredNoteEditor.xib │ │ ├── WbPhysicalLayerEditor.h │ │ ├── WbPhysicalLayerEditor.mm │ │ ├── WbPhysicalLayerEditor.xib │ │ └── wb.model.editors-Info.plist │ └── windows │ │ ├── cs │ │ ├── ImageEditor.Designer.cs │ │ ├── ImageEditor.cs │ │ ├── ImageEditor.resx │ │ ├── MySQLAssembly.ico │ │ ├── NoteEditor.Designer.cs │ │ ├── NoteEditor.cs │ │ ├── NoteEditor.resx │ │ ├── PhysicalLayerEditor.Designer.cs │ │ ├── PhysicalLayerEditor.cs │ │ ├── PhysicalLayerEditor.resx │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── StoredNoteEditor.Designer.cs │ │ ├── StoredNoteEditor.cs │ │ ├── StoredNoteEditor.resx │ │ ├── UserDatatypesEditor.Designer.cs │ │ ├── UserDatatypesEditor.cs │ │ └── wb.model.editors.wbp.fe.csproj │ │ └── wrapper │ │ ├── ImageEditorWrapper.cpp │ │ ├── ImageEditorWrapper.h │ │ ├── LayerEditorWrapper.cpp │ │ ├── LayerEditorWrapper.h │ │ ├── NoteEditorWrapper.cpp │ │ ├── NoteEditorWrapper.h │ │ ├── StoredNoteEditorWrapper.cpp │ │ ├── StoredNoteEditorWrapper.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb.model.editors.wbp.wr.vcxproj │ │ └── wb.model.editors.wbp.wr.vcxproj.filters ├── wb.model.snippets │ ├── CMakeLists.txt │ ├── include_model_wizard.cpp │ ├── include_model_wizard.h │ ├── merge_model.cpp │ ├── merge_model.h │ ├── register_plugin.cpp │ ├── schema_select_form.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── wb.model.snippets.wbp.vcxproj │ └── wb.model.snippets.wbp.vcxproj.filters ├── wb.model.tagging │ ├── backend │ │ ├── register_plugin.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb_tag_editor.cpp │ │ └── wb_tag_editor.h │ └── macosx │ │ ├── WbTagEditor.h │ │ ├── WbTagEditor.mm │ │ ├── WbTagEditor.xib │ │ └── wb.model.tagging-Info.plist ├── wb.printing │ ├── CMakeLists.txt │ ├── backend │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb.printing.wbp.be.vcxproj │ │ ├── wb.printing.wbp.be.vcxproj.filters │ │ ├── wb_module_printing.cpp │ │ ├── wb_module_printing.h │ │ ├── wb_printing.cpp │ │ └── wb_printing.h │ ├── linux │ │ ├── CMakeLists.txt │ │ └── wb_printing_linux.cpp │ ├── macosx │ │ ├── PrintDialog.h │ │ ├── PrintDialog.mm │ │ └── wb.printing-Info.plist │ └── windows │ │ ├── cs │ │ ├── MySQLAssembly.ico │ │ ├── PrintDialog.cs │ │ ├── PrintFileDialog.Designer.cs │ │ ├── PrintFileDialog.cs │ │ ├── PrintFileDialog.resx │ │ ├── PrintPreviewDialog.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── wb.printing.wbp.fe.csproj │ │ └── wrapper │ │ ├── WbPrinting.cpp │ │ ├── WbPrinting.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── wb.printing.wbp.wr.vcxproj │ │ └── wb.printing.wbp.wr.vcxproj.filters ├── wb.query.analysis │ ├── CMakeLists.txt │ ├── explain_renderer.py │ ├── optimizer_trace_renderer.py │ ├── performance_charting.py │ └── wb_query_analysis_grt.py └── wb.sqlide │ ├── CMakeLists.txt │ ├── run_script.py │ ├── sql_reformatter.py │ ├── sqlide_catalogman_ext.py │ ├── sqlide_grt.py │ ├── sqlide_import_spatial.py │ ├── sqlide_power_export_wizard.py │ ├── sqlide_power_import_export_be.py │ ├── sqlide_power_import_wizard.py │ ├── sqlide_resultset_ext.py │ ├── sqlide_schematree_ext.py │ ├── sqlide_tableman_ext.py │ └── text_output.py ├── po ├── README.i18n ├── scan_po_files.sh └── scan_xml.py ├── prefix ├── MySQLWorkbench_prefix.h ├── WBExtras_prefix.h ├── _cairo_prefix.h ├── _mforms_prefix.h ├── cdbc_prefix.h ├── db.mysql.diff.reporting.wbp_prefix.h ├── db.mysql.editors.wbp_prefix.h ├── db.mysql.editors_prefix.h ├── db.mysql.grt_prefix.h ├── db.mysql.parser.grt_prefix.h ├── db.mysql.query.grt_prefix.h ├── db.mysql.sqlparser.grt_prefix.h ├── db.mysql.wbp_prefix.h ├── db.search.wbp_prefix.h ├── genobj_prefix.h ├── genwrap_prefix.h ├── grt_prefix.h ├── mforms_prefix.h ├── mtemplate_prefix.h ├── mysql.canvas_prefix.h ├── mysql.parser_prefix.h ├── parsers_prefix.h ├── sql.parser_prefix.h ├── utilities.grt_prefix.h ├── wb.model.advfind.wbp_prefix.h ├── wb.model.editors.wbp_prefix.h ├── wb.model.editors_prefix.h ├── wb.model.grt_prefix.h ├── wb.model.reporting.wbp_prefix.h ├── wb.model.snippets.wbp_prefix.h ├── wb.mysql.import.grt_prefix.h ├── wb.mysql.validation.grt_prefix.h ├── wb.ng.grt.prefix.h ├── wb.ng.wbp_prefix.h ├── wb.printing.wbp_prefix.h ├── wb.printing_prefix.h ├── wb.validation.grt_prefix.h ├── wbbase_prefix.h ├── wbcopytables_prefix.h ├── wbprivate.be_prefix.h ├── wbpublic.be_prefix.h ├── wbssh_prefix.h └── wbtests_prefix.h ├── res ├── CMakeLists.txt ├── grt │ ├── CMakeLists.txt │ ├── structs.app.xml │ ├── structs.db.mgmt.xml │ ├── structs.db.migration.xml │ ├── structs.db.mssql.xml │ ├── structs.db.mysql.xml │ ├── structs.db.oracle.xml │ ├── structs.db.query.xml │ ├── structs.db.sybase.xml │ ├── structs.db.xml │ ├── structs.eer.xml │ ├── structs.meta.xml │ ├── structs.model.xml │ ├── structs.ui.xml │ ├── structs.workbench.logical.xml │ ├── structs.workbench.model.reporting.xml │ ├── structs.workbench.model.xml │ ├── structs.workbench.physical.xml │ ├── structs.workbench.xml │ ├── structs.wrapper.xml │ └── structs.xml ├── grtdata │ ├── CMakeLists.txt │ └── db_datatype_groups.xml ├── mysql.profiles │ ├── CMakeLists.txt │ ├── CentOS_7_(MySQL_Package).xml │ ├── Fedora_Linux_(MySQL_Package).xml │ ├── Fedora_Linux_(Vendor_Package).xml │ ├── Fedora_Linux_24_(Vendor_Package).xml │ ├── Fedora_Linux_25_(Vendor_Package).xml │ ├── FreeBSD_(MySQL_Package).xml │ ├── Generic_Linux_(MySQL_tar_package).xml │ ├── Linux_(Custom).xml │ ├── MySQL_Sandbox_Linux(MySQL_tar_package).xml │ ├── MySQL_Sandbox_MacOS(MySQL_tar_package).xml │ ├── OpenSolaris_(MySQL_Package).xml │ ├── Oracle_Linux_6_(MySQL_Package).xml │ ├── Oracle_Linux_7_(MySQL_Package).xml │ ├── RHEL_(MySQL_Package).xml │ ├── RHEL_7_(MySQL_Package).xml │ ├── SLES_(MySQL_Package).xml │ ├── Ubuntu_Linux_(MySQL_Package).xml │ ├── Ubuntu_Linux_(Vendor_Package).xml │ ├── Ubuntu_Linux_(sysvinit,_MySQL_Package).xml │ ├── Ubuntu_Linux_(sysvinit,_Vendor_Package).xml │ ├── Windows_(MySQL_5.5_Installer_Package).xml │ ├── Windows_(MySQL_5.6_Installer_Package).xml │ ├── Windows_(MySQL_5.7_Installer_Package).xml │ ├── Windows_(MySQL_8.0_Installer_Package).xml │ ├── Windows_x64_(MySQL_x86_zip_Package).xml │ └── macOS_(MySQL_Package).xml ├── scripts │ ├── CMakeLists.txt │ ├── python │ │ ├── db_utils.py │ │ ├── grt_python_debugger.py │ │ ├── mysqlwbmeb.py │ │ ├── wb.py │ │ └── wbadminhelper.py │ ├── script_templates │ │ ├── eer_model_object_grt.py.txt │ │ ├── eer_model_utility_grt.py.txt │ │ ├── generic_grt.py.txt │ │ ├── sql_editor_catalog_grt.py.txt │ │ ├── sql_editor_filter_grt.py.txt │ │ ├── sql_editor_resultset_grt.py.txt │ │ └── sql_editor_utility_grt.py.txt │ ├── shell │ │ ├── mysql_system_status.vbs │ │ └── mysql_system_status_rmt.vbs │ ├── snippets │ │ └── shell_snippets.py.txt │ ├── sys │ │ ├── LICENSE │ │ ├── README.md │ │ ├── after_setup.sql │ │ ├── before_setup.sql │ │ ├── functions │ │ │ ├── extract_schema_from_file_name.sql │ │ │ ├── extract_table_from_file_name.sql │ │ │ ├── format_bytes.sql │ │ │ ├── format_path.sql │ │ │ ├── format_statement.sql │ │ │ ├── format_time.sql │ │ │ ├── ps_is_account_enabled.sql │ │ │ ├── ps_is_account_enabled_57.sql │ │ │ ├── ps_is_consumer_enabled.sql │ │ │ ├── ps_is_instrument_default_enabled.sql │ │ │ ├── ps_is_instrument_default_timed.sql │ │ │ ├── ps_is_thread_instrumented.sql │ │ │ ├── ps_thread_id.sql │ │ │ ├── ps_thread_stack.sql │ │ │ └── sys_get_config.sql │ │ ├── generate_sql_file.sh │ │ ├── procedures │ │ │ ├── create_synonym_db.sql │ │ │ ├── ps_setup_disable_background_threads.sql │ │ │ ├── ps_setup_disable_consumer.sql │ │ │ ├── ps_setup_disable_consumers.sql │ │ │ ├── ps_setup_disable_instrument.sql │ │ │ ├── ps_setup_disable_thread.sql │ │ │ ├── ps_setup_enable_background_threads.sql │ │ │ ├── ps_setup_enable_consumer.sql │ │ │ ├── ps_setup_enable_consumers.sql │ │ │ ├── ps_setup_enable_instrument.sql │ │ │ ├── ps_setup_enable_thread.sql │ │ │ ├── ps_setup_reload_saved.sql │ │ │ ├── ps_setup_reset_to_default.sql │ │ │ ├── ps_setup_reset_to_default_57.sql │ │ │ ├── ps_setup_reset_to_default_57_after.sql │ │ │ ├── ps_setup_reset_to_default_57_before.sql │ │ │ ├── ps_setup_save.sql │ │ │ ├── ps_setup_show_disabled.sql │ │ │ ├── ps_setup_show_disabled_consumers.sql │ │ │ ├── ps_setup_show_disabled_instruments.sql │ │ │ ├── ps_setup_show_enabled.sql │ │ │ ├── ps_setup_show_enabled_consumers.sql │ │ │ ├── ps_setup_show_enabled_instruments.sql │ │ │ ├── ps_statement_avg_latency_histogram.sql │ │ │ ├── ps_trace_statement_digest.sql │ │ │ ├── ps_trace_thread.sql │ │ │ └── ps_truncate_all_tables.sql │ │ ├── sys_56.sql │ │ ├── sys_57.sql │ │ ├── sys_reports.js │ │ ├── tables │ │ │ ├── sys_config.sql │ │ │ └── sys_config_data.sql │ │ ├── triggers │ │ │ ├── sys_config_insert_set_user.sql │ │ │ └── sys_config_update_set_user.sql │ │ └── views │ │ │ ├── i_s │ │ │ ├── innodb_buffer_stats_by_schema.sql │ │ │ ├── innodb_buffer_stats_by_table.sql │ │ │ ├── innodb_lock_waits.sql │ │ │ ├── schema_object_overview.sql │ │ │ ├── x_innodb_buffer_stats_by_schema.sql │ │ │ ├── x_innodb_buffer_stats_by_table.sql │ │ │ └── x_innodb_lock_waits.sql │ │ │ └── p_s │ │ │ ├── host_summary.sql │ │ │ ├── host_summary_57.sql │ │ │ ├── host_summary_by_file_io.sql │ │ │ ├── host_summary_by_file_io_type.sql │ │ │ ├── host_summary_by_stages.sql │ │ │ ├── host_summary_by_statement_latency.sql │ │ │ ├── host_summary_by_statement_type.sql │ │ │ ├── io_by_thread_by_latency.sql │ │ │ ├── io_global_by_file_by_bytes.sql │ │ │ ├── io_global_by_file_by_latency.sql │ │ │ ├── io_global_by_wait_by_bytes.sql │ │ │ ├── io_global_by_wait_by_latency.sql │ │ │ ├── latest_file_io.sql │ │ │ ├── memory_by_host_by_current_bytes.sql │ │ │ ├── memory_by_thread_by_current_bytes.sql │ │ │ ├── memory_by_user.sql │ │ │ ├── memory_by_user_by_current_bytes.sql │ │ │ ├── memory_global_by_current_allocated.sql │ │ │ ├── memory_global_by_current_bytes.sql │ │ │ ├── memory_global_total.sql │ │ │ ├── processlist.sql │ │ │ ├── processlist_57.sql │ │ │ ├── ps_check_lost_instrumentation.sql │ │ │ ├── schema_index_statistics.sql │ │ │ ├── schema_table_statistics.sql │ │ │ ├── schema_table_statistics_with_buffer.sql │ │ │ ├── schema_tables_with_full_table_scans.sql │ │ │ ├── schema_unused_indexes.sql │ │ │ ├── statement_analysis.sql │ │ │ ├── statements_with_errors_or_warnings.sql │ │ │ ├── statements_with_full_table_scans.sql │ │ │ ├── statements_with_runtimes_in_95th_percentile.sql │ │ │ ├── statements_with_sorting.sql │ │ │ ├── statements_with_temp_tables.sql │ │ │ ├── user_summary.sql │ │ │ ├── user_summary_57.sql │ │ │ ├── user_summary_by_file_io.sql │ │ │ ├── user_summary_by_file_io_type.sql │ │ │ ├── user_summary_by_stages.sql │ │ │ ├── user_summary_by_statement_latency.sql │ │ │ ├── user_summary_by_statement_type.sql │ │ │ ├── wait_classes_global_by_avg_latency.sql │ │ │ ├── wait_classes_global_by_latency.sql │ │ │ ├── waits_by_host_by_latency.sql │ │ │ ├── waits_by_user_by_latency.sql │ │ │ ├── waits_global_by_latency.sql │ │ │ ├── x_host_summary.sql │ │ │ ├── x_host_summary_57.sql │ │ │ ├── x_host_summary_by_file_io.sql │ │ │ ├── x_host_summary_by_file_io_type.sql │ │ │ ├── x_host_summary_by_stages.sql │ │ │ ├── x_host_summary_by_statement_latency.sql │ │ │ ├── x_host_summary_by_statement_type.sql │ │ │ ├── x_io_by_thread_by_latency.sql │ │ │ ├── x_io_global_by_file_by_bytes.sql │ │ │ ├── x_io_global_by_file_by_latency.sql │ │ │ ├── x_io_global_by_wait_by_bytes.sql │ │ │ ├── x_io_global_by_wait_by_latency.sql │ │ │ ├── x_latest_file_io.sql │ │ │ ├── x_memory_by_host_by_current_bytes.sql │ │ │ ├── x_memory_by_thread_by_current_bytes.sql │ │ │ ├── x_memory_by_user_by_current_bytes.sql │ │ │ ├── x_memory_global_by_current_bytes.sql │ │ │ ├── x_memory_global_total.sql │ │ │ ├── x_processlist.sql │ │ │ ├── x_processlist_57.sql │ │ │ ├── x_ps_digest_95th_percentile_by_avg_us.sql │ │ │ ├── x_ps_digest_avg_latency_distribution.sql │ │ │ ├── x_ps_schema_table_statistics_io.sql │ │ │ ├── x_schema_index_statistics.sql │ │ │ ├── x_schema_table_statistics.sql │ │ │ ├── x_schema_table_statistics_with_buffer.sql │ │ │ ├── x_schema_tables_with_full_table_scans.sql │ │ │ ├── x_statement_analysis.sql │ │ │ ├── x_statements_with_errors_or_warnings.sql │ │ │ ├── x_statements_with_full_table_scans.sql │ │ │ ├── x_statements_with_runtimes_in_95th_percentile.sql │ │ │ ├── x_statements_with_sorting.sql │ │ │ ├── x_statements_with_temp_tables.sql │ │ │ ├── x_user_summary.sql │ │ │ ├── x_user_summary_57.sql │ │ │ ├── x_user_summary_by_file_io.sql │ │ │ ├── x_user_summary_by_file_io_type.sql │ │ │ ├── x_user_summary_by_stages.sql │ │ │ ├── x_user_summary_by_statement_latency.sql │ │ │ ├── x_user_summary_by_statement_type.sql │ │ │ ├── x_wait_classes_global_by_avg_latency.sql │ │ │ ├── x_wait_classes_global_by_latency.sql │ │ │ ├── x_waits_by_host_by_latency.sql │ │ │ ├── x_waits_by_user_by_latency.sql │ │ │ └── x_waits_global_by_latency.sql │ ├── update_wbsys.py │ └── vbs │ │ └── mysqlwbmeb.vbs ├── server │ ├── keyword_list56.h │ ├── keyword_list57.h │ ├── keyword_list80.h │ └── system-functions.h ├── snippets │ ├── DB Management.txt │ ├── SQL DDL Statements.txt │ └── SQL DML Statements.txt ├── sqlidedata │ ├── CMakeLists.txt │ ├── context-help │ │ ├── help-5.6.json │ │ ├── help-5.7.json │ │ └── help-8.0.json │ └── templates │ │ ├── CSV.pre.tpl │ │ ├── CSV.tpl │ │ ├── CSV.tpli │ │ ├── CSV_semicolon.pre.tpl │ │ ├── CSV_semicolon.tpl │ │ ├── CSV_semicolon.tpli │ │ ├── HTML.post.tpl │ │ ├── HTML.pre.tpl │ │ ├── HTML.tpl │ │ ├── HTML.tpli │ │ ├── JSON.post.tpl │ │ ├── JSON.pre.tpl │ │ ├── JSON.tpl │ │ ├── JSON.tpli │ │ ├── SQL_inserts.pre.tpl │ │ ├── SQL_inserts.tpl │ │ ├── SQL_inserts.tpli │ │ ├── XLS.post.tpl │ │ ├── XLS.pre.tpl │ │ ├── XLS.tpl │ │ ├── XLS.tpli │ │ ├── XML.post.tpl │ │ ├── XML.pre.tpl │ │ ├── XML.tpl │ │ ├── XML.tpli │ │ ├── XML_mysql.post.tpl │ │ ├── XML_mysql.pre.tpl │ │ ├── XML_mysql.tpl │ │ ├── XML_mysql.tpli │ │ ├── tab.pre.tpl │ │ ├── tab.tpl │ │ └── tab.tpli └── wbdata │ ├── CMakeLists.txt │ ├── code_editor.xml │ ├── data.db │ ├── dbquery_toolbar.xml │ ├── default_toolbar.xml │ ├── main_menu.xml │ ├── model_diagram_toolbar.xml │ ├── model_option_toolbar_layer.xml │ ├── model_option_toolbar_note.xml │ ├── model_option_toolbar_physical_relationship.xml │ ├── model_option_toolbar_physical_routinegroup.xml │ ├── model_option_toolbar_physical_table.xml │ ├── model_option_toolbar_physical_view.xml │ ├── model_option_toolbar_selection.xml │ ├── model_toolbar.xml │ ├── paper_types.xml │ ├── shortcuts.xml │ ├── shortcuts_basic.xml │ ├── shortcuts_physical.xml │ ├── table_templates.xml │ ├── tools_toolbar.xml │ ├── tools_toolbar_basic.xml │ └── tools_toolbar_physical.xml ├── samples └── models │ └── sakila_full.mwb ├── set_wb_version ├── testing ├── RunTestSuite.cmd ├── run-test-suite-linux ├── run-test-suite-mac └── test-suite │ ├── CMakeLists.txt │ ├── WBTests.vcxproj │ ├── WBTests.vcxproj.filters │ ├── casmine │ ├── CMakeLists.txt │ ├── ansi-styles.cpp │ ├── ansi-styles.h │ ├── casmine.cpp │ ├── casmine.h │ ├── common.h │ ├── describe.cpp │ ├── describe.h │ ├── expect.h │ ├── helpers.cpp │ ├── helpers.h │ ├── images │ │ ├── casmine-256.png │ │ └── casmine-in-action.gif │ ├── matchers.cpp │ ├── matchers.h │ ├── readme.md │ ├── reporter.cpp │ └── reporter.h │ ├── data │ ├── base │ │ ├── my-1.ini │ │ ├── my-2-copy.ini │ │ ├── my-2.ini │ │ └── my-3.ini │ ├── be │ │ ├── catalog_test.txt │ │ ├── grt_inspector_value_test1.1.txt │ │ ├── grt_inspector_value_test1.2.txt │ │ ├── grt_inspector_value_test1.txt │ │ ├── grt_inspector_value_test10.1.txt │ │ ├── grt_inspector_value_test10.2.txt │ │ ├── grt_inspector_value_test10.3.txt │ │ ├── grt_inspector_value_test10.txt │ │ ├── grt_inspector_value_test11.1.txt │ │ ├── grt_inspector_value_test11.2.txt │ │ ├── grt_inspector_value_test11.3.txt │ │ ├── grt_inspector_value_test11.4.txt │ │ ├── grt_inspector_value_test11.txt │ │ ├── grt_inspector_value_test2.1.txt │ │ ├── grt_inspector_value_test2.txt │ │ ├── grt_inspector_value_test20.1.txt │ │ ├── grt_inspector_value_test20.2.txt │ │ ├── grt_inspector_value_test20.3.txt │ │ ├── grt_inspector_value_test20.txt │ │ ├── grt_inspector_value_test21.1.txt │ │ ├── grt_inspector_value_test21.2.txt │ │ ├── grt_inspector_value_test21.3.txt │ │ ├── grt_inspector_value_test21.txt │ │ ├── grt_inspector_value_test3.1.txt │ │ ├── grt_inspector_value_test3.txt │ │ ├── layer_test.txt │ │ └── overview_test2.txt │ ├── code_editor.xml │ ├── connections.xml │ ├── db │ │ ├── empty_firstline.sql │ │ ├── menagerie-db │ │ │ ├── README.txt │ │ │ ├── cr_event_tbl.sql │ │ │ ├── cr_pet_tbl.sql │ │ │ ├── event.txt │ │ │ ├── ins_puff_rec.sql │ │ │ ├── load_pet_tbl.sql │ │ │ └── pet.txt │ │ ├── nasty_tables.sql │ │ ├── sakila-db │ │ │ ├── sakila-data.sql │ │ │ ├── sakila-schema.sql │ │ │ └── single_statement.sql │ │ ├── statements.txt │ │ └── world │ │ │ └── world.sql │ ├── diff-omf │ │ └── various │ │ │ ├── 00_before.xml │ │ │ └── 01_various_changes.xml │ ├── diff │ │ ├── column_rename │ │ │ ├── 1_dst.xml │ │ │ ├── 1_expected.sql │ │ │ ├── 1_src.xml │ │ │ ├── 2_dst.xml │ │ │ ├── 2_expected.sql │ │ │ └── 2_src.xml │ │ ├── dict-struct │ │ │ ├── 00_before.xml │ │ │ ├── 01_item_modified.xml │ │ │ ├── 02_item_replaced.xml │ │ │ └── 03_various_changes.xml │ │ ├── dict │ │ │ ├── 00_before.xml │ │ │ ├── 01_item_added.xml │ │ │ ├── 02_item_modified.xml │ │ │ ├── 03_item_replaced.xml │ │ │ ├── 04_item_removed.xml │ │ │ ├── 05_various_changes0.xml │ │ │ └── 05_various_changes1.xml │ │ ├── index_change │ │ │ ├── 1_dst.xml │ │ │ ├── 1_expected.sql │ │ │ ├── 1_src.xml │ │ │ ├── 2_dst.xml │ │ │ ├── 2_expected.sql │ │ │ ├── 2_src.xml │ │ │ ├── 3_dst.xml │ │ │ ├── 3_expected.sql │ │ │ └── 3_src.xml │ │ ├── list-item-added-simple-type │ │ │ ├── 00_before.xml │ │ │ ├── 01_added_beg.xml │ │ │ ├── 02_added_end.xml │ │ │ ├── 03_added_mid.xml │ │ │ ├── 04_added2_beg.xml │ │ │ ├── 05_added2_end.xml │ │ │ ├── 06_added_beg_end.xml │ │ │ ├── 07_added_beg_mid.xml │ │ │ ├── 08_added_mid_end.xml │ │ │ ├── 09_added_mid2_neighb.xml │ │ │ └── 10_added_mid2_not_neighb.xml │ │ ├── list-item-duplicate-added-object │ │ │ ├── o00_before.xml │ │ │ ├── o01_d_add_beg.xml │ │ │ ├── o02_d_add_end.xml │ │ │ ├── o03_d_add_mid.xml │ │ │ ├── o04_d_add2_beg.xml │ │ │ ├── o05_d_add2_end.xml │ │ │ ├── o06_d_add_beg_end.xml │ │ │ ├── o07_d_add_beg_mid.xml │ │ │ ├── o08_d_add_mid_end.xml │ │ │ ├── o09_d_add_mid2_neighb.xml │ │ │ ├── o10_d_add_mid2_not_neighb.xml │ │ │ ├── o11_d_add_beg_new.xml │ │ │ ├── o12_d_add_end_new.xml │ │ │ ├── o13_d_add_mid_new_neighb.xml │ │ │ └── o14_d_add_mid_new_not_neighb.xml │ │ ├── list-item-duplicate-removed-object │ │ │ ├── o00_before.xml │ │ │ ├── o01_d_rem_beg.xml │ │ │ ├── o02_d_rem_end.xml │ │ │ ├── o03_d_rem_mid.xml │ │ │ ├── o04_d_rem2_beg.xml │ │ │ ├── o05_d_rem2_end.xml │ │ │ ├── o06_d_rem_beg_end.xml │ │ │ ├── o07_d_rem_beg_mid.xml │ │ │ ├── o08_d_rem_mid_end.xml │ │ │ ├── o09_d_rem_mid2_neighb.xml │ │ │ ├── o10_d_rem_mid2_not_neighb.xml │ │ │ ├── o11_d_rem_beg_all.xml │ │ │ ├── o12_d_rem_end_all.xml │ │ │ └── o13_d_rem_mid_all.xml │ │ ├── list-item-removed │ │ │ ├── s00_before.xml │ │ │ ├── s01_remov_beg.xml │ │ │ ├── s02_remov_end.xml │ │ │ ├── s03_remov_mid.xml │ │ │ ├── s04_remov2_beg.xml │ │ │ ├── s05_remov2_end.xml │ │ │ ├── s06_remov_beg_end.xml │ │ │ ├── s07_remov_beg_mid.xml │ │ │ ├── s08_remov_mid_end.xml │ │ │ ├── s09_remov_mid2_neighb.xml │ │ │ └── s10_remov_mid2_not_neighb.xml │ │ ├── list-modified │ │ │ ├── o00_before.xml │ │ │ ├── o01_modif_beg.xml │ │ │ ├── o02_modif_end.xml │ │ │ ├── o03_modif_mid.xml │ │ │ └── o04_modif_multiple.xml │ │ ├── list-reorder-object │ │ │ ├── o00_before.xml │ │ │ ├── o01_order_beg_mid.xml │ │ │ ├── o02_order_beg_end.xml │ │ │ ├── o03_order_end_mid.xml │ │ │ ├── o04_order_end_beg.xml │ │ │ ├── o05_order2_beg_mid_neighb.xml │ │ │ ├── o05_order2_beg_mid_neighb2.xml │ │ │ ├── o06_order2_beg_mid_not_neighb.xml │ │ │ ├── o07_order2_beg_mid_not_neighb2.xml │ │ │ ├── o08_order2_end_mid_neighb.xml │ │ │ ├── o08_order2_end_mid_neighb2.xml │ │ │ ├── o09_order2_end_mid_not_neighb.xml │ │ │ ├── o10_order2_end_mid_not_neighb2.xml │ │ │ ├── o11_order2_mid_right_neighb.xml │ │ │ ├── o12_order2_mid_right_not_neighb.xml │ │ │ ├── o13_order2_mid_left__neighb.xml │ │ │ ├── o13_order2_mid_left__not_neighb.xml │ │ │ └── o14_order2_swap_beg_end.xml │ │ ├── list-reorder-simple-type │ │ │ ├── s00_before.xml │ │ │ ├── s01_order_beg_mid.xml │ │ │ ├── s02_order_beg_end.xml │ │ │ ├── s03_order_end_mid.xml │ │ │ ├── s04_order_end_beg.xml │ │ │ ├── s05_order2_beg_mid_neighb.xml │ │ │ ├── s05_order2_beg_mid_neighb2.xml │ │ │ ├── s06_order2_beg_mid_not_neig.xml │ │ │ ├── s07_order2_beg_mid_not_neig.xml │ │ │ ├── s08_order2_end_mid_neighb.xml │ │ │ ├── s08_order2_end_mid_neighb2.xml │ │ │ ├── s09_order2_end_mid_not_neig.xml │ │ │ ├── s10_order2_end_mid_not_neig.xml │ │ │ ├── s11_order2_mid_right_neighb.xml │ │ │ ├── s12_order2_mid_right_not_ne.xml │ │ │ ├── s13_order2_mid_left__neighb.xml │ │ │ ├── s13_order2_mid_left__not_ne.xml │ │ │ └── s14_order2_swap_beg_end.xml │ │ ├── menagerie-db │ │ │ └── cr_event_tbl.xml │ │ ├── object │ │ │ ├── 00_before.xml │ │ │ ├── 01_item_modified.xml │ │ │ ├── 02_item_replaced.xml │ │ │ └── 03_various_changes.xml │ │ ├── sakila-db │ │ │ └── sakila-schema.xml │ │ ├── simple │ │ │ ├── 00_before.xml │ │ │ ├── 01_value_changed.xml │ │ │ └── 02_value_replaced.xml │ │ ├── sync-catalogs-collations │ │ │ ├── source_catalog.xml │ │ │ └── target_catalog.xml │ │ ├── sync-catalogs-rowformat │ │ │ ├── good.sql │ │ │ ├── source_catalog.xml │ │ │ └── target_catalog.xml │ │ └── world │ │ │ └── world-schema.xml │ ├── forward_engineer │ │ ├── omit_schema_routine.expected.sql │ │ ├── omit_schema_routine.mwb │ │ ├── rename_opts.dict │ │ ├── sakila.expected.sql │ │ ├── sakila.mwb │ │ ├── sakila_full.mwb │ │ ├── sakila_name_changed.expected.sql │ │ ├── schema_rename.expected.sql │ │ ├── schema_rename.mwb │ │ ├── view_mixed_case.expected.broken.sql │ │ ├── view_mixed_case.expected.good.sql │ │ └── view_mixed_case.mwb │ ├── images │ │ ├── sakila.png │ │ └── shapes_rects.png │ ├── modules_grt │ │ ├── schema_reporting │ │ │ ├── basic_schema_report_test_model.mwb │ │ │ ├── create_headers.cmd │ │ │ ├── res_schema_reporting_test_1.html │ │ │ ├── res_schema_reporting_test_2.html │ │ │ ├── schema_reporting_test_1.tpl.html │ │ │ └── schema_reporting_test_1.tpl.html.varnames.h │ │ └── wb_mysql_import │ │ │ └── sql │ │ │ ├── 0.sql │ │ │ ├── 0.xml │ │ │ ├── 0_res.xml │ │ │ ├── 0a.xml │ │ │ ├── 0a_res.xml │ │ │ ├── 1.sql │ │ │ ├── 1.xml │ │ │ ├── 10.sql │ │ │ ├── 10.xml │ │ │ ├── 100.sql │ │ │ ├── 100.xml │ │ │ ├── 100_res.xml │ │ │ ├── 100a.xml │ │ │ ├── 100a_res.xml │ │ │ ├── 101.sql │ │ │ ├── 101.xml │ │ │ ├── 101_res.xml │ │ │ ├── 101a.xml │ │ │ ├── 101a_res.xml │ │ │ ├── 10_res.xml │ │ │ ├── 10a.xml │ │ │ ├── 10a_res.xml │ │ │ ├── 11.sql │ │ │ ├── 11.xml │ │ │ ├── 11_res.xml │ │ │ ├── 11a.xml │ │ │ ├── 11a_res.xml │ │ │ ├── 12.sql │ │ │ ├── 12.xml │ │ │ ├── 12_res.xml │ │ │ ├── 12a.xml │ │ │ ├── 12a_res.xml │ │ │ ├── 13.sql │ │ │ ├── 13.xml │ │ │ ├── 13_res.xml │ │ │ ├── 13a.xml │ │ │ ├── 13a_res.xml │ │ │ ├── 14.sql │ │ │ ├── 14.xml │ │ │ ├── 14_res.xml │ │ │ ├── 14a.xml │ │ │ ├── 14a_res.xml │ │ │ ├── 15.sql │ │ │ ├── 15.xml │ │ │ ├── 150.sql │ │ │ ├── 150.xml │ │ │ ├── 150_res.xml │ │ │ ├── 150a.xml │ │ │ ├── 150a_res.xml │ │ │ ├── 151.sql │ │ │ ├── 151.xml │ │ │ ├── 151_res.xml │ │ │ ├── 151a.xml │ │ │ ├── 151a_res.xml │ │ │ ├── 152.sql │ │ │ ├── 152.xml │ │ │ ├── 152_res.xml │ │ │ ├── 152a.xml │ │ │ ├── 152a_res.xml │ │ │ ├── 15_res.xml │ │ │ ├── 15a.xml │ │ │ ├── 15a_res.xml │ │ │ ├── 16.sql │ │ │ ├── 16.xml │ │ │ ├── 16a.xml │ │ │ ├── 16a_res.xml │ │ │ ├── 17.sql │ │ │ ├── 17.xml │ │ │ ├── 17_res.xml │ │ │ ├── 17a.xml │ │ │ ├── 17a_res.xml │ │ │ ├── 18.sql │ │ │ ├── 18a.xml │ │ │ ├── 18a_res.xml │ │ │ ├── 1_res.xml │ │ │ ├── 1a.xml │ │ │ ├── 1a_res.xml │ │ │ ├── 2.sql │ │ │ ├── 2.xml │ │ │ ├── 200.sql │ │ │ ├── 200.xml │ │ │ ├── 200_res.xml │ │ │ ├── 200a.xml │ │ │ ├── 200a_res.xml │ │ │ ├── 250.sql │ │ │ ├── 250a.xml │ │ │ ├── 250a_res.xml │ │ │ ├── 251.sql │ │ │ ├── 251a.xml │ │ │ ├── 251a_res.xml │ │ │ ├── 252.sql │ │ │ ├── 252a.xml │ │ │ ├── 252a_res.xml │ │ │ ├── 253.sql │ │ │ ├── 253a.xml │ │ │ ├── 253a_res.xml │ │ │ ├── 2_res.xml │ │ │ ├── 2a.xml │ │ │ ├── 2a_res.xml │ │ │ ├── 3.sql │ │ │ ├── 3.xml │ │ │ ├── 300.sql │ │ │ ├── 300.xml │ │ │ ├── 300_res.xml │ │ │ ├── 300a.xml │ │ │ ├── 300a_res.xml │ │ │ ├── 350.sql │ │ │ ├── 350.xml │ │ │ ├── 350_res.xml │ │ │ ├── 350a.xml │ │ │ ├── 350a_res.xml │ │ │ ├── 3_res.xml │ │ │ ├── 3a.xml │ │ │ ├── 3a_res.xml │ │ │ ├── 4.sql │ │ │ ├── 4.xml │ │ │ ├── 400.sql │ │ │ ├── 400.xml │ │ │ ├── 400_res.xml │ │ │ ├── 400a.xml │ │ │ ├── 400a_res.xml │ │ │ ├── 450.sql │ │ │ ├── 450.xml │ │ │ ├── 450_res.xml │ │ │ ├── 450a.xml │ │ │ ├── 450a_res.xml │ │ │ ├── 4_res.xml │ │ │ ├── 4a.xml │ │ │ ├── 4a_res.xml │ │ │ ├── 5.sql │ │ │ ├── 5.xml │ │ │ ├── 50.sql │ │ │ ├── 50.xml │ │ │ ├── 50_res.xml │ │ │ ├── 50a.xml │ │ │ ├── 50a_res.xml │ │ │ ├── 51.sql │ │ │ ├── 51.xml │ │ │ ├── 51_res.xml │ │ │ ├── 51a.xml │ │ │ ├── 51a_res.xml │ │ │ ├── 5_res.xml │ │ │ ├── 5a.xml │ │ │ ├── 5a_res.xml │ │ │ ├── 6.sql │ │ │ ├── 6.xml │ │ │ ├── 600.sql │ │ │ ├── 600.xml │ │ │ ├── 600_res.xml │ │ │ ├── 600a.xml │ │ │ ├── 600a_res.xml │ │ │ ├── 6_res.xml │ │ │ ├── 6a.xml │ │ │ ├── 6a_res.xml │ │ │ ├── 7.sql │ │ │ ├── 7.xml │ │ │ ├── 700.sql │ │ │ ├── 700.xml │ │ │ ├── 700_res.xml │ │ │ ├── 700a.xml │ │ │ ├── 700a_res.xml │ │ │ ├── 701.sql │ │ │ ├── 701.xml │ │ │ ├── 701_res.xml │ │ │ ├── 701a.xml │ │ │ ├── 701a_res.xml │ │ │ ├── 702.sql │ │ │ ├── 702.xml │ │ │ ├── 702_res.xml │ │ │ ├── 702a.xml │ │ │ ├── 702a_res.xml │ │ │ ├── 703.sql │ │ │ ├── 703.xml │ │ │ ├── 703_res.xml │ │ │ ├── 703a.xml │ │ │ ├── 703a_res.xml │ │ │ ├── 7_res.xml │ │ │ ├── 7a.xml │ │ │ ├── 7a_res.xml │ │ │ ├── 8.sql │ │ │ ├── 8.xml │ │ │ ├── 88.sql │ │ │ ├── 8a.xml │ │ │ ├── 8a_res.xml │ │ │ ├── 9.sql │ │ │ ├── 9.xml │ │ │ ├── 900.sql │ │ │ ├── 900.xml │ │ │ ├── 900_res.xml │ │ │ ├── 900a.xml │ │ │ ├── 900a_res.xml │ │ │ ├── 9a.xml │ │ │ ├── 9a_res.xml │ │ │ └── desc.txt │ ├── mtemplate │ │ ├── CSV_semicolon.pre.tpl │ │ ├── CSV_semicolon.tpl │ │ ├── HTML.post.tpl │ │ ├── HTML.pre.tpl │ │ ├── HTML.tpl │ │ ├── JSON.post.tpl │ │ ├── JSON.pre.tpl │ │ ├── JSON.tpl │ │ ├── SQL_inserts.pre.tpl │ │ ├── SQL_inserts.tpl │ │ ├── test_result.csv │ │ ├── test_result.html │ │ ├── test_result.json │ │ └── test_result.sql │ ├── parser │ │ ├── parser_precedence.result │ │ └── syntax-errors.sql │ ├── regress │ │ ├── 40846 │ │ │ ├── cleanup.sql │ │ │ ├── desription.txt │ │ │ ├── init.sql │ │ │ └── model.mwb │ │ ├── 42085 │ │ │ ├── dont-apply │ │ │ └── model.mwb │ │ └── readme.txt │ ├── reporting │ │ └── Basic_Text.tpl │ │ │ ├── basic_text_report.txt.tpl │ │ │ └── reports │ │ │ ├── testres_longname0.txt │ │ │ ├── testres_longname1.txt │ │ │ ├── testres_longname10.txt │ │ │ ├── testres_longname100.txt │ │ │ ├── testres_longname101.txt │ │ │ ├── testres_longname102.txt │ │ │ ├── testres_longname103.txt │ │ │ ├── testres_longname104.txt │ │ │ ├── testres_longname105.txt │ │ │ ├── testres_longname106.txt │ │ │ ├── testres_longname107.txt │ │ │ ├── testres_longname108.txt │ │ │ ├── testres_longname109.txt │ │ │ ├── testres_longname11.txt │ │ │ ├── testres_longname110.txt │ │ │ ├── testres_longname111.txt │ │ │ ├── testres_longname112.txt │ │ │ ├── testres_longname113.txt │ │ │ ├── testres_longname114.txt │ │ │ ├── testres_longname115.txt │ │ │ ├── testres_longname116.txt │ │ │ ├── testres_longname117.txt │ │ │ ├── testres_longname118.txt │ │ │ ├── testres_longname12.txt │ │ │ ├── testres_longname13.txt │ │ │ ├── testres_longname14.txt │ │ │ ├── testres_longname15.txt │ │ │ ├── testres_longname16.txt │ │ │ ├── testres_longname17.txt │ │ │ ├── testres_longname18.txt │ │ │ ├── testres_longname19.txt │ │ │ ├── testres_longname2.txt │ │ │ ├── testres_longname20.txt │ │ │ ├── testres_longname21.txt │ │ │ ├── testres_longname22.txt │ │ │ ├── testres_longname23.txt │ │ │ ├── testres_longname24.txt │ │ │ ├── testres_longname25.txt │ │ │ ├── testres_longname26.txt │ │ │ ├── testres_longname27.txt │ │ │ ├── testres_longname28.txt │ │ │ ├── testres_longname29.txt │ │ │ ├── testres_longname3.txt │ │ │ ├── testres_longname30.txt │ │ │ ├── testres_longname31.txt │ │ │ ├── testres_longname32.txt │ │ │ ├── testres_longname33.txt │ │ │ ├── testres_longname34.txt │ │ │ ├── testres_longname35.txt │ │ │ ├── testres_longname36.txt │ │ │ ├── testres_longname37.txt │ │ │ ├── testres_longname38.txt │ │ │ ├── testres_longname39.txt │ │ │ ├── testres_longname4.txt │ │ │ ├── testres_longname40.txt │ │ │ ├── testres_longname41.txt │ │ │ ├── testres_longname42.txt │ │ │ ├── testres_longname43.txt │ │ │ ├── testres_longname44.txt │ │ │ ├── testres_longname45.txt │ │ │ ├── testres_longname46.txt │ │ │ ├── testres_longname47.txt │ │ │ ├── testres_longname48.txt │ │ │ ├── testres_longname49.txt │ │ │ ├── testres_longname5.txt │ │ │ ├── testres_longname50.txt │ │ │ ├── testres_longname51.txt │ │ │ ├── testres_longname52.txt │ │ │ ├── testres_longname53.txt │ │ │ ├── testres_longname54.txt │ │ │ ├── testres_longname55.txt │ │ │ ├── testres_longname56.txt │ │ │ ├── testres_longname57.txt │ │ │ ├── testres_longname58.txt │ │ │ ├── testres_longname59.txt │ │ │ ├── testres_longname6.txt │ │ │ ├── testres_longname60.txt │ │ │ ├── testres_longname61.txt │ │ │ ├── testres_longname62.txt │ │ │ ├── testres_longname63.txt │ │ │ ├── testres_longname64.txt │ │ │ ├── testres_longname65.txt │ │ │ ├── testres_longname66.txt │ │ │ ├── testres_longname67.txt │ │ │ ├── testres_longname68.txt │ │ │ ├── testres_longname69.txt │ │ │ ├── testres_longname7.txt │ │ │ ├── testres_longname70.txt │ │ │ ├── testres_longname71.txt │ │ │ ├── testres_longname72.txt │ │ │ ├── testres_longname73.txt │ │ │ ├── testres_longname74.txt │ │ │ ├── testres_longname75.txt │ │ │ ├── testres_longname76.txt │ │ │ ├── testres_longname77.txt │ │ │ ├── testres_longname78.txt │ │ │ ├── testres_longname79.txt │ │ │ ├── testres_longname8.txt │ │ │ ├── testres_longname80.txt │ │ │ ├── testres_longname81.txt │ │ │ ├── testres_longname82.txt │ │ │ ├── testres_longname83.txt │ │ │ ├── testres_longname84.txt │ │ │ ├── testres_longname85.txt │ │ │ ├── testres_longname86.txt │ │ │ ├── testres_longname87.txt │ │ │ ├── testres_longname88.txt │ │ │ ├── testres_longname89.txt │ │ │ ├── testres_longname9.txt │ │ │ ├── testres_longname90.txt │ │ │ ├── testres_longname91.txt │ │ │ ├── testres_longname92.txt │ │ │ ├── testres_longname93.txt │ │ │ ├── testres_longname94.txt │ │ │ ├── testres_longname95.txt │ │ │ ├── testres_longname96.txt │ │ │ ├── testres_longname97.txt │ │ │ ├── testres_longname98.txt │ │ │ ├── testres_longname99.txt │ │ │ ├── testres_shortname0.txt │ │ │ ├── testres_shortname1.txt │ │ │ ├── testres_shortname10.txt │ │ │ ├── testres_shortname100.txt │ │ │ ├── testres_shortname101.txt │ │ │ ├── testres_shortname102.txt │ │ │ ├── testres_shortname103.txt │ │ │ ├── testres_shortname104.txt │ │ │ ├── testres_shortname105.txt │ │ │ ├── testres_shortname106.txt │ │ │ ├── testres_shortname107.txt │ │ │ ├── testres_shortname108.txt │ │ │ ├── testres_shortname109.txt │ │ │ ├── testres_shortname11.txt │ │ │ ├── testres_shortname110.txt │ │ │ ├── testres_shortname111.txt │ │ │ ├── testres_shortname112.txt │ │ │ ├── testres_shortname113.txt │ │ │ ├── testres_shortname114.txt │ │ │ ├── testres_shortname115.txt │ │ │ ├── testres_shortname116.txt │ │ │ ├── testres_shortname117.txt │ │ │ ├── testres_shortname118.txt │ │ │ ├── testres_shortname12.txt │ │ │ ├── testres_shortname13.txt │ │ │ ├── testres_shortname14.txt │ │ │ ├── testres_shortname15.txt │ │ │ ├── testres_shortname16.txt │ │ │ ├── testres_shortname17.txt │ │ │ ├── testres_shortname18.txt │ │ │ ├── testres_shortname19.txt │ │ │ ├── testres_shortname2.txt │ │ │ ├── testres_shortname20.txt │ │ │ ├── testres_shortname21.txt │ │ │ ├── testres_shortname22.txt │ │ │ ├── testres_shortname23.txt │ │ │ ├── testres_shortname24.txt │ │ │ ├── testres_shortname25.txt │ │ │ ├── testres_shortname26.txt │ │ │ ├── testres_shortname27.txt │ │ │ ├── testres_shortname28.txt │ │ │ ├── testres_shortname29.txt │ │ │ ├── testres_shortname3.txt │ │ │ ├── testres_shortname30.txt │ │ │ ├── testres_shortname31.txt │ │ │ ├── testres_shortname32.txt │ │ │ ├── testres_shortname33.txt │ │ │ ├── testres_shortname34.txt │ │ │ ├── testres_shortname35.txt │ │ │ ├── testres_shortname36.txt │ │ │ ├── testres_shortname37.txt │ │ │ ├── testres_shortname38.txt │ │ │ ├── testres_shortname39.txt │ │ │ ├── testres_shortname4.txt │ │ │ ├── testres_shortname40.txt │ │ │ ├── testres_shortname41.txt │ │ │ ├── testres_shortname42.txt │ │ │ ├── testres_shortname43.txt │ │ │ ├── testres_shortname44.txt │ │ │ ├── testres_shortname45.txt │ │ │ ├── testres_shortname46.txt │ │ │ ├── testres_shortname47.txt │ │ │ ├── testres_shortname48.txt │ │ │ ├── testres_shortname49.txt │ │ │ ├── testres_shortname5.txt │ │ │ ├── testres_shortname50.txt │ │ │ ├── testres_shortname51.txt │ │ │ ├── testres_shortname52.txt │ │ │ ├── testres_shortname53.txt │ │ │ ├── testres_shortname54.txt │ │ │ ├── testres_shortname55.txt │ │ │ ├── testres_shortname56.txt │ │ │ ├── testres_shortname57.txt │ │ │ ├── testres_shortname58.txt │ │ │ ├── testres_shortname59.txt │ │ │ ├── testres_shortname6.txt │ │ │ ├── testres_shortname60.txt │ │ │ ├── testres_shortname61.txt │ │ │ ├── testres_shortname62.txt │ │ │ ├── testres_shortname63.txt │ │ │ ├── testres_shortname64.txt │ │ │ ├── testres_shortname65.txt │ │ │ ├── testres_shortname66.txt │ │ │ ├── testres_shortname67.txt │ │ │ ├── testres_shortname68.txt │ │ │ ├── testres_shortname69.txt │ │ │ ├── testres_shortname7.txt │ │ │ ├── testres_shortname70.txt │ │ │ ├── testres_shortname71.txt │ │ │ ├── testres_shortname72.txt │ │ │ ├── testres_shortname73.txt │ │ │ ├── testres_shortname74.txt │ │ │ ├── testres_shortname75.txt │ │ │ ├── testres_shortname76.txt │ │ │ ├── testres_shortname77.txt │ │ │ ├── testres_shortname78.txt │ │ │ ├── testres_shortname79.txt │ │ │ ├── testres_shortname8.txt │ │ │ ├── testres_shortname80.txt │ │ │ ├── testres_shortname81.txt │ │ │ ├── testres_shortname82.txt │ │ │ ├── testres_shortname83.txt │ │ │ ├── testres_shortname84.txt │ │ │ ├── testres_shortname85.txt │ │ │ ├── testres_shortname86.txt │ │ │ ├── testres_shortname87.txt │ │ │ ├── testres_shortname88.txt │ │ │ ├── testres_shortname89.txt │ │ │ ├── testres_shortname9.txt │ │ │ ├── testres_shortname90.txt │ │ │ ├── testres_shortname91.txt │ │ │ ├── testres_shortname92.txt │ │ │ ├── testres_shortname93.txt │ │ │ ├── testres_shortname94.txt │ │ │ ├── testres_shortname95.txt │ │ │ ├── testres_shortname96.txt │ │ │ ├── testres_shortname97.txt │ │ │ ├── testres_shortname98.txt │ │ │ └── testres_shortname99.txt │ ├── res │ │ ├── casmine_data.txt │ │ └── mysql_rdbms_info.xml │ ├── scripts │ │ ├── test_visual_explain_queries.sql │ │ ├── visual_explain_dbt3-q11.json │ │ └── visual_explain_dbt3-q15.json │ ├── serialization │ │ └── catalog.xml │ ├── server_instances.xml │ ├── shell_bookmarks.txt │ ├── shell_history.txt │ ├── snippets │ │ ├── DB Management.txt │ │ ├── DB_Management.txt │ │ ├── SQL DDL Statements.txt │ │ ├── SQL DML Statements.txt │ │ ├── SQL_DDL_Statements.txt │ │ └── SQL_DML_Statements.txt │ ├── starters_settings.xml │ ├── structs.foo.xml │ ├── structs.test.xml │ ├── test1_doc.mwb │ ├── user_starters.xml │ ├── wb_options.xml │ ├── wb_state.xml │ └── workbench │ │ ├── 11926862.mwb │ │ ├── 2tables_1fk.mwb │ │ ├── 2tables_conn_layer.mwb │ │ ├── all_objects.mwb │ │ ├── diff_table_replace_test.mwb │ │ ├── empty_file.sql │ │ ├── empty_model_with_comment.mwb │ │ ├── file_with_unicode.mwb │ │ ├── identifying_relationship.mwb │ │ ├── sakila.mwb │ │ ├── selected_table.mwb │ │ ├── test_model1.mwb │ │ ├── test_model_xml.mwb │ │ ├── undo_test_model1.mwb │ │ ├── undo_test_model1_duplicate.mwb │ │ └── undo_test_model2.mwb │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ └── tests │ ├── backend │ ├── wbprivate │ │ ├── sqlide │ │ │ ├── wb_live_schema_tree_specs.cpp │ │ │ ├── wb_sql_editor_form_specs.cpp │ │ │ └── wb_sql_editor_help_specs.cpp │ │ └── workbench │ │ │ ├── overview_specs.cpp │ │ │ ├── ssh_specs.cpp │ │ │ ├── wb_context_specs.cpp │ │ │ ├── wb_copy_paste_specs.cpp │ │ │ ├── wb_lowlevel_specs.cpp │ │ │ ├── wb_model_file_specs.cpp │ │ │ ├── wb_module_specs.cpp │ │ │ ├── wb_undo_diagram_specs.cpp │ │ │ ├── wb_undo_editors_specs.cpp │ │ │ ├── wb_undo_helpers.h │ │ │ └── wb_undo_others_specs.cpp │ └── wbpublic │ │ ├── grt │ │ ├── common_specs.cpp │ │ ├── grt_dispatcher_specs.cpp │ │ ├── grt_inspector_value_specs.cpp │ │ ├── nodeid_specs.cpp │ │ ├── shell_specs.cpp │ │ └── tree_model_specs.cpp │ │ ├── grtdb │ │ ├── editor_table_specs.cpp │ │ └── table_inserts_specs.cpp │ │ └── sqlide │ │ ├── recordset_specs.cpp │ │ └── sql_editor_be_autocomplete_specs.cpp │ ├── casmine_specs.cpp │ ├── grt_test_helpers.cpp │ ├── grt_test_helpers.h │ ├── grt_values_test_data.h │ ├── library │ ├── base │ │ ├── commandlineparser_specs.cpp │ │ ├── config_file_specs.cpp │ │ ├── fileutilities_specs.cpp │ │ ├── sqlstring_specs.cpp │ │ ├── stringutilities_specs.cpp │ │ ├── threading_specs.cpp │ │ └── utf8string_specs.cpp │ ├── cdbc │ │ ├── dbc_connection_specs.cpp │ │ ├── dbc_general_specs.cpp │ │ ├── dbc_metadata_specs.cpp │ │ ├── dbc_result_set_specs.cpp │ │ └── dbc_statement_specs.cpp │ ├── forms │ │ ├── code_editor_specs.cpp │ │ ├── stub │ │ │ ├── src │ │ │ │ ├── stub_app.cpp │ │ │ │ ├── stub_base.cpp │ │ │ │ ├── stub_base.mm │ │ │ │ ├── stub_drawbox.cpp │ │ │ │ ├── stub_form.cpp │ │ │ │ ├── stub_listbox.cpp │ │ │ │ ├── stub_menu.cpp │ │ │ │ ├── stub_mforms.cpp │ │ │ │ ├── stub_selector.cpp │ │ │ │ ├── stub_textbox.cpp │ │ │ │ ├── stub_textentry.cpp │ │ │ │ ├── stub_treenode.cpp │ │ │ │ ├── stub_utilities.cpp │ │ │ │ ├── stub_view.cpp │ │ │ │ └── stub_wizard.cpp │ │ │ ├── stub_app.h │ │ │ ├── stub_base.h │ │ │ ├── stub_box.h │ │ │ ├── stub_button.h │ │ │ ├── stub_checkbox.h │ │ │ ├── stub_codeeditor.h │ │ │ ├── stub_container.h │ │ │ ├── stub_drawbox.h │ │ │ ├── stub_filechooser.h │ │ │ ├── stub_form.h │ │ │ ├── stub_hypertext.h │ │ │ ├── stub_imagebox.h │ │ │ ├── stub_label.h │ │ │ ├── stub_listbox.h │ │ │ ├── stub_menu.h │ │ │ ├── stub_menuitem.h │ │ │ ├── stub_mforms.h │ │ │ ├── stub_panel.h │ │ │ ├── stub_popup.h │ │ │ ├── stub_progressbar.h │ │ │ ├── stub_radiobutton.h │ │ │ ├── stub_scrollpanel.h │ │ │ ├── stub_selector.h │ │ │ ├── stub_splitter.h │ │ │ ├── stub_table.h │ │ │ ├── stub_tabview.h │ │ │ ├── stub_textbox.h │ │ │ ├── stub_textentry.h │ │ │ ├── stub_toolbar.h │ │ │ ├── stub_treenode.h │ │ │ ├── stub_treeview.h │ │ │ ├── stub_utilities.h │ │ │ ├── stub_view.h │ │ │ ├── stub_webbrowser.h │ │ │ └── stub_wizard.h │ │ └── utilities_specs.cpp │ ├── grt │ │ ├── comparer_specs.cpp │ │ ├── diff_tree_specs.cpp │ │ ├── grtdiff_alter_specs.cpp │ │ ├── grtdiff_db_specs.cpp │ │ ├── grtlistdiff_specs.cpp │ │ ├── grtpp_serialization_specs.cpp │ │ ├── grtpp_specs.cpp │ │ ├── grtpp_util_specs.cpp │ │ ├── modulenative_specs.cpp │ │ ├── object_specs.cpp │ │ ├── struct_specs.cpp │ │ ├── sync_profile_specs.cpp │ │ ├── test_modules.h │ │ └── value_specs.cpp │ ├── mtemplates │ │ └── mtemplate_specs.cpp │ ├── mysql.canvas │ │ └── mysqlcanvas_specs.cpp │ ├── parsers │ │ └── mysql_parser_specs.cpp │ └── sql.parser │ │ └── sqlparser_specs.cpp │ ├── model_mockup.cpp │ ├── model_mockup.h │ ├── modules │ ├── db.mysql.parser │ │ ├── mysql_parser_module_specs.cpp │ │ └── parse_datatypes_specs.cpp │ ├── db.mysql.sqlparser │ │ ├── mysql_invalid_sql_parser_specs.cpp │ │ ├── mysql_sql_facade_specs.cpp │ │ ├── mysql_sql_parser_specs.cpp │ │ └── mysql_sql_statement_decomposer_specs.cpp │ └── db.mysql │ │ ├── db_mysql_gen_grant_specs.cpp │ │ └── sql_create_specs.cpp │ ├── plugins │ ├── db.mysql.editors │ │ └── backend │ │ │ ├── mysql_routinegroup_editor_specs.cpp │ │ │ └── mysql_table_editor_specs.cpp │ └── db.mysql │ │ └── backend │ │ ├── db_mysql_plugin_specs.cpp │ │ ├── db_mysql_sql_export_specs.cpp │ │ └── model_diff_apply_specs.cpp │ ├── structs.test.h │ ├── wb_connection_helpers.cpp │ ├── wb_connection_helpers.h │ ├── wb_references.cpp │ ├── wb_test_helpers.cpp │ └── wb_test_helpers.h ├── tools ├── CMakeLists.txt ├── admin_helper │ ├── admin_helper.vcxproj │ ├── admin_helper.vcxproj.filters │ └── src │ │ ├── admin_helper.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── count_loc.sh ├── file_headers │ ├── copyright_cpp_template │ ├── copyright_python_template │ ├── file_headers.py │ ├── ignore │ └── removals ├── genobj │ ├── CMakeLists.txt │ ├── genobj.cpp │ ├── genobj.vcxproj │ └── genobj.vcxproj.filters ├── genwrap │ ├── CMakeLists.txt │ ├── genwrap.cpp │ └── genwrap.vcxproj ├── get_wb_version.sh ├── mga │ ├── CMakeLists.txt │ ├── mga.sln │ ├── mga.xcodeproj │ │ └── project.pbxproj │ ├── mga_duk_config.yaml │ ├── readme.md │ ├── run_gcov │ ├── src │ │ ├── CMakeLists.txt │ │ ├── aal │ │ │ ├── CMakeLists.txt │ │ │ ├── aalcommon.cpp │ │ │ ├── aalcommon.h │ │ │ ├── geometry.cpp │ │ │ ├── geometry.h │ │ │ ├── linux │ │ │ │ ├── accessible.cpp │ │ │ │ ├── accessible.h │ │ │ │ ├── virtualkeygenerator.cpp │ │ │ │ └── virtualkeygenerator.h │ │ │ ├── macos │ │ │ │ ├── accessible.cpp │ │ │ │ └── accessible.h │ │ │ ├── role.cpp │ │ │ ├── role.h │ │ │ ├── textrange.h │ │ │ └── windows │ │ │ │ ├── accessible.cpp │ │ │ │ ├── accessible.h │ │ │ │ ├── accessible.wr │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ ├── Stdafx.cpp │ │ │ │ ├── Stdafx.h │ │ │ │ ├── aal.wr.vcxproj │ │ │ │ ├── aal.wr.vcxproj.filters │ │ │ │ ├── accessible.wr.cpp │ │ │ │ ├── accessible.wr.h │ │ │ │ ├── registry.wr.cpp │ │ │ │ └── registry.wr.h │ │ │ │ └── accessible │ │ │ │ ├── CustomInterop.UIAutomationClient.il │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── aal.csproj │ │ │ │ ├── accessible.cs │ │ │ │ └── registry.cs │ │ ├── application-context.cpp │ │ ├── application-context.h │ │ ├── common.h │ │ ├── context-management.cpp │ │ ├── context-management.h │ │ ├── duktape │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── duk_config.h │ │ │ ├── duktape.c │ │ │ ├── duktape.h │ │ │ ├── duktape.vcxproj │ │ │ ├── duktape.vcxproj.filters │ │ │ ├── extra │ │ │ │ ├── module-node │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── duk_module_node.c │ │ │ │ │ ├── duk_module_node.h │ │ │ │ │ └── test.c │ │ │ │ └── print-alert │ │ │ │ │ ├── README.rst │ │ │ │ │ └── test.c │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── library │ │ │ ├── apath.cpp │ │ │ ├── apath.h │ │ │ ├── child_process.cpp │ │ │ ├── child_process.h │ │ │ ├── db.cpp │ │ │ ├── db.h │ │ │ ├── dbresult.cpp │ │ │ ├── dbresult.h │ │ │ ├── debugger.cpp │ │ │ ├── debugger.h │ │ │ ├── events.cpp │ │ │ ├── events.h │ │ │ ├── filesystem.cpp │ │ │ ├── filesystem.h │ │ │ ├── glob.cpp │ │ │ ├── glob.h │ │ │ ├── global.cpp │ │ │ ├── global.h │ │ │ ├── internal-tests.cpp │ │ │ ├── internal-tests.h │ │ │ ├── jsexport.cpp │ │ │ ├── jsexport.h │ │ │ ├── os.cpp │ │ │ ├── os.h │ │ │ ├── path.cpp │ │ │ ├── path.h │ │ │ ├── platform-linux.cpp │ │ │ ├── platform-mac.mm │ │ │ ├── platform-win.cpp │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── process.cpp │ │ │ ├── process.h │ │ │ ├── property.cpp │ │ │ ├── property.h │ │ │ ├── registry.cpp │ │ │ ├── registry.h │ │ │ ├── scripting-context.cpp │ │ │ ├── scripting-context.h │ │ │ ├── streams.cpp │ │ │ ├── streams.h │ │ │ ├── tty.cpp │ │ │ ├── tty.h │ │ │ ├── types.cpp │ │ │ ├── types.h │ │ │ ├── uielement.cpp │ │ │ ├── uielement.h │ │ │ ├── utilities.cpp │ │ │ ├── utilities.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── main.cpp │ │ ├── mga.vcxproj │ │ ├── mga.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── utf8proc │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── utf8proc.c │ │ │ ├── utf8proc.h │ │ │ └── utf8proc_data.h │ │ └── windows │ │ │ ├── mga.net │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── app.manifest │ │ │ └── mga.net.csproj │ │ │ └── mga.wr │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── Stdafx.cpp │ │ │ ├── Stdafx.h │ │ │ ├── application.wr.cpp │ │ │ ├── application.wr.h │ │ │ ├── mga.wr.vcxproj │ │ │ └── mga.wr.vcxproj.filters │ └── version.txt ├── test-gui │ ├── images │ │ ├── shield.png │ │ └── shield@2x.png │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── gui_test_application.glade │ │ └── main.cpp │ ├── macOS │ │ ├── GUI Test App.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Resources │ │ │ └── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app-icon128.png │ │ │ │ ├── app-icon128@2x.png │ │ │ │ ├── app-icon16.png │ │ │ │ ├── app-icon16@2x.png │ │ │ │ ├── app-icon256.png │ │ │ │ ├── app-icon256@2x.png │ │ │ │ ├── app-icon32.png │ │ │ │ ├── app-icon32@2x.png │ │ │ │ ├── app-icon512.png │ │ │ │ └── app-icon512@2x.png │ │ └── src │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── AppDelegate.mm │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Main.xib │ │ │ ├── dialog.h │ │ │ ├── dialog.m │ │ │ ├── dialog.xib │ │ │ └── main.m │ ├── readme.md │ └── windows │ │ └── GUI Test App │ │ ├── App.config │ │ ├── Dialog.Designer.cs │ │ ├── Dialog.cs │ │ ├── Dialog.resx │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── GUI Test App.csproj │ │ ├── GUI Test App.sln │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── Resources │ │ ├── shield.png │ │ └── shield@2x.png └── tools.sln └── vsprops ├── wb_antlr4.props ├── wb_boost.props ├── wb_cairo.props ├── wb_cairo_inc.props ├── wb_cpp_std.props ├── wb_cppconn.props ├── wb_cppconn_inc.props ├── wb_gdal.props ├── wb_glib.props ├── wb_libssh.props ├── wb_libxml.props ├── wb_libxml_inc.props ├── wb_libzip.props ├── wb_mysql.props ├── wb_python.props ├── wb_rapidjson.props ├── wb_sqlite.props ├── wb_vsqlite++.props └── wb_zlib.props /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/AUTHORS -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/App.config -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/INSTALL -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/Info.plist -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/License.txt -------------------------------------------------------------------------------- /MySQLWorkbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/MySQLWorkbench.sln -------------------------------------------------------------------------------- /PrepareOutputDir.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/PrepareOutputDir.cmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Scintilla-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/Scintilla-Info.plist -------------------------------------------------------------------------------- /WBExtras-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/WBExtras-Info.plist -------------------------------------------------------------------------------- /WBTests.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/WBTests.manifest -------------------------------------------------------------------------------- /backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/CMakeLists.txt -------------------------------------------------------------------------------- /backend/wbprivate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbprivate/CMakeLists.txt -------------------------------------------------------------------------------- /backend/wbprivate/workbench/summary.dox: -------------------------------------------------------------------------------- 1 | /** @defgroup wb Main Application Backend 2 | */ 3 | -------------------------------------------------------------------------------- /backend/wbprivate/workbench/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbprivate/workbench/wmi.h -------------------------------------------------------------------------------- /backend/wbpublic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/CMakeLists.txt -------------------------------------------------------------------------------- /backend/wbpublic/grt/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/clipboard.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/common.cpp -------------------------------------------------------------------------------- /backend/wbpublic/grt/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/common.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/exceptions.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/grt_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/grt_shell.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/grt_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/grt_walker.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/refresh_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/refresh_ui.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/stdafx.cpp -------------------------------------------------------------------------------- /backend/wbpublic/grt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/stdafx.h -------------------------------------------------------------------------------- /backend/wbpublic/grt/summary.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/summary.dox -------------------------------------------------------------------------------- /backend/wbpublic/grt/tree_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grt/tree_model.h -------------------------------------------------------------------------------- /backend/wbpublic/grtdb/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grtdb/stdafx.cpp -------------------------------------------------------------------------------- /backend/wbpublic/grtdb/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/grtdb/stdafx.h -------------------------------------------------------------------------------- /backend/wbpublic/grtdb/summary.dox: -------------------------------------------------------------------------------- 1 | /** @defgroup begrtdb Generic Database Related Classes 2 | 3 | 4 | 5 | */ 6 | -------------------------------------------------------------------------------- /backend/wbpublic/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/stdafx.cpp -------------------------------------------------------------------------------- /backend/wbpublic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/backend/wbpublic/stdafx.h -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfile.scripting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/Doxyfile.scripting -------------------------------------------------------------------------------- /doc/Doxyfile4cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/Doxyfile4cpp -------------------------------------------------------------------------------- /doc/DoxygenRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/DoxygenRun.sh -------------------------------------------------------------------------------- /doc/WBArchicture.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/WBArchicture.graffle -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/footer.html -------------------------------------------------------------------------------- /doc/grt_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/grt_overview.png -------------------------------------------------------------------------------- /doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/main.dox -------------------------------------------------------------------------------- /doc/scripting.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/scripting.dox -------------------------------------------------------------------------------- /doc/scripting_sample_grt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/scripting_sample_grt.py -------------------------------------------------------------------------------- /doc/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/tabs.css -------------------------------------------------------------------------------- /doc/validation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/validation.dox -------------------------------------------------------------------------------- /doc/wb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/doc/wb.css -------------------------------------------------------------------------------- /ext/Aga.Controls/BitmapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/BitmapHelper.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/GifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/GifDecoder.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/TextHelper.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/TimeCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/TimeCounter.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/Tree/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/Tree/Column.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/Tree/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/Tree/Enums.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/Tree/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/Tree/Node.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/Tree/TreePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/Tree/TreePath.cs -------------------------------------------------------------------------------- /ext/Aga.Controls/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/Aga.Controls/key.snk -------------------------------------------------------------------------------- /ext/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(scintilla/gtk) 2 | -------------------------------------------------------------------------------- /ext/scintilla/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/.hg_archival.txt -------------------------------------------------------------------------------- /ext/scintilla/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/.hgeol -------------------------------------------------------------------------------- /ext/scintilla/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/.hgignore -------------------------------------------------------------------------------- /ext/scintilla/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/.hgtags -------------------------------------------------------------------------------- /ext/scintilla/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/CONTRIBUTING -------------------------------------------------------------------------------- /ext/scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/License.txt -------------------------------------------------------------------------------- /ext/scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/README -------------------------------------------------------------------------------- /ext/scintilla/cocoa/InfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/cocoa/InfoBar.h -------------------------------------------------------------------------------- /ext/scintilla/cocoa/InfoBar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/cocoa/InfoBar.mm -------------------------------------------------------------------------------- /ext/scintilla/cocoa/PlatCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/cocoa/PlatCocoa.h -------------------------------------------------------------------------------- /ext/scintilla/cocoa/PlatCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/cocoa/PlatCocoa.mm -------------------------------------------------------------------------------- /ext/scintilla/cppcheck.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/cppcheck.suppress -------------------------------------------------------------------------------- /ext/scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/delbin.bat -------------------------------------------------------------------------------- /ext/scintilla/doc/AddSource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/AddSource.txt -------------------------------------------------------------------------------- /ext/scintilla/doc/Design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Design.html -------------------------------------------------------------------------------- /ext/scintilla/doc/Icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Icons.html -------------------------------------------------------------------------------- /ext/scintilla/doc/Indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Indicators.png -------------------------------------------------------------------------------- /ext/scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /ext/scintilla/doc/Markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Markers.png -------------------------------------------------------------------------------- /ext/scintilla/doc/Privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Privacy.html -------------------------------------------------------------------------------- /ext/scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /ext/scintilla/doc/SciCoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/SciCoding.html -------------------------------------------------------------------------------- /ext/scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /ext/scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /ext/scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /ext/scintilla/doc/Steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/Steps.html -------------------------------------------------------------------------------- /ext/scintilla/doc/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/annotations.png -------------------------------------------------------------------------------- /ext/scintilla/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/doc/index.html -------------------------------------------------------------------------------- /ext/scintilla/gtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/CMakeLists.txt -------------------------------------------------------------------------------- /ext/scintilla/gtk/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/Converter.h -------------------------------------------------------------------------------- /ext/scintilla/gtk/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/DepGen.py -------------------------------------------------------------------------------- /ext/scintilla/gtk/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/PlatGTK.cxx -------------------------------------------------------------------------------- /ext/scintilla/gtk/ScintillaGTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/ScintillaGTK.h -------------------------------------------------------------------------------- /ext/scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /ext/scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/gtk/makefile -------------------------------------------------------------------------------- /ext/scintilla/include/ILexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/include/ILexer.h -------------------------------------------------------------------------------- /ext/scintilla/include/ILoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/include/ILoader.h -------------------------------------------------------------------------------- /ext/scintilla/include/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/include/Platform.h -------------------------------------------------------------------------------- /ext/scintilla/include/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/include/SciLexer.h -------------------------------------------------------------------------------- /ext/scintilla/include/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/include/Scintilla.h -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexA68k.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexA68k.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAPDL.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexASY.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexASY.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAU3.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAVE.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAVS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAVS.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAda.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAsm.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexAsn1.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexBaan.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexBash.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexBasic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexBasic.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexBatch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexBatch.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCIL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCIL.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCLW.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCOBOL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCOBOL.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCPP.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCSS.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCaml.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexCmake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexCmake.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexConf.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexD.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexDMAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexDMAP.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexDMIS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexDMIS.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexPB.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexPO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexPO.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexPS.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexR.cxx -------------------------------------------------------------------------------- /ext/scintilla/lexers/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/lexers/LexVB.cxx -------------------------------------------------------------------------------- /ext/scintilla/qt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/qt/README -------------------------------------------------------------------------------- /ext/scintilla/scripts/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/scripts/Face.py -------------------------------------------------------------------------------- /ext/scintilla/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/scintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /ext/scintilla/src/CaseFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/CaseFolder.h -------------------------------------------------------------------------------- /ext/scintilla/src/Catalogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Catalogue.h -------------------------------------------------------------------------------- /ext/scintilla/src/CellBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/CellBuffer.h -------------------------------------------------------------------------------- /ext/scintilla/src/DBCS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/DBCS.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/DBCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/DBCS.h -------------------------------------------------------------------------------- /ext/scintilla/src/Decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Decoration.h -------------------------------------------------------------------------------- /ext/scintilla/src/Document.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Document.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Document.h -------------------------------------------------------------------------------- /ext/scintilla/src/EditModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/EditModel.h -------------------------------------------------------------------------------- /ext/scintilla/src/EditView.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/EditView.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/EditView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/EditView.h -------------------------------------------------------------------------------- /ext/scintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Editor.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Editor.h -------------------------------------------------------------------------------- /ext/scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /ext/scintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /ext/scintilla/src/LineMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/LineMarker.h -------------------------------------------------------------------------------- /ext/scintilla/src/MarginView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/MarginView.h -------------------------------------------------------------------------------- /ext/scintilla/src/PerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/PerLine.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/PerLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/PerLine.h -------------------------------------------------------------------------------- /ext/scintilla/src/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Position.h -------------------------------------------------------------------------------- /ext/scintilla/src/RESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/RESearch.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /ext/scintilla/src/RunStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/RunStyles.h -------------------------------------------------------------------------------- /ext/scintilla/src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Selection.h -------------------------------------------------------------------------------- /ext/scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/Style.h -------------------------------------------------------------------------------- /ext/scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /ext/scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /ext/scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/src/XPM.h -------------------------------------------------------------------------------- /ext/scintilla/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/README -------------------------------------------------------------------------------- /ext/scintilla/test/XiteMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/XiteMenu.py -------------------------------------------------------------------------------- /ext/scintilla/test/XiteQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/XiteQt.py -------------------------------------------------------------------------------- /ext/scintilla/test/XiteWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/XiteWin.py -------------------------------------------------------------------------------- /ext/scintilla/test/lexTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/lexTests.py -------------------------------------------------------------------------------- /ext/scintilla/test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/unit/README -------------------------------------------------------------------------------- /ext/scintilla/test/xite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/test/xite.py -------------------------------------------------------------------------------- /ext/scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/tgzsrc -------------------------------------------------------------------------------- /ext/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 415 2 | -------------------------------------------------------------------------------- /ext/scintilla/win32/DepGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/DepGen.py -------------------------------------------------------------------------------- /ext/scintilla/win32/HanjaDic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/HanjaDic.h -------------------------------------------------------------------------------- /ext/scintilla/win32/PlatWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/PlatWin.h -------------------------------------------------------------------------------- /ext/scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /ext/scintilla/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/deps.mak -------------------------------------------------------------------------------- /ext/scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/makefile -------------------------------------------------------------------------------- /ext/scintilla/win32/nmdeps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/win32/nmdeps.mak -------------------------------------------------------------------------------- /ext/scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/ext/scintilla/zipsrc.bat -------------------------------------------------------------------------------- /frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/common/snippet_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/frontend/common/snippet_list.h -------------------------------------------------------------------------------- /frontend/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/frontend/linux/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/frontend/linux/README -------------------------------------------------------------------------------- /frontend/mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /frontend/mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/frontend/mac/main.m -------------------------------------------------------------------------------- /generated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/CMakeLists.txt -------------------------------------------------------------------------------- /generated/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/Doxyfile -------------------------------------------------------------------------------- /generated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/Makefile -------------------------------------------------------------------------------- /generated/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/README.txt -------------------------------------------------------------------------------- /generated/generate-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/generate-mac.sh -------------------------------------------------------------------------------- /generated/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/generate.cmd -------------------------------------------------------------------------------- /generated/grti/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grti/plugin.h -------------------------------------------------------------------------------- /generated/grti/wbvalidation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grti/wbvalidation.h -------------------------------------------------------------------------------- /generated/grts/structs.app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.app.h -------------------------------------------------------------------------------- /generated/grts/structs.db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.db.h -------------------------------------------------------------------------------- /generated/grts/structs.eer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.eer.h -------------------------------------------------------------------------------- /generated/grts/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.h -------------------------------------------------------------------------------- /generated/grts/structs.meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.meta.h -------------------------------------------------------------------------------- /generated/grts/structs.model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.model.h -------------------------------------------------------------------------------- /generated/grts/structs.ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/grts/structs.ui.h -------------------------------------------------------------------------------- /generated/summary.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/generated/summary.dox -------------------------------------------------------------------------------- /images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/CMakeLists.txt -------------------------------------------------------------------------------- /images/admin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/CMakeLists.txt -------------------------------------------------------------------------------- /images/admin/admin_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/admin_export.png -------------------------------------------------------------------------------- /images/admin/admin_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/admin_scripts.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-00.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-50.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-51.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-55.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-56.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-57.png -------------------------------------------------------------------------------- /images/admin/mysql-logo-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/mysql-logo-58.png -------------------------------------------------------------------------------- /images/admin/page_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/page_restore.png -------------------------------------------------------------------------------- /images/admin/ps_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/ps_overview.png -------------------------------------------------------------------------------- /images/admin/title_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_backup.png -------------------------------------------------------------------------------- /images/admin/title_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_export.png -------------------------------------------------------------------------------- /images/admin/title_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_import.png -------------------------------------------------------------------------------- /images/admin/title_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_logs.png -------------------------------------------------------------------------------- /images/admin/title_logs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_logs@2x.png -------------------------------------------------------------------------------- /images/admin/title_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_options.png -------------------------------------------------------------------------------- /images/admin/title_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_restore.png -------------------------------------------------------------------------------- /images/admin/title_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_startup.png -------------------------------------------------------------------------------- /images/admin/title_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/admin/title_users.png -------------------------------------------------------------------------------- /images/cursors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/CMakeLists.txt -------------------------------------------------------------------------------- /images/cursors/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/hand.png -------------------------------------------------------------------------------- /images/cursors/hand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/hand_dark.png -------------------------------------------------------------------------------- /images/cursors/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/image.png -------------------------------------------------------------------------------- /images/cursors/image_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/image_dark.png -------------------------------------------------------------------------------- /images/cursors/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/layer.png -------------------------------------------------------------------------------- /images/cursors/layer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/layer_dark.png -------------------------------------------------------------------------------- /images/cursors/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/note.png -------------------------------------------------------------------------------- /images/cursors/note_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/note_dark.png -------------------------------------------------------------------------------- /images/cursors/rel11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rel11.png -------------------------------------------------------------------------------- /images/cursors/rel11_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rel11_dark.png -------------------------------------------------------------------------------- /images/cursors/rel1n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rel1n.png -------------------------------------------------------------------------------- /images/cursors/rel1n_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rel1n_dark.png -------------------------------------------------------------------------------- /images/cursors/relnm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/relnm.png -------------------------------------------------------------------------------- /images/cursors/relnm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/relnm_dark.png -------------------------------------------------------------------------------- /images/cursors/routine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/routine.png -------------------------------------------------------------------------------- /images/cursors/rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rubber.png -------------------------------------------------------------------------------- /images/cursors/rubber_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/rubber_dark.png -------------------------------------------------------------------------------- /images/cursors/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/table.png -------------------------------------------------------------------------------- /images/cursors/table_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/table_dark.png -------------------------------------------------------------------------------- /images/cursors/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/view.png -------------------------------------------------------------------------------- /images/cursors/view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/view_dark.png -------------------------------------------------------------------------------- /images/cursors/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/zoom_in.png -------------------------------------------------------------------------------- /images/cursors/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/cursors/zoom_out.png -------------------------------------------------------------------------------- /images/grt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/CMakeLists.txt -------------------------------------------------------------------------------- /images/grt/grt_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_dict.png -------------------------------------------------------------------------------- /images/grt/grt_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_function.png -------------------------------------------------------------------------------- /images/grt/grt_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_list.png -------------------------------------------------------------------------------- /images/grt/grt_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_module.png -------------------------------------------------------------------------------- /images/grt/grt_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_object.png -------------------------------------------------------------------------------- /images/grt/grt_simple_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_simple_type.png -------------------------------------------------------------------------------- /images/grt/grt_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/grt/grt_struct.png -------------------------------------------------------------------------------- /images/home/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/CMakeLists.txt -------------------------------------------------------------------------------- /images/home/WB_Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/WB_Home.png -------------------------------------------------------------------------------- /images/home/migration_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/migration_btn.png -------------------------------------------------------------------------------- /images/home/new_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/new_sticker.png -------------------------------------------------------------------------------- /images/home/new_sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/new_sticker@2x.png -------------------------------------------------------------------------------- /images/home/sidebar_wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/sidebar_wb.png -------------------------------------------------------------------------------- /images/home/sidebar_wb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/sidebar_wb@2x.png -------------------------------------------------------------------------------- /images/home/wb_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/wb_close.png -------------------------------------------------------------------------------- /images/home/wb_doc_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/wb_doc_model.png -------------------------------------------------------------------------------- /images/home/wb_doc_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/wb_doc_sql.png -------------------------------------------------------------------------------- /images/home/wb_tile_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/home/wb_tile_folder.png -------------------------------------------------------------------------------- /images/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/CMakeLists.txt -------------------------------------------------------------------------------- /images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/comment.png -------------------------------------------------------------------------------- /images/icons/grt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/grt.png -------------------------------------------------------------------------------- /images/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/history.png -------------------------------------------------------------------------------- /images/icons/json_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/json_arr.png -------------------------------------------------------------------------------- /images/icons/json_nmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/json_nmb.png -------------------------------------------------------------------------------- /images/icons/json_null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/json_null.png -------------------------------------------------------------------------------- /images/icons/json_obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/json_obj.png -------------------------------------------------------------------------------- /images/icons/json_str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/json_str.png -------------------------------------------------------------------------------- /images/icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/layers.png -------------------------------------------------------------------------------- /images/icons/mini_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/mini_edit.png -------------------------------------------------------------------------------- /images/icons/mini_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/mini_error.png -------------------------------------------------------------------------------- /images/icons/mini_notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/mini_notice.png -------------------------------------------------------------------------------- /images/icons/mini_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/mini_ok.png -------------------------------------------------------------------------------- /images/icons/mini_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/mini_warning.png -------------------------------------------------------------------------------- /images/icons/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/properties.png -------------------------------------------------------------------------------- /images/icons/schemata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/schemata.png -------------------------------------------------------------------------------- /images/icons/warning_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/icons/warning_icon.png -------------------------------------------------------------------------------- /images/migration/migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/migration/migration.png -------------------------------------------------------------------------------- /images/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/readme.txt -------------------------------------------------------------------------------- /images/sql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/CMakeLists.txt -------------------------------------------------------------------------------- /images/sql/ac_charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_charset.png -------------------------------------------------------------------------------- /images/sql/ac_collation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_collation.png -------------------------------------------------------------------------------- /images/sql/ac_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_column.png -------------------------------------------------------------------------------- /images/sql/ac_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_engine.png -------------------------------------------------------------------------------- /images/sql/ac_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_event.png -------------------------------------------------------------------------------- /images/sql/ac_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_function.png -------------------------------------------------------------------------------- /images/sql/ac_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_index.png -------------------------------------------------------------------------------- /images/sql/ac_keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_keyword.png -------------------------------------------------------------------------------- /images/sql/ac_logfilegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_logfilegroup.png -------------------------------------------------------------------------------- /images/sql/ac_operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_operator.png -------------------------------------------------------------------------------- /images/sql/ac_routine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_routine.png -------------------------------------------------------------------------------- /images/sql/ac_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_schema.png -------------------------------------------------------------------------------- /images/sql/ac_sysvar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_sysvar.png -------------------------------------------------------------------------------- /images/sql/ac_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_table.png -------------------------------------------------------------------------------- /images/sql/ac_tablespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_tablespace.png -------------------------------------------------------------------------------- /images/sql/ac_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_trigger.png -------------------------------------------------------------------------------- /images/sql/ac_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_user.png -------------------------------------------------------------------------------- /images/sql/ac_uservar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_uservar.png -------------------------------------------------------------------------------- /images/sql/ac_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/ac_view.png -------------------------------------------------------------------------------- /images/sql/qe_main-tb-sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/qe_main-tb-sep.png -------------------------------------------------------------------------------- /images/sql/snippet_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_css.png -------------------------------------------------------------------------------- /images/sql/snippet_htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_htm.png -------------------------------------------------------------------------------- /images/sql/snippet_lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_lua.png -------------------------------------------------------------------------------- /images/sql/snippet_mwb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_mwb.png -------------------------------------------------------------------------------- /images/sql/snippet_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_php.png -------------------------------------------------------------------------------- /images/sql/snippet_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_py.png -------------------------------------------------------------------------------- /images/sql/snippet_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/sql/snippet_sql.png -------------------------------------------------------------------------------- /images/toolbar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/CMakeLists.txt -------------------------------------------------------------------------------- /images/toolbar/debug_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/debug_pause.png -------------------------------------------------------------------------------- /images/toolbar/debug_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/debug_step.png -------------------------------------------------------------------------------- /images/toolbar/debug_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/debug_stop.png -------------------------------------------------------------------------------- /images/toolbar/record_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_add.png -------------------------------------------------------------------------------- /images/toolbar/record_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_back.png -------------------------------------------------------------------------------- /images/toolbar/record_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_del.png -------------------------------------------------------------------------------- /images/toolbar/record_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_edit.png -------------------------------------------------------------------------------- /images/toolbar/record_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_last.png -------------------------------------------------------------------------------- /images/toolbar/record_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_next.png -------------------------------------------------------------------------------- /images/toolbar/record_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/record_save.png -------------------------------------------------------------------------------- /images/toolbar/snippet_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/snippet_add.png -------------------------------------------------------------------------------- /images/toolbar/snippet_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/snippet_del.png -------------------------------------------------------------------------------- /images/toolbar/snippet_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/snippet_use.png -------------------------------------------------------------------------------- /images/toolbar/tiny_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_grid.png -------------------------------------------------------------------------------- /images/toolbar/tiny_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_load.png -------------------------------------------------------------------------------- /images/toolbar/tiny_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_lock.png -------------------------------------------------------------------------------- /images/toolbar/tiny_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_new.png -------------------------------------------------------------------------------- /images/toolbar/tiny_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_open.png -------------------------------------------------------------------------------- /images/toolbar/tiny_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_redo.png -------------------------------------------------------------------------------- /images/toolbar/tiny_ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_ruler.png -------------------------------------------------------------------------------- /images/toolbar/tiny_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_save.png -------------------------------------------------------------------------------- /images/toolbar/tiny_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_saveas.png -------------------------------------------------------------------------------- /images/toolbar/tiny_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_search.png -------------------------------------------------------------------------------- /images/toolbar/tiny_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/tiny_undo.png -------------------------------------------------------------------------------- /images/toolbar/wb_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_arrow.png -------------------------------------------------------------------------------- /images/toolbar/wb_db_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_db_table.png -------------------------------------------------------------------------------- /images/toolbar/wb_db_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_db_view.png -------------------------------------------------------------------------------- /images/toolbar/wb_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_hand.png -------------------------------------------------------------------------------- /images/toolbar/wb_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_image.png -------------------------------------------------------------------------------- /images/toolbar/wb_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_layer.png -------------------------------------------------------------------------------- /images/toolbar/wb_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_note.png -------------------------------------------------------------------------------- /images/toolbar/wb_rel_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_rel_11.png -------------------------------------------------------------------------------- /images/toolbar/wb_rel_1n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_rel_1n.png -------------------------------------------------------------------------------- /images/toolbar/wb_rel_nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_rel_nm.png -------------------------------------------------------------------------------- /images/toolbar/wb_rubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/toolbar/wb_rubber.png -------------------------------------------------------------------------------- /images/ui/Apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Apply.png -------------------------------------------------------------------------------- /images/ui/Apply_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Apply_16x16.png -------------------------------------------------------------------------------- /images/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/CMakeLists.txt -------------------------------------------------------------------------------- /images/ui/Close_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Close_16x16.png -------------------------------------------------------------------------------- /images/ui/Close_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Close_18x18.png -------------------------------------------------------------------------------- /images/ui/Discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Discard.png -------------------------------------------------------------------------------- /images/ui/Discard_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Discard_16x16.png -------------------------------------------------------------------------------- /images/ui/DotBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/DotBlue.png -------------------------------------------------------------------------------- /images/ui/DotDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/DotDisabled.png -------------------------------------------------------------------------------- /images/ui/DotGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/DotGrey.png -------------------------------------------------------------------------------- /images/ui/DotRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/DotRed.png -------------------------------------------------------------------------------- /images/ui/EditorCollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/EditorCollapsed.png -------------------------------------------------------------------------------- /images/ui/EditorExpanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/EditorExpanded.png -------------------------------------------------------------------------------- /images/ui/Firewall_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Firewall_reports.png -------------------------------------------------------------------------------- /images/ui/First_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/First_16x16.png -------------------------------------------------------------------------------- /images/ui/JS_Datatype_Bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/JS_Datatype_Bin.png -------------------------------------------------------------------------------- /images/ui/JS_Datatype_Bool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/JS_Datatype_Bool.png -------------------------------------------------------------------------------- /images/ui/JS_Datatype_Date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/JS_Datatype_Date.png -------------------------------------------------------------------------------- /images/ui/JS_Datatype_Null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/JS_Datatype_Null.png -------------------------------------------------------------------------------- /images/ui/Last_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Last_16x16.png -------------------------------------------------------------------------------- /images/ui/Refresh_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Refresh_16x16.png -------------------------------------------------------------------------------- /images/ui/Refresh_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/Refresh_18x18.png -------------------------------------------------------------------------------- /images/ui/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/arrow_down.png -------------------------------------------------------------------------------- /images/ui/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/arrow_up.png -------------------------------------------------------------------------------- /images/ui/audit_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/audit_log.png -------------------------------------------------------------------------------- /images/ui/audit_log@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/audit_log@2x.png -------------------------------------------------------------------------------- /images/ui/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/background.png -------------------------------------------------------------------------------- /images/ui/big_switcher_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/big_switcher_no.png -------------------------------------------------------------------------------- /images/ui/big_switcher_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/big_switcher_yes.png -------------------------------------------------------------------------------- /images/ui/busy_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/busy_sidebar.png -------------------------------------------------------------------------------- /images/ui/busy_sidebar_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/busy_sidebar_mac.png -------------------------------------------------------------------------------- /images/ui/change_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/change_backward.png -------------------------------------------------------------------------------- /images/ui/change_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/change_forward.png -------------------------------------------------------------------------------- /images/ui/change_ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/change_ignore.png -------------------------------------------------------------------------------- /images/ui/change_nothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/change_nothing.png -------------------------------------------------------------------------------- /images/ui/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/check.png -------------------------------------------------------------------------------- /images/ui/dialog_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/dialog_input.png -------------------------------------------------------------------------------- /images/ui/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/edit.png -------------------------------------------------------------------------------- /images/ui/editor_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/editor_error.png -------------------------------------------------------------------------------- /images/ui/editor_statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/editor_statement.png -------------------------------------------------------------------------------- /images/ui/firewall-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/firewall-header.png -------------------------------------------------------------------------------- /images/ui/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/folder.png -------------------------------------------------------------------------------- /images/ui/header_bar_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/header_bar_blue.png -------------------------------------------------------------------------------- /images/ui/header_bar_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/header_bar_gray.png -------------------------------------------------------------------------------- /images/ui/item_overlay_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/item_overlay_add.png -------------------------------------------------------------------------------- /images/ui/message_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_confirm.png -------------------------------------------------------------------------------- /images/ui/message_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_edit.png -------------------------------------------------------------------------------- /images/ui/message_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_error.png -------------------------------------------------------------------------------- /images/ui/message_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_warning.png -------------------------------------------------------------------------------- /images/ui/message_wb_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_wb_bug.png -------------------------------------------------------------------------------- /images/ui/message_wb_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_wb_lock.png -------------------------------------------------------------------------------- /images/ui/message_wb_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/message_wb_wait.png -------------------------------------------------------------------------------- /images/ui/note.128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/note.128x128.png -------------------------------------------------------------------------------- /images/ui/refresh_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/refresh_sidebar.png -------------------------------------------------------------------------------- /images/ui/sakila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/sakila.png -------------------------------------------------------------------------------- /images/ui/search_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/search_clear.png -------------------------------------------------------------------------------- /images/ui/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/search_icon.png -------------------------------------------------------------------------------- /images/ui/search_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/search_sidebar.png -------------------------------------------------------------------------------- /images/ui/section_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/section_expanded.png -------------------------------------------------------------------------------- /images/ui/separator-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/separator-dots.png -------------------------------------------------------------------------------- /images/ui/session-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/session-switch.png -------------------------------------------------------------------------------- /images/ui/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/session.png -------------------------------------------------------------------------------- /images/ui/show_eof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/show_eof.png -------------------------------------------------------------------------------- /images/ui/show_whitespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/show_whitespace.png -------------------------------------------------------------------------------- /images/ui/small_toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/small_toolbar_bg.png -------------------------------------------------------------------------------- /images/ui/statusbar_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/statusbar_output.png -------------------------------------------------------------------------------- /images/ui/statusbar_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/statusbar_shell.png -------------------------------------------------------------------------------- /images/ui/task_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_checked.png -------------------------------------------------------------------------------- /images/ui/task_checked_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_checked_mac.png -------------------------------------------------------------------------------- /images/ui/task_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_disabled.png -------------------------------------------------------------------------------- /images/ui/task_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_error.png -------------------------------------------------------------------------------- /images/ui/task_error_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_error_mac.png -------------------------------------------------------------------------------- /images/ui/task_executing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_executing.png -------------------------------------------------------------------------------- /images/ui/task_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_unchecked.png -------------------------------------------------------------------------------- /images/ui/task_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_warning.png -------------------------------------------------------------------------------- /images/ui/task_warning_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/task_warning_mac.png -------------------------------------------------------------------------------- /images/ui/tree_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/tree_collapsed.png -------------------------------------------------------------------------------- /images/ui/tree_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/tree_expanded.png -------------------------------------------------------------------------------- /images/ui/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/uncheck.png -------------------------------------------------------------------------------- /images/ui/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/unknown.png -------------------------------------------------------------------------------- /images/ui/wb_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/wb_lock.png -------------------------------------------------------------------------------- /images/ui/wb_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/wb_lock@2x.png -------------------------------------------------------------------------------- /images/ui/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/zoom_in.png -------------------------------------------------------------------------------- /images/ui/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/zoom_out.png -------------------------------------------------------------------------------- /images/ui/zoom_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/images/ui/zoom_reset.png -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/base.windows/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.windows/Win32.cs -------------------------------------------------------------------------------- /library/base.wr/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/app.rc -------------------------------------------------------------------------------- /library/base.wr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/resource.h -------------------------------------------------------------------------------- /library/base.wr/src/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/src/Stdafx.cpp -------------------------------------------------------------------------------- /library/base.wr/src/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/src/Stdafx.h -------------------------------------------------------------------------------- /library/base.wr/src/UIForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/src/UIForm.cpp -------------------------------------------------------------------------------- /library/base.wr/src/UiForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/src/UiForm.h -------------------------------------------------------------------------------- /library/base.wr/src/Win32API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base.wr/src/Win32API.h -------------------------------------------------------------------------------- /library/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/CMakeLists.txt -------------------------------------------------------------------------------- /library/base/accessibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/accessibility.cpp -------------------------------------------------------------------------------- /library/base/base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base.vcxproj -------------------------------------------------------------------------------- /library/base/base/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/any.h -------------------------------------------------------------------------------- /library/base/base/c++helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/c++helpers.h -------------------------------------------------------------------------------- /library/base/base/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/common.h -------------------------------------------------------------------------------- /library/base/base/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/data_types.h -------------------------------------------------------------------------------- /library/base/base/debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/debugging.h -------------------------------------------------------------------------------- /library/base/base/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/drawing.h -------------------------------------------------------------------------------- /library/base/base/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/entities.h -------------------------------------------------------------------------------- /library/base/base/event_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/event_log.h -------------------------------------------------------------------------------- /library/base/base/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/geometry.h -------------------------------------------------------------------------------- /library/base/base/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/log.h -------------------------------------------------------------------------------- /library/base/base/mem_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/mem_stat.h -------------------------------------------------------------------------------- /library/base/base/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/profiling.h -------------------------------------------------------------------------------- /library/base/base/sqlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/sqlstring.h -------------------------------------------------------------------------------- /library/base/base/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/threading.h -------------------------------------------------------------------------------- /library/base/base/trackable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/trackable.h -------------------------------------------------------------------------------- /library/base/base/ui_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/ui_form.h -------------------------------------------------------------------------------- /library/base/base/utf8string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/utf8string.h -------------------------------------------------------------------------------- /library/base/base/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/util.c -------------------------------------------------------------------------------- /library/base/base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/util.h -------------------------------------------------------------------------------- /library/base/base/wb_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/base/wb_memory.h -------------------------------------------------------------------------------- /library/base/boost_fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/boost_fix.cpp -------------------------------------------------------------------------------- /library/base/config_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/config_file.cpp -------------------------------------------------------------------------------- /library/base/data_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/data_types.cpp -------------------------------------------------------------------------------- /library/base/debugging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/debugging.cpp -------------------------------------------------------------------------------- /library/base/drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/drawing.cpp -------------------------------------------------------------------------------- /library/base/drawing_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/drawing_gtk.cpp -------------------------------------------------------------------------------- /library/base/drawing_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/drawing_osx.mm -------------------------------------------------------------------------------- /library/base/drawing_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/drawing_win.cpp -------------------------------------------------------------------------------- /library/base/event_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/event_log.cpp -------------------------------------------------------------------------------- /library/base/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/geometry.cpp -------------------------------------------------------------------------------- /library/base/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/log.cpp -------------------------------------------------------------------------------- /library/base/mem_stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/mem_stat.cpp -------------------------------------------------------------------------------- /library/base/notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/notifications.cpp -------------------------------------------------------------------------------- /library/base/profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/profiling.cpp -------------------------------------------------------------------------------- /library/base/python_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/python_utils.cpp -------------------------------------------------------------------------------- /library/base/sqlstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/sqlstring.cpp -------------------------------------------------------------------------------- /library/base/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/stdafx.cpp -------------------------------------------------------------------------------- /library/base/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/stdafx.h -------------------------------------------------------------------------------- /library/base/symbol-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/symbol-info.cpp -------------------------------------------------------------------------------- /library/base/threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/threading.cpp -------------------------------------------------------------------------------- /library/base/ui_form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/ui_form.cpp -------------------------------------------------------------------------------- /library/base/utf8string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/utf8string.cpp -------------------------------------------------------------------------------- /library/base/xml_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/base/xml_functions.cpp -------------------------------------------------------------------------------- /library/cdbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/cdbc/CMakeLists.txt -------------------------------------------------------------------------------- /library/cdbc/cdbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/cdbc/cdbc.vcxproj -------------------------------------------------------------------------------- /library/cdbc/src/cppdbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/cdbc/src/cppdbc.h -------------------------------------------------------------------------------- /library/cdbc/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/cdbc/src/stdafx.cpp -------------------------------------------------------------------------------- /library/cdbc/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/cdbc/src/stdafx.h -------------------------------------------------------------------------------- /library/forms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/CMakeLists.txt -------------------------------------------------------------------------------- /library/forms/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/app.cpp -------------------------------------------------------------------------------- /library/forms/appview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/appview.cpp -------------------------------------------------------------------------------- /library/forms/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/base.cpp -------------------------------------------------------------------------------- /library/forms/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/box.cpp -------------------------------------------------------------------------------- /library/forms/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/button.cpp -------------------------------------------------------------------------------- /library/forms/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/canvas.cpp -------------------------------------------------------------------------------- /library/forms/checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/checkbox.cpp -------------------------------------------------------------------------------- /library/forms/cocoa/MFBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFBase.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFBase.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFBox.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFBox.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFBox.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFButton.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFCanvas.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFForm.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFForm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFForm.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFLabel.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFLabel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFLabel.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFMForms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFMForms.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFMenu.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFMenu.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFPanel.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFPanel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFPanel.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFPopup.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFPopup.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFPopup.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFTable.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFTable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFTable.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFView.h -------------------------------------------------------------------------------- /library/forms/cocoa/MFView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFView.mm -------------------------------------------------------------------------------- /library/forms/cocoa/MFWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/cocoa/MFWizard.h -------------------------------------------------------------------------------- /library/forms/code_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/code_editor.cpp -------------------------------------------------------------------------------- /library/forms/container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/container.cpp -------------------------------------------------------------------------------- /library/forms/dockingpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/dockingpoint.cpp -------------------------------------------------------------------------------- /library/forms/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/docs/Doxyfile -------------------------------------------------------------------------------- /library/forms/drawbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/drawbox.cpp -------------------------------------------------------------------------------- /library/forms/filechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/filechooser.cpp -------------------------------------------------------------------------------- /library/forms/find_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/find_panel.cpp -------------------------------------------------------------------------------- /library/forms/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/form.cpp -------------------------------------------------------------------------------- /library/forms/gridview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gridview.cpp -------------------------------------------------------------------------------- /library/forms/gtk/lf_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_app.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_base.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_box.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_button.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_canvas.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_drawbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_drawbox.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_form.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_label.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_listbox.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_menu.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_menubar.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_mforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_mforms.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_native.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_panel.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_popover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_popover.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_popup.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_table.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_tabview.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_textbox.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_toolbar.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_view.h -------------------------------------------------------------------------------- /library/forms/gtk/lf_wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lf_wizard.h -------------------------------------------------------------------------------- /library/forms/gtk/lfi_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/lfi_bin.h -------------------------------------------------------------------------------- /library/forms/gtk/mforms_acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/mforms_acc.h -------------------------------------------------------------------------------- /library/forms/gtk/mforms_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/gtk/mforms_gtk.h -------------------------------------------------------------------------------- /library/forms/home_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/home_screen.cpp -------------------------------------------------------------------------------- /library/forms/hypertext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/hypertext.cpp -------------------------------------------------------------------------------- /library/forms/imagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/imagebox.cpp -------------------------------------------------------------------------------- /library/forms/jsonview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/jsonview.cpp -------------------------------------------------------------------------------- /library/forms/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/label.cpp -------------------------------------------------------------------------------- /library/forms/listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/listbox.cpp -------------------------------------------------------------------------------- /library/forms/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/menu.cpp -------------------------------------------------------------------------------- /library/forms/menubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/menubar.cpp -------------------------------------------------------------------------------- /library/forms/mforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms.cpp -------------------------------------------------------------------------------- /library/forms/mforms/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/app.h -------------------------------------------------------------------------------- /library/forms/mforms/appview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/appview.h -------------------------------------------------------------------------------- /library/forms/mforms/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/base.h -------------------------------------------------------------------------------- /library/forms/mforms/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/box.h -------------------------------------------------------------------------------- /library/forms/mforms/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/button.h -------------------------------------------------------------------------------- /library/forms/mforms/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/canvas.h -------------------------------------------------------------------------------- /library/forms/mforms/drawbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/drawbox.h -------------------------------------------------------------------------------- /library/forms/mforms/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/form.h -------------------------------------------------------------------------------- /library/forms/mforms/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/label.h -------------------------------------------------------------------------------- /library/forms/mforms/listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/listbox.h -------------------------------------------------------------------------------- /library/forms/mforms/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/menu.h -------------------------------------------------------------------------------- /library/forms/mforms/menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/menubar.h -------------------------------------------------------------------------------- /library/forms/mforms/mforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/mforms.h -------------------------------------------------------------------------------- /library/forms/mforms/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/native.h -------------------------------------------------------------------------------- /library/forms/mforms/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/panel.h -------------------------------------------------------------------------------- /library/forms/mforms/popover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/popover.h -------------------------------------------------------------------------------- /library/forms/mforms/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/popup.h -------------------------------------------------------------------------------- /library/forms/mforms/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/table.h -------------------------------------------------------------------------------- /library/forms/mforms/tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/tabview.h -------------------------------------------------------------------------------- /library/forms/mforms/textbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/textbox.h -------------------------------------------------------------------------------- /library/forms/mforms/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/toolbar.h -------------------------------------------------------------------------------- /library/forms/mforms/uistyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/uistyle.h -------------------------------------------------------------------------------- /library/forms/mforms/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/view.h -------------------------------------------------------------------------------- /library/forms/mforms/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/widgets.h -------------------------------------------------------------------------------- /library/forms/mforms/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/mforms/wizard.h -------------------------------------------------------------------------------- /library/forms/native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/native.cpp -------------------------------------------------------------------------------- /library/forms/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/panel.cpp -------------------------------------------------------------------------------- /library/forms/popover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/popover.cpp -------------------------------------------------------------------------------- /library/forms/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/popup.cpp -------------------------------------------------------------------------------- /library/forms/progressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/progressbar.cpp -------------------------------------------------------------------------------- /library/forms/radiobutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/radiobutton.cpp -------------------------------------------------------------------------------- /library/forms/scrollpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/scrollpanel.cpp -------------------------------------------------------------------------------- /library/forms/sectionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/sectionbox.cpp -------------------------------------------------------------------------------- /library/forms/selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/selector.cpp -------------------------------------------------------------------------------- /library/forms/simpleform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/simpleform.cpp -------------------------------------------------------------------------------- /library/forms/splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/splitter.cpp -------------------------------------------------------------------------------- /library/forms/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stdafx.cpp -------------------------------------------------------------------------------- /library/forms/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stdafx.h -------------------------------------------------------------------------------- /library/forms/stub/stub_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_app.h -------------------------------------------------------------------------------- /library/forms/stub/stub_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_base.h -------------------------------------------------------------------------------- /library/forms/stub/stub_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_box.h -------------------------------------------------------------------------------- /library/forms/stub/stub_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_form.h -------------------------------------------------------------------------------- /library/forms/stub/stub_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_menu.h -------------------------------------------------------------------------------- /library/forms/stub/stub_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/stub/stub_view.h -------------------------------------------------------------------------------- /library/forms/swig/cairo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/swig/cairo.i -------------------------------------------------------------------------------- /library/forms/swig/mforms.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/swig/mforms.i -------------------------------------------------------------------------------- /library/forms/swig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/swig/setup.py -------------------------------------------------------------------------------- /library/forms/swig/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/swig/stdafx.cpp -------------------------------------------------------------------------------- /library/forms/swig/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/swig/stdafx.h -------------------------------------------------------------------------------- /library/forms/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/table.cpp -------------------------------------------------------------------------------- /library/forms/tabswitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/tabswitcher.cpp -------------------------------------------------------------------------------- /library/forms/tabview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/tabview.cpp -------------------------------------------------------------------------------- /library/forms/tabview_dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/tabview_dock.cpp -------------------------------------------------------------------------------- /library/forms/task_sidebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/task_sidebar.cpp -------------------------------------------------------------------------------- /library/forms/textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/textbox.cpp -------------------------------------------------------------------------------- /library/forms/textentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/textentry.cpp -------------------------------------------------------------------------------- /library/forms/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/toolbar.cpp -------------------------------------------------------------------------------- /library/forms/treeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/treeview.cpp -------------------------------------------------------------------------------- /library/forms/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/utilities.cpp -------------------------------------------------------------------------------- /library/forms/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/view.cpp -------------------------------------------------------------------------------- /library/forms/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/widgets.cpp -------------------------------------------------------------------------------- /library/forms/winforms/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/winforms/app.rc -------------------------------------------------------------------------------- /library/forms/wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/forms/wizard.cpp -------------------------------------------------------------------------------- /library/grt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /library/grt/grt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/grt.vcxproj -------------------------------------------------------------------------------- /library/grt/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/grt/src/diff/grtdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/diff/grtdiff.h -------------------------------------------------------------------------------- /library/grt/src/grt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grt.cpp -------------------------------------------------------------------------------- /library/grt/src/grt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grt.h -------------------------------------------------------------------------------- /library/grt/src/grtpp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grtpp_helper.h -------------------------------------------------------------------------------- /library/grt/src/grtpp_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grtpp_shell.h -------------------------------------------------------------------------------- /library/grt/src/grtpp_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grtpp_util.cpp -------------------------------------------------------------------------------- /library/grt/src/grtpp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grtpp_util.h -------------------------------------------------------------------------------- /library/grt/src/grtpp_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/grtpp_value.h -------------------------------------------------------------------------------- /library/grt/src/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/serializer.cpp -------------------------------------------------------------------------------- /library/grt/src/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/serializer.h -------------------------------------------------------------------------------- /library/grt/src/unserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/src/unserializer.h -------------------------------------------------------------------------------- /library/grt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/stdafx.cpp -------------------------------------------------------------------------------- /library/grt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/stdafx.h -------------------------------------------------------------------------------- /library/grt/summary.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/grt/summary.dox -------------------------------------------------------------------------------- /library/mtemplate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/README -------------------------------------------------------------------------------- /library/mtemplate/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/common.h -------------------------------------------------------------------------------- /library/mtemplate/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/dictionary.h -------------------------------------------------------------------------------- /library/mtemplate/modifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/modifier.cpp -------------------------------------------------------------------------------- /library/mtemplate/modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/modifier.h -------------------------------------------------------------------------------- /library/mtemplate/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/output.cpp -------------------------------------------------------------------------------- /library/mtemplate/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/output.h -------------------------------------------------------------------------------- /library/mtemplate/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/stdafx.cpp -------------------------------------------------------------------------------- /library/mtemplate/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/stdafx.h -------------------------------------------------------------------------------- /library/mtemplate/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/template.cpp -------------------------------------------------------------------------------- /library/mtemplate/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/template.h -------------------------------------------------------------------------------- /library/mtemplate/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/types.cpp -------------------------------------------------------------------------------- /library/mtemplate/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mtemplate/types.h -------------------------------------------------------------------------------- /library/mysql.canvas/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /library/mysql.canvas/src/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/mysql.canvas/src/mdc.h -------------------------------------------------------------------------------- /library/parsers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/parsers/CMakeLists.txt -------------------------------------------------------------------------------- /library/parsers/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/parsers/SymbolTable.h -------------------------------------------------------------------------------- /library/parsers/grammars/test.parser/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /library/parsers/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/parsers/stdafx.cpp -------------------------------------------------------------------------------- /library/parsers/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/parsers/stdafx.h -------------------------------------------------------------------------------- /library/python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(workbench) 2 | -------------------------------------------------------------------------------- /library/python/workbench/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/python/workbench/ui.py -------------------------------------------------------------------------------- /library/sql.parser/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(source) 2 | -------------------------------------------------------------------------------- /library/ssh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/CMakeLists.txt -------------------------------------------------------------------------------- /library/ssh/SSHCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHCommon.cpp -------------------------------------------------------------------------------- /library/ssh/SSHCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHCommon.h -------------------------------------------------------------------------------- /library/ssh/SSHSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHSession.cpp -------------------------------------------------------------------------------- /library/ssh/SSHSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHSession.h -------------------------------------------------------------------------------- /library/ssh/SSHSftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHSftp.cpp -------------------------------------------------------------------------------- /library/ssh/SSHSftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHSftp.h -------------------------------------------------------------------------------- /library/ssh/SSHTunnelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHTunnelHandler.h -------------------------------------------------------------------------------- /library/ssh/SSHTunnelManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/SSHTunnelManager.h -------------------------------------------------------------------------------- /library/ssh/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/stdafx.cpp -------------------------------------------------------------------------------- /library/ssh/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/stdafx.h -------------------------------------------------------------------------------- /library/ssh/wbssh.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/ssh/wbssh.vcxproj -------------------------------------------------------------------------------- /library/sshtunnel/sshtunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/library/sshtunnel/sshtunnel.py -------------------------------------------------------------------------------- /make_deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/make_deb -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/PrepareOutputDir.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/PrepareOutputDir.cmd -------------------------------------------------------------------------------- /modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/README -------------------------------------------------------------------------------- /modules/db.generic/SQLEXT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/db.generic/SQLEXT.py -------------------------------------------------------------------------------- /modules/db.mysql/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/db.mysql/src/stdafx.h -------------------------------------------------------------------------------- /modules/interfaces/CONTENTS: -------------------------------------------------------------------------------- 1 | GRT interface definition files 2 | -------------------------------------------------------------------------------- /modules/interfaces/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/interfaces/plugin.h -------------------------------------------------------------------------------- /modules/sample/src/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/sample/src/sample.cpp -------------------------------------------------------------------------------- /modules/sample/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/sample/src/stdafx.cpp -------------------------------------------------------------------------------- /modules/sample/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/sample/src/stdafx.h -------------------------------------------------------------------------------- /modules/utilities/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/utilities/src/stdafx.h -------------------------------------------------------------------------------- /modules/wb.model/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/wb.model/src/stdafx.h -------------------------------------------------------------------------------- /modules/wb.utils/text_grt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/modules/wb.utils/text_grt.py -------------------------------------------------------------------------------- /mysql-workbench.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/mysql-workbench.desktop.in -------------------------------------------------------------------------------- /mysql-workbench.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/mysql-workbench.mime -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/README -------------------------------------------------------------------------------- /plugins/db.mysql/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/db.mysql/stdafx.cpp -------------------------------------------------------------------------------- /plugins/db.mysql/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/db.mysql/stdafx.h -------------------------------------------------------------------------------- /plugins/db.search/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/db.search/stdafx.cpp -------------------------------------------------------------------------------- /plugins/db.search/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/db.search/stdafx.h -------------------------------------------------------------------------------- /plugins/migration/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/migration/doc/Makefile -------------------------------------------------------------------------------- /plugins/migration/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/migration/doc/conf.py -------------------------------------------------------------------------------- /plugins/migration/doc/grt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/migration/doc/grt.py -------------------------------------------------------------------------------- /plugins/migration/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/plugins/migration/doc/make.bat -------------------------------------------------------------------------------- /plugins/wb.admin/backend/config/test/README: -------------------------------------------------------------------------------- 1 | use this script to try out grid-python binding 2 | -------------------------------------------------------------------------------- /po/README.i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/po/README.i18n -------------------------------------------------------------------------------- /po/scan_po_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/po/scan_po_files.sh -------------------------------------------------------------------------------- /po/scan_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/po/scan_xml.py -------------------------------------------------------------------------------- /prefix/MySQLWorkbench_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/MySQLWorkbench_prefix.h -------------------------------------------------------------------------------- /prefix/WBExtras_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/WBExtras_prefix.h -------------------------------------------------------------------------------- /prefix/_cairo_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/_cairo_prefix.h -------------------------------------------------------------------------------- /prefix/_mforms_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/_mforms_prefix.h -------------------------------------------------------------------------------- /prefix/cdbc_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/cdbc_prefix.h -------------------------------------------------------------------------------- /prefix/db.mysql.grt_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/db.mysql.grt_prefix.h -------------------------------------------------------------------------------- /prefix/db.mysql.wbp_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/db.mysql.wbp_prefix.h -------------------------------------------------------------------------------- /prefix/db.search.wbp_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/db.search.wbp_prefix.h -------------------------------------------------------------------------------- /prefix/genobj_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/genobj_prefix.h -------------------------------------------------------------------------------- /prefix/genwrap_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/genwrap_prefix.h -------------------------------------------------------------------------------- /prefix/grt_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/grt_prefix.h -------------------------------------------------------------------------------- /prefix/mforms_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/mforms_prefix.h -------------------------------------------------------------------------------- /prefix/mtemplate_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/mtemplate_prefix.h -------------------------------------------------------------------------------- /prefix/mysql.canvas_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/mysql.canvas_prefix.h -------------------------------------------------------------------------------- /prefix/mysql.parser_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/mysql.parser_prefix.h -------------------------------------------------------------------------------- /prefix/parsers_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/parsers_prefix.h -------------------------------------------------------------------------------- /prefix/sql.parser_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/sql.parser_prefix.h -------------------------------------------------------------------------------- /prefix/utilities.grt_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/utilities.grt_prefix.h -------------------------------------------------------------------------------- /prefix/wb.model.grt_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wb.model.grt_prefix.h -------------------------------------------------------------------------------- /prefix/wb.ng.grt.prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wb.ng.grt.prefix.h -------------------------------------------------------------------------------- /prefix/wb.ng.wbp_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wb.ng.wbp_prefix.h -------------------------------------------------------------------------------- /prefix/wb.printing_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wb.printing_prefix.h -------------------------------------------------------------------------------- /prefix/wbbase_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbbase_prefix.h -------------------------------------------------------------------------------- /prefix/wbcopytables_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbcopytables_prefix.h -------------------------------------------------------------------------------- /prefix/wbprivate.be_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbprivate.be_prefix.h -------------------------------------------------------------------------------- /prefix/wbpublic.be_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbpublic.be_prefix.h -------------------------------------------------------------------------------- /prefix/wbssh_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbssh_prefix.h -------------------------------------------------------------------------------- /prefix/wbtests_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/prefix/wbtests_prefix.h -------------------------------------------------------------------------------- /res/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/CMakeLists.txt -------------------------------------------------------------------------------- /res/grt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/CMakeLists.txt -------------------------------------------------------------------------------- /res/grt/structs.app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.app.xml -------------------------------------------------------------------------------- /res/grt/structs.db.mgmt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.mgmt.xml -------------------------------------------------------------------------------- /res/grt/structs.db.mssql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.mssql.xml -------------------------------------------------------------------------------- /res/grt/structs.db.mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.mysql.xml -------------------------------------------------------------------------------- /res/grt/structs.db.oracle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.oracle.xml -------------------------------------------------------------------------------- /res/grt/structs.db.query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.query.xml -------------------------------------------------------------------------------- /res/grt/structs.db.sybase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.sybase.xml -------------------------------------------------------------------------------- /res/grt/structs.db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.db.xml -------------------------------------------------------------------------------- /res/grt/structs.eer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.eer.xml -------------------------------------------------------------------------------- /res/grt/structs.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.meta.xml -------------------------------------------------------------------------------- /res/grt/structs.model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.model.xml -------------------------------------------------------------------------------- /res/grt/structs.ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.ui.xml -------------------------------------------------------------------------------- /res/grt/structs.workbench.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.workbench.xml -------------------------------------------------------------------------------- /res/grt/structs.wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.wrapper.xml -------------------------------------------------------------------------------- /res/grt/structs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grt/structs.xml -------------------------------------------------------------------------------- /res/grtdata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/grtdata/CMakeLists.txt -------------------------------------------------------------------------------- /res/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /res/scripts/python/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/python/db_utils.py -------------------------------------------------------------------------------- /res/scripts/python/wb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/python/wb.py -------------------------------------------------------------------------------- /res/scripts/script_templates/eer_model_utility_grt.py.txt: -------------------------------------------------------------------------------- 1 | # plugin template 2 | # EER Model Utility 3 | 4 | -------------------------------------------------------------------------------- /res/scripts/script_templates/sql_editor_utility_grt.py.txt: -------------------------------------------------------------------------------- 1 | # plugin template 2 | # EER Model Utility 3 | 4 | -------------------------------------------------------------------------------- /res/scripts/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/sys/LICENSE -------------------------------------------------------------------------------- /res/scripts/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/sys/README.md -------------------------------------------------------------------------------- /res/scripts/sys/sys_56.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/sys/sys_56.sql -------------------------------------------------------------------------------- /res/scripts/sys/sys_57.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/sys/sys_57.sql -------------------------------------------------------------------------------- /res/scripts/sys/sys_reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/sys/sys_reports.js -------------------------------------------------------------------------------- /res/scripts/update_wbsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/update_wbsys.py -------------------------------------------------------------------------------- /res/scripts/vbs/mysqlwbmeb.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/scripts/vbs/mysqlwbmeb.vbs -------------------------------------------------------------------------------- /res/server/keyword_list56.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/server/keyword_list56.h -------------------------------------------------------------------------------- /res/server/keyword_list57.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/server/keyword_list57.h -------------------------------------------------------------------------------- /res/server/keyword_list80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/server/keyword_list80.h -------------------------------------------------------------------------------- /res/server/system-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/server/system-functions.h -------------------------------------------------------------------------------- /res/snippets/DB Management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/snippets/DB Management.txt -------------------------------------------------------------------------------- /res/sqlidedata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/sqlidedata/CMakeLists.txt -------------------------------------------------------------------------------- /res/sqlidedata/templates/HTML.post.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/sqlidedata/templates/JSON.post.tpl: -------------------------------------------------------------------------------- 1 | ] 2 | -------------------------------------------------------------------------------- /res/sqlidedata/templates/JSON.pre.tpl: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /res/sqlidedata/templates/XML.post.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/sqlidedata/templates/XML.pre.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/sqlidedata/templates/XML_mysql.post.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/wbdata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/CMakeLists.txt -------------------------------------------------------------------------------- /res/wbdata/code_editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/code_editor.xml -------------------------------------------------------------------------------- /res/wbdata/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/data.db -------------------------------------------------------------------------------- /res/wbdata/dbquery_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/dbquery_toolbar.xml -------------------------------------------------------------------------------- /res/wbdata/default_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/default_toolbar.xml -------------------------------------------------------------------------------- /res/wbdata/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/main_menu.xml -------------------------------------------------------------------------------- /res/wbdata/model_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/model_toolbar.xml -------------------------------------------------------------------------------- /res/wbdata/paper_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/paper_types.xml -------------------------------------------------------------------------------- /res/wbdata/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/shortcuts.xml -------------------------------------------------------------------------------- /res/wbdata/shortcuts_basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/shortcuts_basic.xml -------------------------------------------------------------------------------- /res/wbdata/table_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/table_templates.xml -------------------------------------------------------------------------------- /res/wbdata/tools_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/res/wbdata/tools_toolbar.xml -------------------------------------------------------------------------------- /samples/models/sakila_full.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/samples/models/sakila_full.mwb -------------------------------------------------------------------------------- /set_wb_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/set_wb_version -------------------------------------------------------------------------------- /testing/RunTestSuite.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/RunTestSuite.cmd -------------------------------------------------------------------------------- /testing/run-test-suite-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/run-test-suite-linux -------------------------------------------------------------------------------- /testing/run-test-suite-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/run-test-suite-mac -------------------------------------------------------------------------------- /testing/test-suite/data/base/my-1.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test-suite/data/db/empty_firstline.sql: -------------------------------------------------------------------------------- 1 | 2 | create table foo (a int); 3 | -------------------------------------------------------------------------------- /testing/test-suite/data/modules_grt/wb_mysql_import/sql/1.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE test.table1 ( 2 | f01 INTEGER 3 | ); 4 | -------------------------------------------------------------------------------- /testing/test-suite/data/mtemplate/HTML.post.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /testing/test-suite/data/mtemplate/JSON.post.tpl: -------------------------------------------------------------------------------- 1 | ] 2 | -------------------------------------------------------------------------------- /testing/test-suite/data/mtemplate/JSON.pre.tpl: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /testing/test-suite/data/regress/40846/cleanup.sql: -------------------------------------------------------------------------------- 1 | drop database if exists mydbfn; -------------------------------------------------------------------------------- /testing/test-suite/data/regress/40846/desription.txt: -------------------------------------------------------------------------------- 1 | Regression test for bug #40846 -------------------------------------------------------------------------------- /testing/test-suite/data/regress/40846/init.sql: -------------------------------------------------------------------------------- 1 | drop database if exists mydbfn; -------------------------------------------------------------------------------- /testing/test-suite/data/regress/42085/dont-apply: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test-suite/data/shell_history.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test-suite/data/workbench/empty_file.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/test-suite/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/test-suite/main.cpp -------------------------------------------------------------------------------- /testing/test-suite/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/test-suite/pch.cpp -------------------------------------------------------------------------------- /testing/test-suite/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/testing/test-suite/pch.h -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/count_loc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/count_loc.sh -------------------------------------------------------------------------------- /tools/file_headers/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/file_headers/ignore -------------------------------------------------------------------------------- /tools/file_headers/removals: -------------------------------------------------------------------------------- 1 | */internal/* 2 | -------------------------------------------------------------------------------- /tools/genobj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genobj/CMakeLists.txt -------------------------------------------------------------------------------- /tools/genobj/genobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genobj/genobj.cpp -------------------------------------------------------------------------------- /tools/genobj/genobj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genobj/genobj.vcxproj -------------------------------------------------------------------------------- /tools/genwrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genwrap/CMakeLists.txt -------------------------------------------------------------------------------- /tools/genwrap/genwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genwrap/genwrap.cpp -------------------------------------------------------------------------------- /tools/genwrap/genwrap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/genwrap/genwrap.vcxproj -------------------------------------------------------------------------------- /tools/get_wb_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/get_wb_version.sh -------------------------------------------------------------------------------- /tools/mga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/CMakeLists.txt -------------------------------------------------------------------------------- /tools/mga/mga.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/mga.sln -------------------------------------------------------------------------------- /tools/mga/mga_duk_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/mga_duk_config.yaml -------------------------------------------------------------------------------- /tools/mga/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/readme.md -------------------------------------------------------------------------------- /tools/mga/run_gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/run_gcov -------------------------------------------------------------------------------- /tools/mga/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/mga/src/aal/aalcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/aalcommon.h -------------------------------------------------------------------------------- /tools/mga/src/aal/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/geometry.cpp -------------------------------------------------------------------------------- /tools/mga/src/aal/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/geometry.h -------------------------------------------------------------------------------- /tools/mga/src/aal/role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/role.cpp -------------------------------------------------------------------------------- /tools/mga/src/aal/role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/role.h -------------------------------------------------------------------------------- /tools/mga/src/aal/textrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/aal/textrange.h -------------------------------------------------------------------------------- /tools/mga/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/common.h -------------------------------------------------------------------------------- /tools/mga/src/duktape/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/duktape/stdafx.h -------------------------------------------------------------------------------- /tools/mga/src/library/apath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/apath.h -------------------------------------------------------------------------------- /tools/mga/src/library/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/db.cpp -------------------------------------------------------------------------------- /tools/mga/src/library/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/db.h -------------------------------------------------------------------------------- /tools/mga/src/library/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/events.h -------------------------------------------------------------------------------- /tools/mga/src/library/glob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/glob.cpp -------------------------------------------------------------------------------- /tools/mga/src/library/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/glob.h -------------------------------------------------------------------------------- /tools/mga/src/library/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/global.h -------------------------------------------------------------------------------- /tools/mga/src/library/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/os.cpp -------------------------------------------------------------------------------- /tools/mga/src/library/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/os.h -------------------------------------------------------------------------------- /tools/mga/src/library/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/path.cpp -------------------------------------------------------------------------------- /tools/mga/src/library/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/path.h -------------------------------------------------------------------------------- /tools/mga/src/library/tty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/tty.cpp -------------------------------------------------------------------------------- /tools/mga/src/library/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/tty.h -------------------------------------------------------------------------------- /tools/mga/src/library/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/types.h -------------------------------------------------------------------------------- /tools/mga/src/library/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/library/utils.h -------------------------------------------------------------------------------- /tools/mga/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/main.cpp -------------------------------------------------------------------------------- /tools/mga/src/mga.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/mga.vcxproj -------------------------------------------------------------------------------- /tools/mga/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/stdafx.cpp -------------------------------------------------------------------------------- /tools/mga/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/mga/src/stdafx.h -------------------------------------------------------------------------------- /tools/mga/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /tools/test-gui/linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/test-gui/linux/main.cpp -------------------------------------------------------------------------------- /tools/test-gui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/test-gui/readme.md -------------------------------------------------------------------------------- /tools/tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/tools/tools.sln -------------------------------------------------------------------------------- /vsprops/wb_antlr4.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_antlr4.props -------------------------------------------------------------------------------- /vsprops/wb_boost.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_boost.props -------------------------------------------------------------------------------- /vsprops/wb_cairo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_cairo.props -------------------------------------------------------------------------------- /vsprops/wb_cairo_inc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_cairo_inc.props -------------------------------------------------------------------------------- /vsprops/wb_cpp_std.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_cpp_std.props -------------------------------------------------------------------------------- /vsprops/wb_cppconn.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_cppconn.props -------------------------------------------------------------------------------- /vsprops/wb_cppconn_inc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_cppconn_inc.props -------------------------------------------------------------------------------- /vsprops/wb_gdal.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_gdal.props -------------------------------------------------------------------------------- /vsprops/wb_glib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_glib.props -------------------------------------------------------------------------------- /vsprops/wb_libssh.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_libssh.props -------------------------------------------------------------------------------- /vsprops/wb_libxml.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_libxml.props -------------------------------------------------------------------------------- /vsprops/wb_libxml_inc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_libxml_inc.props -------------------------------------------------------------------------------- /vsprops/wb_libzip.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_libzip.props -------------------------------------------------------------------------------- /vsprops/wb_mysql.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_mysql.props -------------------------------------------------------------------------------- /vsprops/wb_python.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_python.props -------------------------------------------------------------------------------- /vsprops/wb_rapidjson.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_rapidjson.props -------------------------------------------------------------------------------- /vsprops/wb_sqlite.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_sqlite.props -------------------------------------------------------------------------------- /vsprops/wb_vsqlite++.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_vsqlite++.props -------------------------------------------------------------------------------- /vsprops/wb_zlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysql/mysql-workbench/HEAD/vsprops/wb_zlib.props --------------------------------------------------------------------------------