2 Copyright (C) 2001-2006, William Joseph.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "plugintoolbar.h"
26 #include "modulesystem.h"
28 #include "stream/stringstream.h"
29 #include "gtkutil/image.h"
30 #include "gtkutil/container.h"
32 #include "mainframe.h"
35 ui::Image new_plugin_image( const char* filename ){
37 StringOutputStream fullpath( 256 );
38 fullpath << GameToolsPath_get() << g_pluginsDir << "bitmaps/" << filename;
39 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
43 StringOutputStream fullpath( 256 );
44 fullpath << AppPath_get() << g_pluginsDir << "bitmaps/" << filename;
45 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
49 StringOutputStream fullpath( 256 );
50 fullpath << AppPath_get() << g_modulesDir << "bitmaps/" << filename;
51 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
54 return image_new_missing();
57 void toolbar_insert( GtkToolbar *toolbar, const char* icon, const char* text, const char* tooltip, IToolbarButton::EType type, GCallback handler, gpointer data ){
58 if (type == IToolbarButton::eSpace) {
59 auto it = gtk_separator_tool_item_new();
60 gtk_widget_show(GTK_WIDGET(it));
61 gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(it));
64 if (type == IToolbarButton::eButton) {
65 auto button = gtk_tool_button_new(GTK_WIDGET(new_plugin_image(icon)), text);
66 gtk_widget_set_tooltip_text(GTK_WIDGET(button), tooltip);
67 gtk_widget_show_all(GTK_WIDGET(button));
68 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(handler), data);
69 gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(button));
72 if (type == IToolbarButton::eToggleButton) {
73 auto button = gtk_toggle_tool_button_new();
74 gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(button), GTK_WIDGET(new_plugin_image(icon)));
75 gtk_tool_button_set_label(GTK_TOOL_BUTTON(button), text);
76 gtk_widget_set_tooltip_text(GTK_WIDGET(button), tooltip);
77 gtk_widget_show_all(GTK_WIDGET(button));
78 g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(handler), data);
79 gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(button));
82 ERROR_MESSAGE( "invalid toolbar button type" );
85 void ActivateToolbarButton( GtkToolButton *widget, gpointer data ){
86 (const_cast<const IToolbarButton *>( reinterpret_cast<IToolbarButton *>( data )))->activate();
89 void PlugInToolbar_AddButton( GtkToolbar* toolbar, const IToolbarButton* button ){
90 toolbar_insert( toolbar, button->getImage(), button->getText(), button->getTooltip(), button->getType(), G_CALLBACK( ActivateToolbarButton ), reinterpret_cast<gpointer>( const_cast<IToolbarButton*>( button ) ) );
93 ui::Toolbar g_plugin_toolbar{nullptr};
95 void PluginToolbar_populate(){
96 class AddToolbarItemVisitor : public ToolbarModules::Visitor
98 GtkToolbar* m_toolbar;
100 AddToolbarItemVisitor( GtkToolbar* toolbar )
101 : m_toolbar( toolbar ){
103 void visit( const char* name, const _QERPlugToolbarTable& table ) const {
104 const std::size_t count = table.m_pfnToolbarButtonCount();
105 for ( std::size_t i = 0; i < count; ++i )
107 PlugInToolbar_AddButton( m_toolbar, table.m_pfnGetToolbarButton( i ) );
111 } visitor( g_plugin_toolbar );
113 Radiant_getToolbarModules().foreachModule( visitor );
116 void PluginToolbar_clear(){
117 container_remove_all( g_plugin_toolbar );
120 ui::Toolbar create_plugin_toolbar(){
122 auto toolbar = ui::Toolbar(GTK_TOOLBAR( gtk_toolbar_new() ));
123 gtk_orientable_set_orientation( GTK_ORIENTABLE(toolbar), GTK_ORIENTATION_HORIZONTAL );
124 gtk_toolbar_set_style( toolbar, GTK_TOOLBAR_ICONS );
127 g_plugin_toolbar = toolbar;
129 PluginToolbar_populate();