| | 1111 | | sbar_item_funcs = g_hash_table_new((GHashFunc) g_str_hash, |
| | 1112 | | (GCompareFunc) g_str_equal); |
| | 1113 | | sbar_signal_items = g_hash_table_new((GHashFunc) g_direct_hash, |
| | 1114 | | (GCompareFunc) g_direct_equal); |
| | 1115 | | sbar_item_signals = g_hash_table_new((GHashFunc) g_direct_hash, |
| | 1116 | | (GCompareFunc) g_direct_equal); |
| | 1117 | | named_sbar_items = g_hash_table_new((GHashFunc) g_str_hash, |
| | 1118 | | (GCompareFunc) g_str_equal); |
| | 1119 | | |
| | 1120 | | signal_add("terminal resized", (SIGNAL_FUNC) sig_terminal_resized);
|
| Wrong Number of Parameters | 1121 | | signal_add("mainwindow resized", (SIGNAL_FUNC) sig_mainwindow_resized);
|
| | 1122 | | signal_add("mainwindow moved", (SIGNAL_FUNC) sig_mainwindow_resized);
|
| | 1123 | | signal_add("gui window created", (SIGNAL_FUNC) sig_gui_window_created);
|
| | 1124 | | signal_add("window changed", (SIGNAL_FUNC) sig_window_changed);
|
| | 1125 | | signal_add("mainwindow destroyed", (SIGNAL_FUNC) sig_mainwindow_destroyed);
|
| | 1126 | | |
| | 1127 | | statusbar_items_init(); |
| | 1128 | | statusbar_config_init(); |
| | 1129 | | } |
| | 1130 | | |
| | 1131 | | void statusbar_deinit(void) |