]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/plugintoolbar.cpp
32b31c5a382ba753b2999f2ed70cdd0111854d93
[xonotic/netradiant.git] / radiant / plugintoolbar.cpp
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
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.
11
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.
16
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
20  */
21
22 #include "plugintoolbar.h"
23
24 #include <gtk/gtk.h>
25
26 #include "itoolbar.h"
27 #include "modulesystem.h"
28
29 #include "stream/stringstream.h"
30 #include "gtkutil/image.h"
31 #include "gtkutil/container.h"
32
33 #include "mainframe.h"
34 #include "plugin.h"
35
36 ui::Image new_plugin_image( const char* filename ){
37         {
38                 StringOutputStream fullpath( 256 );
39                 fullpath << GameToolsPath_get() << g_pluginsDir << "bitmaps/" << filename;
40                 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
41         }
42
43         {
44                 StringOutputStream fullpath( 256 );
45                 fullpath << AppPath_get() << g_pluginsDir << "bitmaps/" << filename;
46                 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
47         }
48
49         {
50                 StringOutputStream fullpath( 256 );
51                 fullpath << AppPath_get() << g_modulesDir << "bitmaps/" << filename;
52                 if ( auto image = image_new_from_file_with_mask(fullpath.c_str()) ) return image;
53         }
54
55         return image_new_missing();
56 }
57
58 void toolbar_insert( ui::Toolbar toolbar, const char* icon, const char* text, const char* tooltip, IToolbarButton::EType type, GCallback handler, gpointer data ){
59         if (type == IToolbarButton::eSpace) {
60                 auto it = ui::Widget(GTK_WIDGET(gtk_separator_tool_item_new()));
61                 it.show();
62                 toolbar.add(it);
63                 return;
64         }
65         if (type == IToolbarButton::eButton) {
66                 auto button = ui::ToolButton(GTK_TOOL_BUTTON(gtk_tool_button_new(GTK_WIDGET(new_plugin_image(icon)), text)));
67                 gtk_widget_set_tooltip_text(button, tooltip);
68                 gtk_widget_show_all(button);
69                 button.connect("clicked", G_CALLBACK(handler), data);
70                 toolbar.add(button);
71                 return;
72         }
73         if (type == IToolbarButton::eToggleButton) {
74                 auto button = ui::ToolButton(GTK_TOOL_BUTTON(gtk_toggle_tool_button_new()));
75                 gtk_tool_button_set_icon_widget(button, GTK_WIDGET(new_plugin_image(icon)));
76                 gtk_tool_button_set_label(button, text);
77                 gtk_widget_set_tooltip_text(button, tooltip);
78                 gtk_widget_show_all(button);
79                 button.connect("toggled", G_CALLBACK(handler), data);
80                 toolbar.add(button);
81                 return;
82         }
83         ERROR_MESSAGE( "invalid toolbar button type" );
84 }
85
86 void ActivateToolbarButton( GtkToolButton *widget, gpointer data ){
87         (const_cast<const IToolbarButton *>( reinterpret_cast<IToolbarButton *>( data )))->activate();
88 }
89
90 void PlugInToolbar_AddButton( ui::Toolbar toolbar, const IToolbarButton* button ){
91         toolbar_insert( toolbar, button->getImage(), button->getText(), button->getTooltip(), button->getType(), G_CALLBACK( ActivateToolbarButton ), reinterpret_cast<gpointer>( const_cast<IToolbarButton*>( button ) ) );
92 }
93
94 ui::Toolbar g_plugin_toolbar{ui::null};
95
96 void PluginToolbar_populate(){
97         class AddToolbarItemVisitor : public ToolbarModules::Visitor
98         {
99         ui::Toolbar m_toolbar;
100 public:
101         AddToolbarItemVisitor( ui::Toolbar toolbar )
102                 : m_toolbar( toolbar ){
103         }
104         void visit( const char* name, const _QERPlugToolbarTable& table ) const {
105                 const std::size_t count = table.m_pfnToolbarButtonCount();
106                 for ( std::size_t i = 0; i < count; ++i )
107                 {
108                         PlugInToolbar_AddButton( m_toolbar, table.m_pfnGetToolbarButton( i ) );
109                 }
110         }
111
112         } visitor( g_plugin_toolbar );
113
114         Radiant_getToolbarModules().foreachModule( visitor );
115 }
116
117 void PluginToolbar_clear(){
118         container_remove_all( g_plugin_toolbar );
119 }
120
121 ui::Toolbar create_plugin_toolbar(){
122
123         auto toolbar = ui::Toolbar(GTK_TOOLBAR( gtk_toolbar_new() ));
124         gtk_orientable_set_orientation( GTK_ORIENTABLE(toolbar), GTK_ORIENTATION_HORIZONTAL );
125         gtk_toolbar_set_style( toolbar, GTK_TOOLBAR_ICONS );
126         toolbar.show();
127
128         g_plugin_toolbar = toolbar;
129
130         PluginToolbar_populate();
131
132         return toolbar;
133 }