]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/plugintoolbar.cpp
Merge branch 'master' into divVerent/farplanedist-sky-fix
[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
25 #include "itoolbar.h"
26 #include "modulesystem.h"
27
28 #include <gtk/gtktoolbar.h>
29
30 #include "stream/stringstream.h"
31 #include "gtkutil/image.h"
32 #include "gtkutil/container.h"
33
34 #include "mainframe.h"
35 #include "plugin.h"
36
37 GtkImage* new_plugin_image( const char* filename ){
38         {
39                 StringOutputStream fullpath( 256 );
40                 fullpath << GameToolsPath_get() << g_pluginsDir << "bitmaps/" << filename;
41                 GtkImage* image = image_new_from_file_with_mask( fullpath.c_str() );
42                 if ( image != 0 ) {
43                         return image;
44                 }
45         }
46
47         {
48                 StringOutputStream fullpath( 256 );
49                 fullpath << AppPath_get() << g_pluginsDir << "bitmaps/" << filename;
50                 GtkImage* image = image_new_from_file_with_mask( fullpath.c_str() );
51                 if ( image != 0 ) {
52                         return image;
53                 }
54         }
55
56         {
57                 StringOutputStream fullpath( 256 );
58                 fullpath << AppPath_get() << g_modulesDir << "bitmaps/" << filename;
59                 GtkImage* image = image_new_from_file_with_mask( fullpath.c_str() );
60                 if ( image != 0 ) {
61                         return image;
62                 }
63         }
64
65         return image_new_missing();
66 }
67
68 inline GtkToolbarChildType gtktoolbarchildtype_for_toolbarbuttontype( IToolbarButton::EType type ){
69         switch ( type )
70         {
71         case IToolbarButton::eSpace:
72                 return GTK_TOOLBAR_CHILD_SPACE;
73         case IToolbarButton::eButton:
74                 return GTK_TOOLBAR_CHILD_BUTTON;
75         case IToolbarButton::eToggleButton:
76                 return GTK_TOOLBAR_CHILD_TOGGLEBUTTON;
77         case IToolbarButton::eRadioButton:
78                 return GTK_TOOLBAR_CHILD_RADIOBUTTON;
79         }
80         ERROR_MESSAGE( "invalid toolbar button type" );
81         return (GtkToolbarChildType)0;
82 }
83
84 void toolbar_insert( GtkToolbar *toolbar, const char* icon, const char* text, const char* tooltip, IToolbarButton::EType type, GtkSignalFunc handler, gpointer data ){
85         gtk_toolbar_append_element( toolbar, gtktoolbarchildtype_for_toolbarbuttontype( type ), 0, text, tooltip, "", GTK_WIDGET( new_plugin_image( icon ) ), handler, data );
86 }
87
88 void ActivateToolbarButton( GtkWidget *widget, gpointer data ){
89         const_cast<const IToolbarButton*>( reinterpret_cast<IToolbarButton*>( data ) )->activate();
90 }
91
92 void PlugInToolbar_AddButton( GtkToolbar* toolbar, const IToolbarButton* button ){
93         toolbar_insert( toolbar, button->getImage(), button->getText(), button->getTooltip(), button->getType(), GTK_SIGNAL_FUNC( ActivateToolbarButton ), reinterpret_cast<gpointer>( const_cast<IToolbarButton*>( button ) ) );
94 }
95
96 GtkToolbar* g_plugin_toolbar = 0;
97
98 void PluginToolbar_populate(){
99         class AddToolbarItemVisitor : public ToolbarModules::Visitor
100         {
101         GtkToolbar* m_toolbar;
102 public:
103         AddToolbarItemVisitor( GtkToolbar* toolbar )
104                 : m_toolbar( toolbar ){
105         }
106         void visit( const char* name, const _QERPlugToolbarTable& table ) const {
107                 const std::size_t count = table.m_pfnToolbarButtonCount();
108                 for ( std::size_t i = 0; i < count; ++i )
109                 {
110                         PlugInToolbar_AddButton( m_toolbar, table.m_pfnGetToolbarButton( i ) );
111                 }
112         }
113
114         } visitor( g_plugin_toolbar );
115
116         Radiant_getToolbarModules().foreachModule( visitor );
117 }
118
119 void PluginToolbar_clear(){
120         container_remove_all( GTK_CONTAINER( g_plugin_toolbar ) );
121 }
122
123 GtkToolbar* create_plugin_toolbar(){
124         GtkToolbar *toolbar;
125
126         toolbar = GTK_TOOLBAR( gtk_toolbar_new() );
127         gtk_toolbar_set_orientation( toolbar, GTK_ORIENTATION_HORIZONTAL );
128         gtk_toolbar_set_style( toolbar, GTK_TOOLBAR_ICONS );
129         gtk_widget_show( GTK_WIDGET( toolbar ) );
130
131         g_plugin_toolbar = toolbar;
132
133         PluginToolbar_populate();
134
135         return toolbar;
136 }