]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/gtkmisc.h
my own uncrustify run
[xonotic/netradiant.git] / radiant / gtkmisc.h
1 /*
2    Copyright (c) 2001, Loki software, inc.
3    All rights reserved.
4
5    Redistribution and use in source and binary forms, with or without modification,
6    are permitted provided that the following conditions are met:
7
8    Redistributions of source code must retain the above copyright notice, this list
9    of conditions and the following disclaimer.
10
11    Redistributions in binary form must reproduce the above copyright notice, this
12    list of conditions and the following disclaimer in the documentation and/or
13    other materials provided with the distribution.
14
15    Neither the name of Loki software nor the names of its contributors may be used
16    to endorse or promote products derived from this software without specific prior
17    written permission.
18
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
20    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22    DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
23    DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26    ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #if !defined( INCLUDED_GTKMISC_H )
32 #define INCLUDED_GTKMISC_H
33
34 #include <gtk/gtkmain.h>
35
36 inline void process_gui(){
37         while ( gtk_events_pending() )
38         {
39                 gtk_main_iteration();
40         }
41 }
42
43 void command_connect_accelerator( const char* commandName );
44 void command_disconnect_accelerator( const char* commandName );
45 void toggle_add_accelerator( const char* commandName );
46 void toggle_remove_accelerator( const char* name );
47
48 typedef struct _GtkMenu GtkMenu;
49 typedef struct _GtkMenuItem GtkMenuItem;
50 typedef struct _GtkCheckMenuItem GtkCheckMenuItem;
51
52 // this also sets up the shortcut using command_connect_accelerator
53 GtkMenuItem* create_menu_item_with_mnemonic( GtkMenu *menu, const char *mnemonic, const char* commandName );
54 // this also sets up the shortcut using command_connect_accelerator
55 GtkCheckMenuItem* create_check_menu_item_with_mnemonic( GtkMenu* menu, const char* mnemonic, const char* commandName );
56
57 typedef struct _GtkButton GtkButton;
58 typedef struct _GtkToggleButton GtkToggleButton;
59 typedef struct _GtkToolbar GtkToolbar;
60
61 // this DOES NOT set up the shortcut using command_connect_accelerator
62 GtkButton* toolbar_append_button( GtkToolbar* toolbar, const char* description, const char* icon, const char* commandName );
63 // this DOES NOT set up the shortcut using command_connect_accelerator
64 GtkToggleButton* toolbar_append_toggle_button( GtkToolbar* toolbar, const char* description, const char* icon, const char* commandName );
65
66
67 template<typename Element> class BasicVector3;
68 typedef BasicVector3<float> Vector3;
69 bool color_dialog( GtkWidget *parent, Vector3& color, const char* title = "Choose Color" );
70
71 typedef struct _GtkEntry GtkEntry;
72 void button_clicked_entry_browse_file( GtkWidget* widget, GtkEntry* entry );
73 void button_clicked_entry_browse_directory( GtkWidget* widget, GtkEntry* entry );
74
75 #endif