guake-indicator/data/icons/000775 001750 001750 00000000000 12451035035 016240 5ustar00ozzyozzy000000 000000 guake-indicator/plugins/guake-indicator-plugin-manager000664 001750 001750 00000015372 12451035035 023602 0ustar00ozzyozzy000000 000000 # -*- coding: utf-8 -*- # # guake-indicator-plugin-manager.py # # Copyright (C) 2013-2015 Alessio Garzi # Copyright (C) 2013-2015 Francesco Minà # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA. # """ Guake indicator Plugin """ import sys import pygtk import gtk import gtk.glade import os import urllib2 from BeautifulSoup import BeautifulSoup from os.path import expanduser import subprocess as sub draw_xml = [ "12 12 3 1", " c #232323", ". c #ffff04", "X c #b2c0dc", "X XXX", "X XXX", "X .. .. X", "X .. .. X", "X .. .. X", "X .... X", "X .... X", "X .. .. X", "X .. .. X", "X .. .. X", "X X", "X X" ] draw_glade = [ "12 12 3 1", " c #232323", ". c #ababab", "X c #b2c0dc", "X XXX", "X ...... XXX", "X ...... X", "X .. X", "X .. X", "X .. .... X", "X .. .... X", "X .. .. X", "X ........ X", "X ........ X", "X X", "X X" ] class GIPluginDialog: pixmap_xml = gtk.gdk.pixbuf_new_from_xpm_data(draw_xml) pixmap_glade = gtk.gdk.pixbuf_new_from_xpm_data(draw_glade) def on_tree_selection_changed(self,selection): model, treeiter = selection.get_selected() if treeiter != None: self.selected_file = model[treeiter][1] def load_plugins(self): response=None try: response = urllib2.urlopen('http://guake-indicator.ozzyboshi.com/plugins/plugin.xml') except urllib2.HTTPError as e: if e.code==407: p = os.popen("gsettings get org.gnome.system.proxy.http host | awk -F \\' '{print $2}'","r") output=p.readline() p = os.popen('gsettings get org.gnome.system.proxy.http port',"r") port=":"+p.readline() output=output[:-1] output+=port proxy = urllib2.ProxyHandler({'http': output}) opener = urllib2.build_opener(proxy) urllib2.install_opener(opener) try: response = urllib2.urlopen('http://guake-indicator.ozzyboshi.com/plugins/plugin.xml') except urllib2.HTTPError as e: print e.code return html = response.read() y = BeautifulSoup(html) self.rooturl=y.findAll("description")[0]["url"] for feature in y.findAll("feature"): fileName, fileExtension = os.path.splitext(feature['url']) pm = 'pixmap' + fileExtension.replace('.','_') self.tree_store.append(None, [getattr(self,pm),feature["url"],feature["description"]]) def download(self, widget, event, data=None): if (self.selected_file == ''): print 'selecet file first.' return url = self.rooturl + self.selected_file #print url file_name = url.split('/')[-1] u = urllib2.urlopen(url) f = open(expanduser("~")+"/.guake-indicator/plugins/"+file_name, 'wb') meta = u.info() file_size = int(meta.getheaders("Content-Length")[0]) #print "Downloading: %s Bytes: %s" % (file_name, file_size) file_size_dl = 0 block_sz = 8192 while True: buffer = u.read(block_sz) if not buffer: break file_size_dl += len(buffer) f.write(buffer) status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size) status = status + chr(8)*(len(status)+1) #print status, f.close() message = gtk.MessageDialog(type=gtk.MESSAGE_INFO, buttons=gtk.BUTTONS_CLOSE) message.set_markup("Plugin downloaded into ~/.guake-indicator/plugins directory") message.run() message.destroy() #gtk.main_quit() def __init__(self,gladepath): self.rooturl = '' self.selected_file = '' self.url = 'http://guake-indicator.ozzyboshi.com/plugins/' #Set the Glade file if (len(gladepath)>0) : self.gladefile=gladepath+"/gi_plugin_dialog.glade" else : self.gladefile = "/usr/local/share/guake-indicator/gi_plugin_dialog.glade" self.builder = gtk.Builder() self.builder.add_from_file(self.gladefile) #Get the Main Window, and connect the "destroy" event self.window = self.builder.get_object("gi_plugin_window") self.tree_view = self.builder.get_object("plugin_treeview") self.btn_download = self.builder.get_object("btn_download") self.btn_cancel = self.builder.get_object("btn_cancel") self.btn_download.connect("clicked",self.download,None) self.btn_cancel.connect("clicked",gtk.main_quit) self.tree_store = gtk.TreeStore(gtk.gdk.Pixbuf,str,str) self.tree_view.set_model(self.tree_store) # create column that contains pixbuf and text self.col = gtk.TreeViewColumn("Name") self.tree_view.append_column(self.col) # create a description columns self.desccol = gtk.TreeViewColumn("Description") self.tree_view.append_column(self.desccol) # create cell: pixbuf and text self.cell = gtk.CellRendererText() self.cellpix = gtk.CellRendererPixbuf() self.desccell = gtk.CellRendererText() # add cell to column pixbuf and text in the same column self.col.pack_start(self.cellpix, expand=False) self.col.pack_start(self.cell,True) self.desccol.pack_start(self.desccell,True) #self.cell.set_property('cell-background', 'yellow') # add cell to column self.col.add_attribute(self.cellpix,'pixbuf',0) self.col.add_attribute(self.cell,'text',1) self.desccol.add_attribute(self.desccell,'text',2) self.select = self.tree_view.get_selection() self.select.connect("changed", self.on_tree_selection_changed) self.window.show_all() if (self.window): self.window.connect("destroy", gtk.main_quit) self.builder.connect_signals(self) self.load_plugins() def quit(self, button): # close the window gtk.main_quit() if __name__ == "__main__": hwg = GIPluginDialog(sys.argv[1]) gtk.main() guake-indicator/data/icons/256x256/apps/000775 001750 001750 00000000000 12451035035 020144 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/24x24/000775 001750 001750 00000000000 12451035035 017023 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/22x22/apps/guake-indicator.png000664 001750 001750 00000002376 12451035035 023546 0ustar00ozzyozzy000000 000000 PNG  IHDRĴl;bKGD pHYsIIEtIME $MeIDAT8˭kE^=1RU[$DR (Q2C.H AB~+B\J I(TXmG^r]]s{εnIfgn?3===ιp?I!UaoXԞi'Ϟ~k]y<97n,@+ȹbr-3aY\:֍i8dj2368vvw@m<8gq4m,9d.A tu)^hM !m> 9za?:ERK2J)a;uvT6$#Z˽]EJ8?t\裥Z$IJP#\xzڂ҆7!_""yT4A~`p)XCQu.\D!'bdvXmH*)& `"H{x2+W :|ђ,34ZT.a"bra̍Rz{T:Z3#{/^Kk iZd;xsb%{Fؼw|I~ZB4F\\.sϳ|g0OAB~Ԛ+F<~ּCiļ pxx˞c}d:hɤdAd6ߣ3d"? g1g/z}nXg2ot<| KVEyc6߂ #@I%Yr]@ 8&:Pvr1ݴp@8g:zqxMx yV 8|Z[[QJE.}cAjZ@0$@&< *uЅJW{ BUjuSI}mnߡMѬmߓT7222xW;`PmIENDB`guake-indicator/src/guake-indicator-write-xml.c000664 001750 001750 00000006640 12451035035 022151 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include "guake-indicator-edit-menu.h" int write_xml_cfg_file(GArray* grouphostlist) { return write_xml_cfg_file_from_file(grouphostlist,NULL); } int write_xml_cfg_file_from_file(GArray* grouphostlist,char* file) { char* filedir,*filecfg; if (file==NULL) { filedir=checkandcreatedefaultdir(); asprintf(&filecfg,"%s/%s",filedir,GUAKE_INDICATOR_DEFAULT_FILEXML); free((void*)filedir); FILE * fd=fopen(filecfg,"w"); if (fd==NULL) { free((void*)filecfg); return -1; } fclose(fd); } else filecfg=strdup(file); xmlDocPtr doc = NULL; xmlNodePtr node = NULL; xmlNodePtr node2 = NULL; xmlNodePtr root_node = NULL;/* node pointers */ doc = xmlNewDoc(BAD_CAST "1.0"); root_node = xmlNewNode(NULL, BAD_CAST "Configuration"); xmlDocSetRootElement(doc, root_node); guint count = 0; HostGroup* iterator; while ( iterator = g_array_index (grouphostlist, HostGroup*, count)) { node=xmlNewChild(root_node, NULL, BAD_CAST "HostGroup", BAD_CAST ""); if (iterator->title) xmlNewProp(node, BAD_CAST "name", BAD_CAST iterator->title); if (iterator->label) xmlNewProp(node, BAD_CAST "label", BAD_CAST "yes"); Host* ptr; for (ptr=iterator->hostarray;ptr;ptr=ptr->next) { if (ptr->open_all) continue; node2=xmlNewChild(node, NULL, BAD_CAST "Host", BAD_CAST ""); if (ptr->label) xmlNewProp(node2, BAD_CAST "label", BAD_CAST "yes"); xmlNewTextChild(node2, NULL, BAD_CAST "menu_name", BAD_CAST ptr->menu_name); if (ptr->label==FALSE) { xmlNewTextChild(node2, NULL, BAD_CAST "tab_name", BAD_CAST ptr->tab_name); gchar* guakecmd=get_guake_cmd(ptr); xmlNewTextChild(node2, NULL, BAD_CAST "command_after_login",BAD_CAST guakecmd); g_free(guakecmd); xmlNewTextChild(node2, NULL, BAD_CAST "dont_show_guake", BAD_CAST ptr->dont_show_guake&&!strcmp((char*)ptr->dont_show_guake,"yes")?"yes":"no"); if (ptr->open_in_tab) { xmlNodePtr open_in_tab_node = xmlNewTextChild(node2, NULL, BAD_CAST "open_in_tab", BAD_CAST ptr->open_in_tab); if (ptr->open_in_tab_named) xmlNewProp(open_in_tab_node, BAD_CAST "named", BAD_CAST "yes"); } xmlNewTextChild(node2, NULL, BAD_CAST "lfcr", BAD_CAST ptr->lfcr&&!strcmp((char*)ptr->lfcr,"yes")?"yes":"no"); xmlNewTextChild(node2, NULL, BAD_CAST "guakeindicatorscript", BAD_CAST ptr->guakeindicatorscript&&!strcmp((char*)ptr->guakeindicatorscript,"yes")?"yes":"no"); } } count++; } xmlSaveFormatFileEnc(filecfg, doc, "UTF-8", 1); xmlFreeDoc(doc); xmlCleanupParser(); free((void*)filecfg); return 0; } guake-indicator/Makefile.am000664 001750 001750 00000000033 12451035035 016244 0ustar00ozzyozzy000000 000000 SUBDIRS = src data plugins guake-indicator/src/guake-indicator-edit-menu.h000664 001750 001750 00000017175 12451035035 022122 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define DND_DISABLED TRUE /*#ifndef GUAKE_INDICATOR_EDIT_MENU_H #define GUAKE_INDICATOR_EDIT_MENU_H /*#ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* GUAKE_INDICATOR_EDIT_MENU_H */ #include #include #include #include enum { ID_COLUMN, COL_ICON, NAME_COLUMN, N_COLUMNS }; enum { STATUS_EDIT, STATUS_ADD_GROUP, STATUS_ADD_HOST, STATUS_ADD_HOST_LABEL, STATUS_ADD_GROUP_LABEL, }; #define HOSTGROUP 1 #define HOST 2 #define GUAKE_INDICATOR_DATADIR "/guake-indicator" #define GUAKE_INDICATOR_PLUGIN_MANAGER "/guake-indicator-plugin-manager" #define GUAKE_INDICATOR_DBUS_GTKLABEL_MISSING_ERRMSG "Patch Guake to enable this feature: see http://guake-indicator.ozzyboshi.com/index.html#findtabbynameissue" #define ENTRY_SET_TEXT(var,var2) gtk_entry_set_text(var,var2?var2:""); #define TEXTVIEW_SET_TEXT(var,var2) gtk_text_buffer_set_text(gtk_text_view_get_buffer (var),var2?var2:"",strlen((char*)var2)); // get entry definitions #define GET_ENTRY_MENUNAME(var) (GtkEntry*)var->entry_menu_name #define GET_ENTRY_TABNAME(var) (GtkEntry*)var->entry_tab_name #define GET_ENTRY_COMMAND(var) (GtkTextView*)var->entry_command #define GET_ENTRY_SHOWGUAKE(var) (GtkToggleButton*)var->cb_show_guake #define GET_ENTRY_EXISTINGGUAKETAB(var) (GtkToggleButton*)var->existing_guake_tab #define GET_ENTRY_EXISTINGGUAKETABNAMED(var) (GtkToggleButton*)var->existing_guake_tab_named #define GET_ENTRY_EXISTINGGUAKETABCURRENT(var) (GtkToggleButton*)var->current_guake_tab #define GET_ENTRY_NTHGUAKETAB(var) (GtkEntry*)var->nth_guake_tab #define GET_ENTRY_NAMEDGUAKETAB(var) (GtkEntry*)var->named_guake_tab #define GET_ENTRY_LFCR(var) (GtkToggleButton*)var->lfcr #define GET_ENTRY_GUAKEINDICATORSCRIPT(var) (GtkToggleButton*)var->guakeindicatorscript #define GET_GTKVIEW_TEXT(var,var2) GtkTextIter start, end;\ GtkTextBuffer *buffer = gtk_text_view_get_buffer (var);\ gtk_text_buffer_get_bounds (buffer, &start, &end);\ var2 = gtk_text_buffer_get_text (buffer, &start, &end, FALSE); // update entry definitions #define UPDATE_ENTRY(var,var2) g_free(var);\ var=g_strdup(var2); typedef struct edit_menu_dialog_type { // main window GtkWidget *window; // entries GtkWidget *entry_menu_name; GtkWidget *entry_tab_name; GtkWidget *entry_command; // checkboxes and radiobox GtkWidget *cb_show_guake; GtkWidget *current_guake_tab; GtkWidget *new_guake_tab; GtkWidget *existing_guake_tab; GtkWidget *nth_guake_tab; GtkWidget *existing_guake_tab_named; GtkWidget *named_guake_tab; GtkWidget *lfcr; GtkWidget *guakeindicatorscript; // buttons GtkWidget *btn_edit_menu_save; GtkWidget *btn_edit_menu_remove; GtkWidget *btn_edit_menu_add_group; GtkWidget *btn_edit_menu_add_host; GtkWidget *btn_edit_menu_add_host_label; GtkWidget *btn_edit_menu_add_group_label; GtkWidget *btn_build_cmd; GtkWidget *btn_edit_menu_export; GtkWidget *topButton; GtkWidget *upButton; GtkWidget *downButton; GtkWidget *bottomButton; GtkWidget *btn_edit_menu_close_dialog; GArray* hbox; // selection data Host* selected_host; HostGroup* selected_hostgroup; gchar* selected_glade_file; // selection data for copy cut and paste operations Host* selected_host_for_operation; HostGroup* selected_hostgroup_for_operation; gboolean type_operation; // true = copy false = cut Host* copied_host; HostGroup* copied_hostgroup; gchar * selected_path; // treestore GtkTreeStore *tree_store; GtkWidget *tree_view; // action status gint status; gboolean* reset_flag; //Cfg file data GArray* grouphostlist; GtkAction* action; gpointer user_data; //Icons GdkPixbuf *labelicon; GdkPixbuf *hosticon; GdkPixbuf *hostgroupicon; //Drag data HostGroup* starthostgroupdrag; Host* starthostdrag; HostGroup* endhostgroupdrag; Host* endhostdrag; } EditMenuDialog; void print_edit_menu_form(GtkAction*,gpointer); void print_custom_form(GtkAction*, gpointer); void print_select_custom_form(GtkAction*, gpointer); GArray* get_custom_glade_files(); static void build_cmd ( GtkWidget *, gpointer); static void close_dialog ( GtkWidget *, gpointer ); static void save_edit_menu ( GtkWidget *, gpointer ); static void remove_edit_menu ( GtkWidget *, gpointer ); static void add_group ( GtkWidget *, gpointer ); static void add_host ( GtkWidget *, gpointer ); static void add_host_label ( GtkWidget *, gpointer); static void add_group_label ( GtkWidget *, gpointer); static void export ( GtkWidget *, gpointer); static void populate_dialog(gpointer); static void set_widget_sensitivity(EditMenuDialog*,gboolean); static void set_form_widget_sensitivity(EditMenuDialog*,gboolean); static void activate_grouphosts_sensitivity(EditMenuDialog*); static void activate_label_sensitivity(EditMenuDialog*); static void clear_widget(EditMenuDialog*); static void set_new_widget_sensitivity(EditMenuDialog* ,gboolean); static void set_move_widget_sensitivity(EditMenuDialog* ,gboolean ); static void unselect_treeview(EditMenuDialog*); void write_and_reload(EditMenuDialog*,const char* ); gboolean selection_func (GtkTreeSelection *, GtkTreeModel *, GtkTreePath *,gboolean, gpointer); gboolean gladefile_selection_func (GtkTreeSelection *, GtkTreeModel *, GtkTreePath *, gboolean, gpointer); gchar* get_guake_cmd(Host*); guint get_grouphost_index(GArray*,HostGroup*); guint get_grouphost_size(GArray* grouphostlist); void reload_model_view(EditMenuDialog *dialog); static void move_top(GtkWidget *, gpointer ); static void move_up(GtkWidget *, gpointer ); static void move_down(GtkWidget *, gpointer ); static void move_bottom(GtkWidget *, gpointer ); static void expand(GtkWidget *, GdkEvent*,gpointer ); static void collapse(GtkWidget *, GdkEvent*,gpointer ); static void call_print_custom_form ( GtkWidget *, gpointer); static void refresh_glade_files ( GtkWidget *, gpointer ); static void download_glade_files ( GtkWidget *, gpointer ); static gboolean drag_motion_handl (GtkWidget *, GdkDragContext *, gint , gint , guint ,gpointer ); static void drag_begin_handl(GtkWidget *, GdkDragContext *, gpointer ); static void drag_end_handl (GtkWidget *, GdkDragContext *, gpointer ); void view_onRowActivated (GtkTreeView* ,GtkTreePath* ,GtkTreeViewColumn *,gpointer); gboolean view_onButtonPressed (GtkWidget *, GdkEventButton *, gpointer ); void view_popup_menu (GtkWidget *, GdkEventButton *, gpointer ); void view_popup_menu_oncopy (GtkWidget *, gpointer); void view_popup_menu_onpaste (GtkWidget *, gpointer); void view_popup_menu_oncut (GtkWidget *, gpointer); void view_popup_menu_onperformcutcopyaction (GtkWidget *, gpointer); gboolean view_onPopupMenu (GtkWidget *, gpointer); void clear_gtkentry (GtkEntry* ,GtkEntryIconPosition ,GdkEvent *,gpointer); gboolean on_key_press (GtkWidget *, GdkEventKey *, gpointer ); gboolean manage_ctrl_s (GtkWidget *, GdkEventKey *, gpointer ); void set_selected_path(EditMenuDialog*,gchar*); void check_guake_get_tab_count(EditMenuDialog*); guake-indicator/000775 001750 001750 00000000000 12451036052 014214 5ustar00ozzyozzy000000 000000 guake-indicator/src/guake-indicator-edit-menu.c000664 001750 001750 00000213103 12451035035 022102 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "guake-indicator.h" #include "guake-indicator-edit-menu.h" #include "guake-indicator-read-json.h" #include "guake-indicator-xml.h" GtkTreeStore* global_tree_view; gboolean is_print_edit_menu_form_opened=FALSE; gboolean is_print_custom_form_opened=FALSE; // Function to print edit menu form window void print_edit_menu_form(GtkAction* action, gpointer user_data) { GtkCellRenderer *cell_name; GtkTreeViewColumn* column_name; GError *error = NULL; static EditMenuDialog widgets; GtkBuilder* builder; if (is_print_edit_menu_form_opened) return; builder = gtk_builder_new (); GError *err = NULL; if(0 == gtk_builder_add_from_file (builder, DATADIR GUAKE_INDICATOR_DATADIR "/gi_edit_menu_dialog.glade", &err)) { fprintf(stderr, "[print_edit_menu_form]: Error adding build from file. Error: %s\n", err->message); return ; } // get widget data references from glade file widgets.window = GTK_WIDGET (gtk_builder_get_object (builder, "edit_menu_window")); widgets.entry_menu_name = GTK_WIDGET (gtk_builder_get_object (builder, "entry_menu_name")); widgets.entry_tab_name = GTK_WIDGET (gtk_builder_get_object (builder, "entry_tab_name")); widgets.entry_command = GTK_WIDGET (gtk_builder_get_object (builder, "entry_command")); widgets.cb_show_guake = GTK_WIDGET (gtk_builder_get_object (builder, "cb_show_guake")); widgets.current_guake_tab = GTK_WIDGET (gtk_builder_get_object (builder, "current_guake_tab")); widgets.new_guake_tab = GTK_WIDGET (gtk_builder_get_object (builder, "new_guake_tab")); widgets.existing_guake_tab = GTK_WIDGET (gtk_builder_get_object (builder, "existing_guake_tab")); widgets.nth_guake_tab = GTK_WIDGET (gtk_builder_get_object (builder, "nth_guake_tab")); GtkObject * adj = gtk_adjustment_new( 0,0,99,1,1,0); gtk_spin_button_set_adjustment(GTK_SPIN_BUTTON(widgets.nth_guake_tab),GTK_ADJUSTMENT(adj)); widgets.existing_guake_tab_named=GTK_WIDGET (gtk_builder_get_object (builder, "existing_guake_tab_named")); widgets.named_guake_tab = GTK_WIDGET (gtk_builder_get_object (builder, "named_guake_tab")); widgets.lfcr = GTK_WIDGET (gtk_builder_get_object (builder, "lfcr")); widgets.guakeindicatorscript = GTK_WIDGET (gtk_builder_get_object (builder, "guakeindicatorscript")); widgets.btn_edit_menu_remove = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_remove")); widgets.btn_edit_menu_save = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_save")); widgets.btn_edit_menu_add_group = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_add_group")); widgets.btn_edit_menu_add_host = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_add_host")); widgets.btn_edit_menu_add_host_label = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_add_host_lbl")); widgets.btn_edit_menu_add_group_label = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_add_group_lbl")); widgets.btn_build_cmd = GTK_WIDGET (gtk_builder_get_object (builder, "btn_build_cmd")); widgets.btn_edit_menu_export = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_export")); widgets.btn_edit_menu_close_dialog = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_close_dialog")); widgets.action=action; widgets.user_data=user_data; widgets.status = STATUS_EDIT; // remove button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_remove), "clicked",G_CALLBACK (remove_edit_menu),&widgets); // save button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_save), "clicked",G_CALLBACK (save_edit_menu),&widgets); // cancel button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_close_dialog), "clicked",G_CALLBACK (close_dialog),&widgets); // add group button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_add_group), "clicked",G_CALLBACK (add_group),&widgets); // add host button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_add_host), "clicked",G_CALLBACK (add_host),&widgets); // add host label button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_add_host_label), "clicked",G_CALLBACK (add_host_label),&widgets); // add group label button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_add_group_label), "clicked",G_CALLBACK (add_group_label),&widgets); // add export button g_signal_connect (G_OBJECT (widgets.btn_edit_menu_export), "clicked",G_CALLBACK (export),&widgets); // set signal for clearing gtkentry g_signal_connect (G_OBJECT (widgets.entry_menu_name), "icon-press",G_CALLBACK (clear_gtkentry),&widgets); g_signal_connect (G_OBJECT (widgets.entry_tab_name), "icon-press",G_CALLBACK (clear_gtkentry),&widgets); //set expand and collapse triggers GtkWidget* expandwidget = GTK_WIDGET (gtk_builder_get_object (builder, "expand")); g_signal_connect (G_OBJECT (expandwidget), "button-release-event",G_CALLBACK (expand),&widgets); GtkWidget* collapsewidget = GTK_WIDGET (gtk_builder_get_object (builder, "collapse")); g_signal_connect (G_OBJECT (collapsewidget), "button-release-event",G_CALLBACK (collapse),&widgets); //set ctrl+s keyboard shortcut for entry command g_signal_connect (G_OBJECT (widgets.entry_command), "key_press_event", G_CALLBACK (manage_ctrl_s), &widgets); // move button // top button widgets.topButton = GTK_WIDGET (gtk_builder_get_object(builder,"btn_edit_top")); g_signal_connect (G_OBJECT (widgets.topButton), "clicked",G_CALLBACK (move_top),&widgets); // up button widgets.upButton = GTK_WIDGET (gtk_builder_get_object(builder,"btn_edit_up")); g_signal_connect (G_OBJECT (widgets.upButton), "clicked",G_CALLBACK (move_up),&widgets); // down button widgets.downButton = GTK_WIDGET (gtk_builder_get_object(builder,"btn_edit_down")); g_signal_connect (G_OBJECT (widgets.downButton), "clicked",G_CALLBACK (move_down),&widgets); // bottom button widgets.bottomButton = GTK_WIDGET (gtk_builder_get_object(builder,"btn_edit_bottom")); g_signal_connect (G_OBJECT (widgets.bottomButton), "clicked",G_CALLBACK (move_bottom),&widgets); // build cmd button g_signal_connect (G_OBJECT (widgets.btn_build_cmd), "clicked",G_CALLBACK (print_select_custom_form),&widgets); // Start of treeview // treestore widgets.tree_store = gtk_tree_store_new(N_COLUMNS, G_TYPE_POINTER,GDK_TYPE_PIXBUF,G_TYPE_STRING); // treeview widgets.tree_view = GTK_WIDGET (gtk_builder_get_object(builder,"edit_menu_treeview")); /* Set treeview as the source of the Drag-N-Drop operation */ if (DND_DISABLED!=TRUE) { static const GtkTargetEntry drag_targets = { "STRING", GTK_TARGET_SAME_APP,0 }; /** it doesn't work well for now disabled **/ gtk_drag_source_set(widgets.tree_view,GDK_BUTTON1_MASK, &drag_targets,1, GDK_ACTION_COPY|GDK_ACTION_MOVE); gtk_drag_dest_set(widgets.tree_view,GTK_DEST_DEFAULT_ALL,&drag_targets,1, GDK_ACTION_COPY|GDK_ACTION_MOVE); /* Attach a "drag-data-get" signal to send out the dragged data */ g_signal_connect (widgets.tree_view, "drag-motion",G_CALLBACK (drag_motion_handl), &widgets); g_signal_connect (widgets.tree_view, "drag-begin",G_CALLBACK (drag_begin_handl), &widgets); g_signal_connect (widgets.tree_view, "drag-end",G_CALLBACK (drag_end_handl), &widgets); } // Handling copy cut and paste popup menu g_signal_connect(widgets.tree_view, "button-press-event", (GCallback) view_onButtonPressed, &widgets); g_signal_connect(widgets.tree_view, "popup-menu", (GCallback) view_onPopupMenu, &widgets); // cell cell_name = gtk_cell_renderer_text_new(); widgets.labelicon = gdk_pixbuf_new_from_file (DATADIR GUAKE_INDICATOR_DATADIR "/labelicon.png",&error); if (error) { g_warning ("Could not load icon: %s\n", error->message); g_error_free(error); error = NULL; return; } widgets.hosticon = gdk_pixbuf_new_from_file (DATADIR GUAKE_INDICATOR_DATADIR "/hosticon.png",&error); if (error) { g_warning ("Could not load icon: %s\n", error->message); g_error_free(error); error = NULL; return; } widgets.hostgroupicon = gdk_pixbuf_new_from_file (DATADIR GUAKE_INDICATOR_DATADIR "/hostgroupicon.png",&error); if (error) { g_warning ("Could not load icon: %s\n", error->message); g_error_free(error); error = NULL; return; } column_name=gtk_tree_view_column_new(); gtk_tree_view_column_set_title(column_name, "Name"); GtkCellRenderer *renderer; renderer = gtk_cell_renderer_pixbuf_new(); gtk_tree_view_column_pack_start(column_name, renderer, FALSE); gtk_tree_view_column_set_attributes(column_name, renderer,"pixbuf", COL_ICON,NULL); gtk_tree_view_column_pack_start(column_name, cell_name, TRUE); gtk_tree_view_column_set_attributes(column_name, cell_name,"text", NAME_COLUMN,NULL); gtk_tree_view_append_column(GTK_TREE_VIEW (widgets.tree_view), column_name); // Fetch data from the cfg file if (check_xml_cfg_file_presence()) widgets.grouphostlist = read_xml_cfg_file(); else widgets.grouphostlist = read_json_cfg_file(NULL); reload_model_view(&widgets); // store the callback function "selection_func" for the selection GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widgets.tree_view)); gtk_tree_selection_set_select_function(selection, selection_func, (gpointer)&widgets,NULL); // manage the double click event that causes the row to auto expand g_signal_connect(widgets.tree_view, "row-activated", (GCallback) view_onRowActivated, NULL); // manage the right key press event that causes the row to auto expan g_signal_connect(widgets.tree_view, "key_press_event", (GCallback) on_key_press, &widgets); set_widget_sensitivity(&widgets,FALSE); set_new_widget_sensitivity(&widgets,TRUE); g_object_unref (G_OBJECT (builder)); widgets.reset_flag=&is_print_edit_menu_form_opened; g_signal_connect(widgets.window, "destroy",G_CALLBACK(close_dialog), (gpointer)&widgets); gtk_widget_show_all( widgets.window ); is_print_edit_menu_form_opened=TRUE; // move the window on top gtk_window_present(GTK_WINDOW(widgets.window)); return; } void view_onRowActivated (GtkTreeView* treeview,GtkTreePath* path,GtkTreeViewColumn *col,gpointer userdata) { if (gtk_tree_view_row_expanded (treeview,path)==FALSE) gtk_tree_view_expand_row (treeview,path,FALSE); else gtk_tree_view_collapse_row (treeview,path); } // Function to print selected custom glade file void print_select_custom_form(GtkAction* action, gpointer user_data) { GError *err = NULL; static EditMenuDialog widgets; GtkBuilder* builder; GtkCellRenderer *cell_name; GtkTreeViewColumn* column_name; if (is_print_custom_form_opened) return; builder = gtk_builder_new (); if(0 == gtk_builder_add_from_file (builder, DATADIR GUAKE_INDICATOR_DATADIR "/gi_custom_cmd_form.glade", &err)) { fprintf(stderr, "[print_select_custom_form]: Error adding build from file. Error: %s\n", err->message); return ; } widgets.window = GTK_WIDGET (gtk_builder_get_object (builder, "edit_menu_window")); // save button widgets.btn_edit_menu_save = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_save")); g_signal_connect (G_OBJECT (widgets.btn_edit_menu_save), "clicked",G_CALLBACK (call_print_custom_form),&widgets); // refresh button GtkWidget* btn_refresh = GTK_WIDGET (gtk_builder_get_object (builder, "btn_refresh")); g_signal_connect (G_OBJECT (btn_refresh), "clicked",G_CALLBACK (refresh_glade_files),&widgets); g_signal_connect (G_OBJECT (widgets.window), "focus-in-event",G_CALLBACK (refresh_glade_files),&widgets); // download button GtkWidget* btn_download = GTK_WIDGET (gtk_builder_get_object (builder, "btn_download")); g_signal_connect (G_OBJECT (btn_download), "clicked",G_CALLBACK (download_glade_files),&widgets); // form fields linking widgets.entry_command=((EditMenuDialog*) user_data)->entry_command; widgets.entry_menu_name=((EditMenuDialog*) user_data)->entry_menu_name; widgets.entry_tab_name=((EditMenuDialog*) user_data)->entry_tab_name; widgets.cb_show_guake=((EditMenuDialog*) user_data)->cb_show_guake; widgets.new_guake_tab=((EditMenuDialog*) user_data)->new_guake_tab; widgets.lfcr=((EditMenuDialog*) user_data)->lfcr; widgets.guakeindicatorscript=((EditMenuDialog*) user_data)->guakeindicatorscript; // Start of treeview widgets.tree_view = GTK_WIDGET (gtk_builder_get_object(builder,"edit_menu_treeview")); global_tree_view = widgets.tree_store = gtk_tree_store_new(1,G_TYPE_STRING); gtk_tree_view_set_model (GTK_TREE_VIEW (widgets.tree_view), GTK_TREE_MODEL (widgets.tree_store)); cell_name = gtk_cell_renderer_text_new(); column_name = gtk_tree_view_column_new_with_attributes("Plugins", cell_name, "text", 0, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(widgets.tree_view), column_name); refresh_glade_files(NULL,NULL); // store the callback function "gladefile_selection_func" for the selection GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widgets.tree_view)); gtk_tree_selection_set_select_function(selection, gladefile_selection_func, (gpointer)&widgets,NULL); // handle the close signal widgets.reset_flag=&is_print_custom_form_opened; g_signal_connect(widgets.window, "destroy",G_CALLBACK(close_dialog), (gpointer)&widgets); // cancel button widgets.btn_edit_menu_close_dialog = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_close_dialog")); g_signal_connect (G_OBJECT (widgets.btn_edit_menu_close_dialog), "clicked",G_CALLBACK (close_dialog),&widgets); g_object_unref (G_OBJECT (builder)); gtk_widget_show_all( widgets.window ); is_print_custom_form_opened=TRUE; // move the window on top gtk_window_present(GTK_WINDOW(widgets.window)); return; } // Function to print edit menu form window void print_custom_form(GtkAction* action, gpointer user_data) { GError *err = NULL; static EditMenuDialog widgets; GtkBuilder* builder; char* path; builder = gtk_builder_new (); path=checkandcreatedefaultdir(); gchar* fulldirpath=g_strjoin(NULL,path,"/",GUAKE_INDICATOR_PLUGIN_DIR,"/",((EditMenuDialog*)user_data)->selected_glade_file,NULL); free(path); if(0 == gtk_builder_add_from_file (builder,fulldirpath, &err)) { fprintf(stderr, "[print_custom_form]: Error adding build from file. Error: %s\n", err->message); g_free(fulldirpath); return ; } g_free(fulldirpath); widgets.window = GTK_WIDGET (gtk_builder_get_object (builder, "edit_menu_window")); // save button widgets.btn_edit_menu_save = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_save")); g_signal_connect (G_OBJECT (widgets.btn_edit_menu_save), "clicked",G_CALLBACK (build_cmd),&widgets); // cancel button widgets.btn_edit_menu_close_dialog = GTK_WIDGET (gtk_builder_get_object (builder, "btn_edit_menu_close_dialog")); widgets.reset_flag=NULL; g_signal_connect (G_OBJECT (widgets.btn_edit_menu_close_dialog), "clicked",G_CALLBACK (close_dialog),&widgets); // command field widgets.entry_command=((EditMenuDialog*) user_data)->entry_command; //dont' have a selection path, a tree store and a group host lists widgets.selected_path=NULL; widgets.tree_store=NULL; widgets.grouphostlist=NULL; guint index=0; GtkWidget* hbox; widgets.hbox=g_array_new (TRUE, FALSE, sizeof (GtkWidget*)); do { gchar* widget_name=NULL; gchar *indexstr = g_strdup_printf("%i", index); widget_name=g_strjoin(NULL,"hbox",indexstr,NULL); hbox = GTK_WIDGET (gtk_builder_get_object (builder, widget_name)); if (hbox) { g_array_append_val (widgets.hbox, hbox); } index++; g_free(indexstr); g_free(widget_name); }while(hbox); g_object_unref (G_OBJECT (builder)); gtk_widget_show(GTK_WIDGET(widgets.window)); gtk_widget_show_all( widgets.window ); } static void build_cmd ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; GArray* hbox=dialog->hbox; guint count=0; GtkWidget* iterator; gchar* cmd = g_strdup(""); gchar* app; while ( iterator = g_array_index (hbox, GtkWidget*, count)) { GList* children = gtk_container_get_children(GTK_CONTAINER(iterator)); if (children) { GList* data = g_list_next(children); if (data) { if (!g_strcmp0(gtk_widget_get_name(GTK_WIDGET(data->data)),"GtkEntry")) { GtkEntry* widget_data = GTK_ENTRY(data->data); const gchar* name = gtk_buildable_get_name(GTK_BUILDABLE(widget_data)); if (strlen((char*)gtk_entry_get_text(widget_data))) { app=cmd; if (!strncasecmp((char*)name,"empty",strlen("empty"))) cmd=g_strconcat(cmd," '",gtk_entry_get_text(widget_data),"'",NULL); else cmd=g_strconcat(cmd," ",name," ",gtk_entry_get_text(widget_data),NULL); g_free(app); } } else if (!g_strcmp0(gtk_widget_get_name(GTK_WIDGET(data->data)),"GtkCheckButton")) { GtkCheckButton* widget_data = GTK_CHECK_BUTTON(data->data); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget_data))) { app=cmd; cmd=g_strconcat(cmd," ",gtk_buildable_get_name(GTK_BUILDABLE(widget_data)),NULL); g_free(app); } //printf("%s %d\n",gtk_buildable_get_name(GTK_BUILDABLE(widget_data)),gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget_data)));fflush(stdout); } else if (!g_strcmp0(gtk_widget_get_name(GTK_WIDGET(data->data)),"GtkLabel")) { GtkLabel* widget_data = GTK_LABEL(data->data); app=cmd; cmd=g_strconcat(cmd," ",gtk_buildable_get_name(GTK_BUILDABLE(widget_data)),NULL); g_free(app); } } g_list_free(children); } count++; } gtk_widget_destroy(dialog->window); TEXTVIEW_SET_TEXT(GET_ENTRY_COMMAND(dialog),cmd) g_free(cmd); return; } // This function is called each time one item of the gtk treeview has been selected gboolean selection_func (GtkTreeSelection *selection, GtkTreeModel *model, GtkTreePath *path, gboolean path_currently_selected, gpointer userdata) { GtkTreeIter iter; EditMenuDialog* widgets = (EditMenuDialog*)userdata; gpointer* host; if (gtk_tree_model_get_iter(model, &iter, path) && !path_currently_selected) { gtk_tree_model_get(model, &iter, ID_COLUMN, &host, -1); gchar* pathstring=gtk_tree_path_to_string(path); set_selected_path(widgets,pathstring); g_free(pathstring); if (widgets->status == STATUS_EDIT) { switch( gtk_tree_path_get_depth(path) ) { case 1: // A hostgroup has been selected // Enable all widgets with host retreived data set_widget_sensitivity(widgets,TRUE); activate_label_sensitivity(widgets); ENTRY_SET_TEXT(GET_ENTRY_MENUNAME(widgets),((HostGroup*)host)->title) ENTRY_SET_TEXT(GET_ENTRY_TABNAME(widgets),NULL) TEXTVIEW_SET_TEXT(GET_ENTRY_COMMAND(widgets),"") gtk_toggle_button_set_active((GtkToggleButton *)widgets->cb_show_guake,0); gtk_toggle_button_set_active((GtkToggleButton *)widgets->lfcr,0); gtk_toggle_button_set_active((GtkToggleButton *)widgets->guakeindicatorscript,0); widgets->selected_hostgroup=(HostGroup*)host; widgets->selected_host=NULL; break; case 2: // A host has been selected set_widget_sensitivity(widgets,TRUE); ENTRY_SET_TEXT(GET_ENTRY_MENUNAME(widgets),((Host*)host)->menu_name) ENTRY_SET_TEXT(GET_ENTRY_TABNAME(widgets),((Host*)host)->tab_name) // use get_guake_cmd for backward compatibility (up until guake 0.4) gchar* cmd = get_guake_cmd((Host*)host); TEXTVIEW_SET_TEXT(GET_ENTRY_COMMAND(widgets),cmd) if ( ((Host*)host)->dont_show_guake && !strcmp(((Host*)host)->dont_show_guake,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)widgets->cb_show_guake,1); else gtk_toggle_button_set_active( (GtkToggleButton *)widgets->cb_show_guake,0 ); if ( ((Host*)host)->lfcr && !strcmp(((Host*)host)->lfcr,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)widgets->lfcr,1); else gtk_toggle_button_set_active( (GtkToggleButton *)widgets->lfcr,0 ); if ( ((Host*)host)->guakeindicatorscript && !strcmp(((Host*)host)->guakeindicatorscript,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)widgets->guakeindicatorscript,1); else gtk_toggle_button_set_active( (GtkToggleButton *)widgets->guakeindicatorscript,0 ); gchar* open_in_tab=((Host*)host)->open_in_tab; gboolean named=((Host*)host)->open_in_tab_named; if (open_in_tab==NULL || (atol((char*)open_in_tab)<0 && named==FALSE)) { if (open_in_tab && atol((char*)open_in_tab)==-1) { gtk_toggle_button_set_active( (GtkToggleButton *)widgets->new_guake_tab,0); gtk_toggle_button_set_active( (GtkToggleButton *)widgets->current_guake_tab,1); } else { gtk_toggle_button_set_active( (GtkToggleButton *)widgets->new_guake_tab,1); gtk_toggle_button_set_active( (GtkToggleButton *)widgets->current_guake_tab,0); } gtk_toggle_button_set_active( (GtkToggleButton *)widgets->existing_guake_tab,0); gtk_entry_set_text(GTK_ENTRY(widgets->nth_guake_tab),"0"); gtk_entry_set_text(GTK_ENTRY(widgets->named_guake_tab),""); } else { gtk_toggle_button_set_active( (GtkToggleButton *)widgets->new_guake_tab,0); if (named==FALSE) { gtk_toggle_button_set_active( (GtkToggleButton *)widgets->existing_guake_tab,1); gtk_toggle_button_set_active( (GtkToggleButton *)widgets->existing_guake_tab_named,0); gtk_entry_set_text(GTK_ENTRY(widgets->nth_guake_tab),open_in_tab); gtk_entry_set_text(GTK_ENTRY(widgets->named_guake_tab),""); } else { gtk_toggle_button_set_active( (GtkToggleButton *)widgets->existing_guake_tab,0); gtk_toggle_button_set_active( (GtkToggleButton *)widgets->existing_guake_tab_named,1); gtk_entry_set_text(GTK_ENTRY(widgets->nth_guake_tab),"0"); gtk_entry_set_text(GTK_ENTRY(widgets->named_guake_tab),open_in_tab); } } // disable selection by tab name if the dbus interface is not read (guake has not been patched) gchar* name; if (guake_getgtktabname(0,&name)==FALSE) { gtk_widget_set_sensitive(widgets->existing_guake_tab_named,FALSE); gtk_widget_set_sensitive(widgets->named_guake_tab,FALSE); GtkTooltips *tooltip; tooltip = gtk_tooltips_new (); gtk_tooltips_set_tip (tooltip, widgets->named_guake_tab,GUAKE_INDICATOR_DBUS_GTKLABEL_MISSING_ERRMSG, NULL); gtk_tooltips_set_tip (tooltip, widgets->existing_guake_tab_named, GUAKE_INDICATOR_DBUS_GTKLABEL_MISSING_ERRMSG, NULL); } else g_free(name); widgets->selected_host=(Host*)host; widgets->selected_hostgroup=NULL; if (((Host*)host)->label) { activate_label_sensitivity(widgets); } g_free(cmd); break; default: break; } } else { switch( gtk_tree_path_get_depth(path) ) { case 1: widgets->selected_hostgroup=(HostGroup*)host; widgets->selected_host=NULL; break; case 2: widgets->selected_host=(Host*)host; widgets->selected_hostgroup=NULL; break; } } } return TRUE; /* allow selection state to change */ } static void close_dialog ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; if (dialog->tree_store) g_object_unref (dialog->tree_store); set_selected_path(dialog,NULL); if (dialog->grouphostlist) grouphostlist_free(dialog->grouphostlist); gtk_widget_hide(GTK_WIDGET(dialog->window)); if (dialog->reset_flag) *dialog->reset_flag=FALSE; return ; } // Function behind remove button static void remove_edit_menu ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; switch (dialog->status) { case 0: if (dialog->selected_host) { Host* deletehost = dialog->selected_host; // Delete host in first position if (deletehost->previous==NULL) { deletehost->parent->hostarray=dialog->selected_host->next; host_free(dialog->selected_host); } else { deletehost->previous->next=dialog->selected_host->next; host_free(dialog->selected_host); } free(dialog->selected_host); write_and_reload(dialog,"Host removed successfully"); } else { // Deny "root node" removal if (dialog->selected_hostgroup->title==NULL) { error_modal_box ("You can't remove the Root node"); return; } // Get the root grouphost guint count = 0; guint root_index=-1; HostGroup* iterator; while ( iterator = g_array_index (dialog->grouphostlist, HostGroup*, count)) { if (iterator->title==NULL) { root_index = get_grouphost_index(dialog->grouphostlist,iterator); break; } count++; } if (root_index>=0) { // Delete the open_all host Host* ptr; for (ptr=dialog->selected_hostgroup->hostarray;ptr;ptr=ptr->next) { if (ptr->next && ptr->next->open_all) { host_free(ptr->next); free(ptr->next); ptr->next=NULL; } } HostGroup* root = (HostGroup*)g_array_index (dialog->grouphostlist, HostGroup*, root_index); if (root->hostarray==NULL) root->hostarray=dialog->selected_hostgroup->hostarray; else { for (ptr=root->hostarray;ptr;ptr=ptr->next) { if (ptr->next==NULL) { ptr->next = dialog->selected_hostgroup->hostarray; break; } } } } guint index = get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup); hostgroup_free(dialog->selected_hostgroup); g_array_remove_index(dialog->grouphostlist,index); free(dialog->selected_hostgroup); write_and_reload(dialog,"Hostgroup removed successfully"); } case 1: // cancel add group case 2: // cancel add host case 3: // cancel host label case 4 : // cancel group label set_widget_sensitivity(dialog,FALSE); unselect_treeview(dialog); set_new_widget_sensitivity(dialog,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Remove"); break; default: break; } dialog->status = STATUS_EDIT; } static void add_group ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; // clear all field, enable required field clear_widget(dialog); activate_grouphosts_sensitivity(dialog); unselect_treeview(dialog); // enable only save button gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Cancel"); dialog->status = STATUS_ADD_GROUP; } static void add_host ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; clear_widget(dialog); set_widget_sensitivity(dialog,FALSE); unselect_treeview(dialog); // enable only save button set_form_widget_sensitivity(dialog,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_export,FALSE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Cancel"); gtk_toggle_button_set_active( (GtkToggleButton *)dialog->new_guake_tab,1); // disable selection by tab name if the dbus interface is not read (guake has not been patched) gchar* name; if (guake_getgtktabname(0,&name)==FALSE) { gtk_widget_set_sensitive(dialog->existing_guake_tab_named,FALSE); gtk_widget_set_sensitive(dialog->named_guake_tab,FALSE); GtkTooltips *tooltip; tooltip = gtk_tooltips_new (); gtk_tooltips_set_tip (tooltip, dialog->named_guake_tab,GUAKE_INDICATOR_DBUS_GTKLABEL_MISSING_ERRMSG, NULL); gtk_tooltips_set_tip (tooltip, dialog->existing_guake_tab_named, GUAKE_INDICATOR_DBUS_GTKLABEL_MISSING_ERRMSG, NULL); } else g_free(name); dialog->status = STATUS_ADD_HOST; } static void add_group_label ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); // clear all field, enable required field clear_widget(dialog); activate_grouphosts_sensitivity(dialog); unselect_treeview(dialog); // enable only save button gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Cancel"); dialog->status = STATUS_ADD_GROUP_LABEL; } static void add_host_label ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); // clear all field, enable required field clear_widget(dialog); activate_grouphosts_sensitivity(dialog); unselect_treeview(dialog); // enable only save button gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Cancel"); dialog->status = STATUS_ADD_HOST_LABEL; } static void export ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* widgets = (EditMenuDialog*) user_data; GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new ("Save File", GTK_WINDOW(widgets->window), GTK_FILE_CHOOSER_ACTION_SAVE, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL); gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog), TRUE); if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) { char *filename; Host* head; filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); GArray* exportarrray = g_array_new (TRUE, FALSE, sizeof (HostGroup*)); HostGroup* hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); Host* newhost = create_new_host(hostgroup, head, widgets->selected_host->menu_name, widgets->selected_host->tab_name, widgets->selected_host->command_after_login, widgets->selected_host->dont_show_guake&&!strcasecmp((char*)widgets->selected_host->dont_show_guake,"yes")?TRUE:FALSE, NULL, FALSE, widgets->selected_host->lfcr&&!strcasecmp((char*)widgets->selected_host->lfcr,"yes")?TRUE:FALSE, widgets->selected_host->guakeindicatorscript&&!strcasecmp((char*)widgets->selected_host->guakeindicatorscript,"yes")?TRUE:FALSE, FALSE, FALSE); head=host_queue(head,newhost); hostgroup->hostarray=head; g_array_append_val (exportarrray, hostgroup); write_xml_cfg_file_from_file(exportarrray,filename); char* msg; asprintf(&msg,"Export to file %s complete",filename); guake_notify("Guake indicator",msg); free(msg); g_free (filename); } gtk_widget_destroy (dialog); } // Function to handle the edit button static void save_edit_menu ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; switch (dialog->status) { case STATUS_EDIT: // save edit item { // if root menu: if ( !g_strcmp0(dialog->selected_path,"0")) { error_modal_box ("You're not allowed to save root menu"); return; } if (!strlen((char*)gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog)))) { error_modal_box ("Menu name is blank"); return ; } // A host object has been selected so a Host* object will be updated if (dialog->selected_host) { // Only for backward compatibility UPDATE_ENTRY(dialog->selected_host->hostname,NULL) UPDATE_ENTRY(dialog->selected_host->login,NULL) UPDATE_ENTRY(dialog->selected_host->remote_command,NULL) UPDATE_ENTRY(dialog->selected_host->x_forwarded,NULL) UPDATE_ENTRY(dialog->selected_host->menu_name,gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog))) UPDATE_ENTRY(dialog->selected_host->tab_name,gtk_entry_get_text(GET_ENTRY_TABNAME(dialog))) gchar* text; GET_GTKVIEW_TEXT(GET_ENTRY_COMMAND(dialog),text) UPDATE_ENTRY(dialog->selected_host->command_after_login,text) g_free(text); UPDATE_ENTRY(dialog->selected_host->dont_show_guake,gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_SHOWGUAKE(dialog))?"yes":"no") if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETAB(dialog))) { UPDATE_ENTRY(dialog->selected_host->open_in_tab,gtk_entry_get_text(GET_ENTRY_NTHGUAKETAB(dialog))) dialog->selected_host->open_in_tab_named=FALSE; } else if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETABNAMED(dialog))) { UPDATE_ENTRY(dialog->selected_host->open_in_tab,gtk_entry_get_text(GET_ENTRY_NAMEDGUAKETAB(dialog))) dialog->selected_host->open_in_tab_named=TRUE; } else if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETABCURRENT(dialog))) { UPDATE_ENTRY(dialog->selected_host->open_in_tab,"-1") } else { dialog->selected_host->open_in_tab_named=FALSE; dialog->selected_host->open_in_tab=NULL; } UPDATE_ENTRY(dialog->selected_host->lfcr,gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_LFCR(dialog))?"yes":"no") UPDATE_ENTRY(dialog->selected_host->guakeindicatorscript,gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_GUAKEINDICATORSCRIPT(dialog))?"yes":"no") write_and_reload(dialog,"Host saved successfully"); // if the "open in nth guake tab" option is selected i check if the dbus call to the tab counter succeed, if not i warn the user check_guake_get_tab_count(dialog); } // A hostgroup object has been selected so a Host* object will be updated else if (dialog->selected_hostgroup) { UPDATE_ENTRY(dialog->selected_hostgroup->title,gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog))) write_and_reload(dialog,"Host saved successfully"); } else { error_modal_box("Host or Host group not selected"); } break; } case STATUS_ADD_GROUP_LABEL: case STATUS_ADD_GROUP: // add group { if (!strlen((char*)gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog)))) { error_modal_box ("Menu name is blank"); return ; } if (dialog->selected_hostgroup == NULL && dialog->grouphostlist->len ) { error_modal_box ("Select a group first. \nThe new group will be added after the selected group"); return; } // save new group gint groupindex = (dialog->grouphostlist->len ) ? get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup) : -1; HostGroup* newhostgroup=malloc(sizeof(HostGroup)); bzero((void*)newhostgroup,sizeof(HostGroup)); sethostgroupcounterid(newhostgroup); newhostgroup->title=g_strdup((const gchar*)gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog))); if (dialog->status==STATUS_ADD_GROUP_LABEL) newhostgroup->label=TRUE; g_array_insert_val(dialog->grouphostlist,++groupindex,newhostgroup); if (dialog->status==STATUS_ADD_GROUP_LABEL) write_and_reload(dialog,"Label saved successfully"); else write_and_reload(dialog,"Group saved successfully"); set_widget_sensitivity(dialog,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Remove"); break; } case STATUS_ADD_HOST_LABEL: case STATUS_ADD_HOST: // add host { if (!strlen((char*)gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog)))) { error_modal_box ("Menu name is blank"); return ; } if (!dialog->grouphostlist->len) { error_modal_box ("Create a new group first."); return; } if (dialog->selected_hostgroup == NULL && dialog->selected_host == NULL) { error_modal_box ("Select a group or a host.The new host will be placed after the selected element"); return; } // check if the selected hostgroup is a label if (dialog->selected_hostgroup != NULL && dialog->selected_hostgroup->label) { error_modal_box ("Selected host group is a label"); return; } Host* newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->menu_name=strdup(gtk_entry_get_text(GET_ENTRY_MENUNAME(dialog))); if (dialog->status==STATUS_ADD_HOST_LABEL) newhost->label=TRUE; else { newhost->tab_name=strdup(gtk_entry_get_text(GET_ENTRY_TABNAME(dialog))); gchar* text; GET_GTKVIEW_TEXT(GET_ENTRY_COMMAND(dialog),text) newhost->command_after_login=g_strdup(text); g_free(text); if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_SHOWGUAKE(dialog))) newhost->dont_show_guake=strdup("yes"); if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETAB(dialog))) { newhost->open_in_tab_named=FALSE; newhost->open_in_tab=strdup(gtk_entry_get_text(GET_ENTRY_NTHGUAKETAB(dialog))); } else if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETABNAMED(dialog))) { newhost->open_in_tab_named=TRUE; newhost->open_in_tab=strdup(gtk_entry_get_text(GET_ENTRY_NAMEDGUAKETAB(dialog))); } else if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETABCURRENT(dialog))) { newhost->open_in_tab=strdup("-1"); } if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_LFCR(dialog))) newhost->lfcr=strdup("yes"); if (gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_GUAKEINDICATORSCRIPT(dialog))) newhost->guakeindicatorscript=strdup("yes"); } if (dialog->selected_hostgroup) { newhost->next=dialog->selected_hostgroup->hostarray; dialog->selected_hostgroup->hostarray=newhost; } else { if (dialog->selected_host->previous==NULL) { newhost->next=dialog->selected_host->parent->hostarray->next; dialog->selected_host->parent->hostarray->next=newhost; } else { newhost->next=dialog->selected_host->next; dialog->selected_host->next=newhost; } } write_and_reload(dialog,"Host saved successfully"); // if the "open in nth guake tab" option is selected i check if the dbus call to the tab counter succeed, if not i warn the user check_guake_get_tab_count(dialog); set_widget_sensitivity(dialog,FALSE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,TRUE); gtk_button_set_label(GTK_BUTTON(dialog->btn_edit_menu_remove), "Remove"); break; } default: break; } dialog->status = STATUS_EDIT; } // Function to set sensitivity of all entry data widget static void set_widget_sensitivity(EditMenuDialog* dialog,gboolean flag) { set_form_widget_sensitivity(dialog,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_export,flag); set_new_widget_sensitivity(dialog,flag); set_move_widget_sensitivity(dialog,flag); } static void set_form_widget_sensitivity(EditMenuDialog* dialog,gboolean flag) { gtk_widget_set_sensitive(dialog->entry_menu_name,flag); gtk_widget_set_sensitive(dialog->entry_tab_name,flag); gtk_widget_set_sensitive(dialog->entry_command,flag); gtk_widget_set_sensitive(dialog->btn_build_cmd,flag); gtk_widget_set_sensitive(dialog->cb_show_guake,flag); gtk_widget_set_sensitive(dialog->current_guake_tab,flag); gtk_widget_set_sensitive(dialog->new_guake_tab,flag); gtk_widget_set_sensitive(dialog->existing_guake_tab,flag); gtk_widget_set_sensitive(dialog->nth_guake_tab,flag); gtk_widget_set_sensitive(dialog->existing_guake_tab_named,flag); gtk_widget_set_sensitive(dialog->named_guake_tab,flag); gtk_widget_set_sensitive(dialog->lfcr,flag); gtk_widget_set_sensitive(dialog->guakeindicatorscript,flag); } static void set_new_widget_sensitivity(EditMenuDialog* dialog,gboolean flag) { gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_group_label,flag); gtk_widget_set_sensitive(dialog->btn_edit_menu_add_host_label,flag); } static void set_move_widget_sensitivity(EditMenuDialog* dialog,gboolean flag) { gtk_widget_set_sensitive(dialog->topButton,flag); gtk_widget_set_sensitive(dialog->upButton,flag); gtk_widget_set_sensitive(dialog->downButton,flag); gtk_widget_set_sensitive(dialog->bottomButton,flag); } static void activate_grouphosts_sensitivity(EditMenuDialog* dialog) { set_widget_sensitivity(dialog,FALSE); gtk_widget_set_sensitive(dialog->entry_menu_name,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); } static void activate_label_sensitivity(EditMenuDialog* dialog) { set_form_widget_sensitivity(dialog,FALSE); gtk_widget_set_sensitive(dialog->entry_menu_name,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_save,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_remove,TRUE); gtk_widget_set_sensitive(dialog->btn_edit_menu_export,FALSE); } static void clear_widget(EditMenuDialog* dialog) { ENTRY_SET_TEXT(GET_ENTRY_MENUNAME(dialog),NULL) ENTRY_SET_TEXT(GET_ENTRY_TABNAME(dialog),NULL) TEXTVIEW_SET_TEXT(GET_ENTRY_COMMAND(dialog),"") gtk_toggle_button_set_active(GET_ENTRY_SHOWGUAKE(dialog),0); gtk_toggle_button_set_active(GET_ENTRY_LFCR(dialog),0); gtk_toggle_button_set_active(GET_ENTRY_GUAKEINDICATORSCRIPT(dialog),0); } static void unselect_treeview(EditMenuDialog* dialog) { // unselect all gtk_tree_selection_unselect_all (gtk_tree_view_get_selection(GTK_TREE_VIEW (dialog->tree_view))); set_selected_path(dialog,NULL); dialog->selected_hostgroup = NULL; dialog->selected_host = NULL; } gchar* get_guake_cmd(Host* host) { gchar* cmd = NULL; // set x_forwarded flag gchar* x_forwarded_flag; if (host->x_forwarded==NULL || g_strcmp0(host->x_forwarded,"yes")) x_forwarded_flag=g_strdup(""); else x_forwarded_flag=g_strdup(" -X "); // get the command if (host->hostname == NULL || !strlen((char*)host->hostname)) cmd = g_strjoin(NULL,host->command_after_login!=NULL?host->command_after_login:"",NULL); else if (host->command_after_login==NULL || !strlen((char*)host->command_after_login)) cmd = g_strjoin(NULL,"ssh"," -l ",host->login," ",host->hostname,NULL); else { if (host->remote_command==NULL || g_strcmp0(host->remote_command,"yes")) cmd = g_strjoin(NULL,"ssh",x_forwarded_flag," -t -l ",host->login," ",host->hostname," '",host->command_after_login,";/bin/bash'",NULL); else cmd = g_strjoin(NULL,"ssh",x_forwarded_flag," -t -l ",host->login," ",host->hostname," ",host->command_after_login,NULL); } g_free(x_forwarded_flag); return cmd; } guint get_grouphost_index(GArray* grouphostlist,HostGroup* hostgroup) { guint count = 0; HostGroup* iterator; while ( iterator = g_array_index (grouphostlist, HostGroup*, count)) { if (!g_strcmp0(iterator->id,hostgroup->id)) return count; count++; } return -1; } guint get_grouphost_size(GArray* grouphostlist) { guint count = 0; HostGroup* iterator; while ( iterator = g_array_index (grouphostlist, HostGroup*, count)) { count++; } return count; } void reload_model_view(EditMenuDialog *dialog) { GtkTreeIter iter; GtkTreeIter iter2; gtk_tree_store_clear(GTK_TREE_STORE(dialog->tree_store)); int j=0; for (j=0;dialog->grouphostlist!=NULL && jgrouphostlist->len;j++) { HostGroup* hostgroup = g_array_index (dialog->grouphostlist, HostGroup* , j); gtk_tree_store_append(dialog->tree_store, &iter, NULL); GdkPixbuf* icon; if (hostgroup->label) icon=dialog->labelicon; else icon=dialog->hostgroupicon; gtk_tree_store_set (dialog->tree_store, &iter, ID_COLUMN,(gpointer*)hostgroup, COL_ICON, icon, NAME_COLUMN, hostgroup->title!=NULL?hostgroup->title:"Root node", -1); Host* ptr=NULL; for (ptr=hostgroup->hostarray;ptr;ptr=ptr->next) { if (ptr->open_all==TRUE) continue; gtk_tree_store_append(dialog->tree_store, &iter2, &iter); if (ptr->label) icon=dialog->labelicon; else icon=dialog->hosticon; gtk_tree_store_set (dialog->tree_store, &iter2, ID_COLUMN,(gpointer*)ptr, COL_ICON, icon, NAME_COLUMN,ptr->menu_name, -1); } } gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->tree_view), GTK_TREE_MODEL (dialog->tree_store)); /* Tell the theme engine we would like differentiated row colour */ gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(dialog->tree_view),TRUE); // TODO expand and select row if (dialog->selected_path !=NULL) { GtkTreeSelection *sel; GtkTreePath *path; sel = gtk_tree_view_get_selection(GTK_TREE_VIEW (dialog->tree_view)); path = gtk_tree_path_new_from_string(dialog->selected_path); if (gtk_tree_path_get_depth(path)>1) { // expand gtk_tree_view_expand_to_path (GTK_TREE_VIEW (dialog->tree_view), path); } gtk_tree_selection_select_path(sel, path); gtk_tree_path_free(path); } unselect_treeview(dialog); set_widget_sensitivity(dialog,FALSE); set_new_widget_sensitivity(dialog,TRUE); } void move_down(GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; // Moving a host if (dialog->selected_host) { //If the host is the last element i can't move it down if (dialog->selected_host->next==NULL || dialog->selected_host->next->open_all ) return; Host* nexthost=dialog->selected_host->next; if (dialog->selected_host->previous==NULL) { dialog->selected_host->next=nexthost->next; dialog->selected_host->parent->hostarray=nexthost; nexthost->next=dialog->selected_host; } else { dialog->selected_host->next=nexthost->next; dialog->selected_host->previous->next=nexthost; nexthost->next=dialog->selected_host; } write_and_reload(dialog,"Host moved down successfully"); } // Hostgroup movedown else { // Get the new hostgroup reference, if it doesn't exist we are at the end so i exit guint index=get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup); if (index+1>=get_grouphost_size(dialog->grouphostlist)) return; g_array_insert_val(dialog->grouphostlist,index+2,dialog->selected_hostgroup); g_array_remove_index(dialog->grouphostlist,index); write_and_reload(dialog,"Hostgroup moved down successfully"); } } void move_up(GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; // Moving a host if (dialog->selected_host) { //If the host is the first element i can't move it up if (dialog->selected_host->previous==NULL || dialog->selected_host->previous->open_all ) return; Host* previoushost=dialog->selected_host->previous; if (previoushost->previous==NULL) { dialog->selected_host->parent->hostarray=dialog->selected_host; previoushost->next=dialog->selected_host->next; dialog->selected_host->next=previoushost; } else { previoushost->previous->next=dialog->selected_host; previoushost->next=dialog->selected_host->next; dialog->selected_host->next=previoushost; } write_and_reload(dialog,"Host moved up successfully"); } // Hostgroup movedown else { // Get the new hostgroup reference, if it doesn't exist we are at the end so i exit guint index=get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup); if (index<=0) return ; g_array_insert_val(dialog->grouphostlist,index-1,dialog->selected_hostgroup); g_array_remove_index(dialog->grouphostlist,index+1); write_and_reload(dialog,"Hostgroup moved up successfully"); } } // move a host or hostgroup on the bottom of the list void move_bottom(GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; // Moving a host if (dialog->selected_host) { //If the host is the last element i can't move it down if (dialog->selected_host->next==NULL || dialog->selected_host->next->open_all ) return; Host* lasthost=dialog->selected_host; while (lasthost->next && lasthost->next->open_all==FALSE) { lasthost=lasthost->next; } if (lasthost==dialog->selected_host) return ; if (dialog->selected_host->previous==NULL) dialog->selected_host->parent->hostarray=dialog->selected_host->next; else dialog->selected_host->previous->next=dialog->selected_host->next; Host* ptr=lasthost->next; lasthost->next=dialog->selected_host; dialog->selected_host->next=ptr; write_and_reload(dialog,"Host moved bottom successfully"); } else { // Get the new hostgroup reference, if it doesn't exist we are at the end so i exit guint index=get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup); if (index+1>=get_grouphost_size(dialog->grouphostlist)) return; g_array_insert_val(dialog->grouphostlist,get_grouphost_size(dialog->grouphostlist),dialog->selected_hostgroup); g_array_remove_index(dialog->grouphostlist,index); write_and_reload(dialog,"Hostgroup moved down successfully"); } } // expand a treeview static void expand(GtkWidget *widget,GdkEvent *event,gpointer user_data ) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; gtk_tree_view_expand_all( GTK_TREE_VIEW(dialog->tree_view)); } // collapse a treeview static void collapse(GtkWidget *widget,GdkEvent *event,gpointer user_data ) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; gtk_tree_view_collapse_all(GTK_TREE_VIEW(dialog->tree_view)); } // move a host or hostgroup on top of the list void move_top(GtkWidget *widget, gpointer user_data ) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; // Moving a host if (dialog->selected_host) { //If the host is the first element i can't move it up if (dialog->selected_host->previous==NULL || dialog->selected_host->previous->open_all ) return; dialog->selected_host->previous->next=dialog->selected_host->next; dialog->selected_host->next=dialog->selected_host->parent->hostarray; dialog->selected_host->parent->hostarray=dialog->selected_host; write_and_reload(dialog,"Host moved top successfully"); } else { // Get the new hostgroup reference, if it doesn't exist we are at the end so i exit guint index=get_grouphost_index(dialog->grouphostlist,dialog->selected_hostgroup); if (index<=0) return ; g_array_insert_val(dialog->grouphostlist,0,dialog->selected_hostgroup); g_array_remove_index(dialog->grouphostlist,index+1); write_and_reload(dialog,"Hostgroup moved top successfully"); } } // Write the current configuration to a file (json and xml), print a message, //reload the configuration from the file and reload the model view for the treeview void write_and_reload(EditMenuDialog* dialog,const char* msg) { dialog->copied_host=NULL; dialog->copied_hostgroup=NULL; write_cfg_file(dialog->grouphostlist); write_xml_cfg_file(dialog->grouphostlist); error_modal_box (msg); reload(dialog->action, dialog->user_data); grouphostlist_free(dialog->grouphostlist); dialog->grouphostlist=read_xml_cfg_file(); reload_model_view(dialog); } // Get all the plugin files into ~/.guake-indicator/plugins GArray* get_custom_glade_files() { char* plugindir; char* pluginpath; GArray* res=g_array_new (TRUE, FALSE, sizeof (char*)); plugindir=checkandcreatedefaultdir(); asprintf(&pluginpath,"%s/%s",plugindir,GUAKE_INDICATOR_PLUGIN_DIR); DIR* dir = opendir(pluginpath); free(pluginpath); free(plugindir); if (dir) { struct dirent* de = 0; while ((de = readdir(dir)) != 0) { if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue; if ((rindex(de->d_name,'.') && !strcmp(rindex(de->d_name,'.'),".glade")) || (rindex(de->d_name,'.') && !strcmp(rindex(de->d_name,'.'),".xml"))) { char* filename=strdup(de->d_name); g_array_append_val(res,filename); } } } closedir(dir); return res; } // Selection funct for the select glade file treeview gboolean gladefile_selection_func (GtkTreeSelection *selection, GtkTreeModel *model, GtkTreePath *path, gboolean path_currently_selected, gpointer userdata) { gpointer* item; GtkTreeIter iter; EditMenuDialog* widgets = (EditMenuDialog*)userdata; if (gtk_tree_model_get_iter(model, &iter, path)) { gtk_tree_model_get(model, &iter, 0, &item, -1); widgets->selected_glade_file=g_strdup((gchar*)item); g_free(item); } return TRUE; } // this function runs after the user has selected a plugin // if the plugin is a glade file it opens another gui (see print_custom_form function) // if the plugin is a xml file it copies data from the plugin file to the guake-indicator gui static void call_print_custom_form ( GtkWidget *widget, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; if (dialog->selected_glade_file==NULL || strlen((char*)dialog->selected_glade_file)==0) { error_modal_box("Select a plugin file"); return; } gtk_widget_destroy(dialog->window); if (!strcmp(rindex((char*)dialog->selected_glade_file,'.'),".glade")) print_custom_form(NULL,user_data); else if (!strcmp(rindex((char*)dialog->selected_glade_file,'.'),".xml")) { char* fulldirpath; asprintf(&fulldirpath,"%s/%s/%s/%s",getenv("HOME"),GUAKE_INDICATOR_DEFAULT_DIR,GUAKE_INDICATOR_PLUGIN_DIR,(char*)dialog->selected_glade_file); GArray* imported_hostlist = read_xml_cfg_file_from_file(fulldirpath); free(fulldirpath); Host* imported_host=((HostGroup*)g_array_index(imported_hostlist,HostGroup*,0))->hostarray; if (GTK_IS_TEXT_VIEW((GtkTextView*)dialog->entry_command)) { TEXTVIEW_SET_TEXT(GET_ENTRY_COMMAND(dialog),imported_host->command_after_login) } if (GTK_IS_ENTRY((GtkEntry*)dialog->entry_tab_name)) { ENTRY_SET_TEXT(GET_ENTRY_TABNAME(dialog),imported_host->tab_name); } if (GTK_IS_ENTRY((GtkEntry*)dialog->entry_menu_name)) { ENTRY_SET_TEXT(GET_ENTRY_MENUNAME(dialog),imported_host->menu_name); } if (GTK_IS_TOGGLE_BUTTON((GtkToggleButton *)dialog->cb_show_guake)) { if ( ((Host*)imported_host)->dont_show_guake && !strcmp(((Host*)imported_host)->dont_show_guake,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)dialog->cb_show_guake,1); else gtk_toggle_button_set_active( (GtkToggleButton *)dialog->cb_show_guake,0 ); } if (GTK_IS_TOGGLE_BUTTON((GtkToggleButton *)dialog->lfcr)) { if ( ((Host*)imported_host)->lfcr && !strcmp(((Host*)imported_host)->lfcr,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)dialog->lfcr,1); else gtk_toggle_button_set_active( (GtkToggleButton *)dialog->lfcr,0 ); } if (GTK_IS_TOGGLE_BUTTON((GtkToggleButton *)dialog->guakeindicatorscript)) { if ( ((Host*)imported_host)->guakeindicatorscript && !strcmp(((Host*)imported_host)->guakeindicatorscript,"yes")) gtk_toggle_button_set_active( (GtkToggleButton *)dialog->guakeindicatorscript,1); else gtk_toggle_button_set_active( (GtkToggleButton *)dialog->guakeindicatorscript,0 ); } gtk_toggle_button_set_active( (GtkToggleButton *)dialog->new_guake_tab,1); grouphostlist_free(imported_hostlist); } return; } static void refresh_glade_files ( GtkWidget *widget, gpointer user_data) { GtkTreeIter iter; GArray* filelist = get_custom_glade_files(); gtk_tree_store_clear(global_tree_view); guint count=0; char* iterator; while ( iterator = g_array_index (filelist, char*, count)) { gtk_tree_store_append(global_tree_view, &iter, NULL); gtk_tree_store_set(global_tree_view, &iter, 0, iterator, -1); count++; free(iterator); } g_array_free(filelist,TRUE); } static void download_glade_files ( GtkWidget *widget, gpointer user_data) { gchar* cmd; cmd=g_strjoin(NULL,"python ",PYTHONDATADIR,GUAKE_INDICATOR_DATADIR,GUAKE_INDICATOR_PLUGIN_MANAGER," ",DATADIR,GUAKE_INDICATOR_DATADIR," &",NULL); if (system(cmd)==-1) error_modal_box("Unable to launch plugin manager"); g_free(cmd); } static void drag_begin_handl (GtkWidget *widget, GdkDragContext *context, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; GtkTreeIter iter; GtkTreeModel *list_store; gpointer* generic_data; GtkTreeSelection *selector; if (dialog->status!=STATUS_EDIT) return ; selector = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget)); gtk_tree_selection_get_selected(selector,&list_store,&iter); gtk_tree_model_get(GTK_TREE_MODEL(dialog->tree_store), &iter, ID_COLUMN, &generic_data, -1); GtkTreePath * path = gtk_tree_model_get_path (GTK_TREE_MODEL(dialog->tree_store),&iter); if (gtk_tree_path_get_depth(path)==1) { dialog->starthostgroupdrag = (HostGroup*) generic_data; dialog->starthostdrag = NULL; } else { dialog->starthostgroupdrag = NULL ; dialog->starthostdrag = (Host*) generic_data; } gtk_tree_view_set_grid_lines(GTK_TREE_VIEW(widget),GTK_TREE_VIEW_GRID_LINES_BOTH); gtk_tree_path_free(path); } static gboolean drag_motion_handl (GtkWidget *widget, GdkDragContext *context, gint x, gint y, guint t,gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; GtkTreeIter iter; GtkTreePath *path; GtkTreeSelection *select; gpointer* generic_data; static int scrolly=0; if (dialog->status!=STATUS_EDIT) return FALSE; gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (widget), x, y-25, &path, 0, 0, 0); if (path==NULL) return FALSE; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); gtk_tree_selection_select_path (select, path); gtk_tree_model_get_iter (GTK_TREE_MODEL(dialog->tree_store),&iter,path); gtk_tree_model_get(GTK_TREE_MODEL(dialog->tree_store), &iter, ID_COLUMN, &generic_data, -1); if (gtk_tree_path_get_depth(path)==1) { if (dialog->starthostdrag && gtk_tree_view_row_expanded (GTK_TREE_VIEW (widget),path)==FALSE) { gtk_tree_view_expand_row (GTK_TREE_VIEW (widget),path,FALSE); } dialog->endhostgroupdrag = (HostGroup*) generic_data; dialog->endhostdrag = NULL; } else if (gtk_tree_path_get_depth(path)==2) { dialog->endhostgroupdrag = NULL ; dialog->endhostdrag = (Host*) generic_data; } if (y>300) { if (scrolly<300) gtk_tree_view_scroll_to_point (GTK_TREE_VIEW (widget),0,scrolly+=15); } else if (y<30) { if (scrolly>0) gtk_tree_view_scroll_to_point (GTK_TREE_VIEW (widget),0,scrolly-=15); } gtk_tree_path_free (path); return TRUE; } static void drag_end_handl (GtkWidget *widget, GdkDragContext *context, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; gtk_tree_view_set_grid_lines(GTK_TREE_VIEW(widget),0); if (dialog->status!=STATUS_EDIT) return ; // Move an hostgroup after another if (dialog->starthostgroupdrag!=NULL && dialog->endhostgroupdrag && dialog->starthostgroupdrag!=dialog->endhostgroupdrag) { guint indexstart=get_grouphost_index(dialog->grouphostlist,dialog->starthostgroupdrag); guint indexend=get_grouphost_index(dialog->grouphostlist,dialog->endhostgroupdrag); if (indexstart-1==indexend) return; g_array_insert_val(dialog->grouphostlist,indexend+1,dialog->starthostgroupdrag); if (indexend>indexstart) g_array_remove_index(dialog->grouphostlist,indexstart); else g_array_remove_index(dialog->grouphostlist,indexstart+1); write_and_reload(dialog,"Hostgroup moved successfully"); } // Move an host after another else if (dialog->starthostdrag!=NULL && dialog->endhostdrag!=NULL && dialog->starthostdrag!=dialog->endhostdrag && dialog->starthostdrag->previous!=dialog->endhostdrag) { Host* ptr = dialog->endhostdrag->next; if (dialog->starthostdrag->previous==NULL) dialog->starthostdrag->parent->hostarray=dialog->starthostdrag->next; else dialog->starthostdrag->previous->next=dialog->starthostdrag->next; dialog->endhostdrag->next=dialog->starthostdrag; dialog->starthostdrag->next=ptr; write_and_reload(dialog,"Host moved successfully"); } // Move an host in first position of a hostgroup else if (dialog->starthostdrag!=NULL && dialog->endhostgroupdrag!=NULL && dialog->endhostgroupdrag->label==FALSE) { if (dialog->starthostdrag->previous==NULL) dialog->starthostdrag->parent->hostarray=dialog->starthostdrag->next; else dialog->starthostdrag->previous->next=dialog->starthostdrag->next; dialog->starthostdrag->next=dialog->endhostgroupdrag->hostarray; dialog->endhostgroupdrag->hostarray=dialog->starthostdrag; write_and_reload(dialog,"Host moved successfully"); } } void clear_gtkentry (GtkEntry* entry,GtkEntryIconPosition icon_pos,GdkEvent *event,gpointer user_data) { gtk_entry_set_text( entry, "" ); } // Expand/collapse a hostgroup when the right/left key is pressed gboolean on_key_press (GtkWidget *widget, GdkEventKey *event, gpointer user_data) { EditMenuDialog* dialog = (EditMenuDialog*) user_data; GtkTreePath *path; switch (event->keyval) { case GDK_Right: path = gtk_tree_path_new_from_string (dialog->selected_path); gtk_tree_view_expand_row (GTK_TREE_VIEW(dialog->tree_view),path,FALSE); gtk_tree_path_free (path); break; case GDK_Left: path = gtk_tree_path_new_from_string (dialog->selected_path); gtk_tree_view_collapse_row (GTK_TREE_VIEW(dialog->tree_view),path); gtk_tree_path_free (path); break; } return FALSE; } // Manage ctrl+s for save host gboolean manage_ctrl_s (GtkWidget *widget, GdkEventKey *event, gpointer user_data) { switch (event->keyval) { case GDK_S: case GDK_s: if (event->state & GDK_CONTROL_MASK) { save_edit_menu ( NULL,user_data); } break; } return FALSE; } void set_selected_path(EditMenuDialog* widgets,gchar* value) { if (widgets->selected_path) { g_free(widgets->selected_path); } if (value) widgets->selected_path=g_strdup(value); else widgets->selected_path=NULL; return ; } // check if guake_tab_count dbus interface is available, if not a warning pops up void check_guake_get_tab_count(EditMenuDialog* dialog) { gint32 numtabs; if ((gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETAB(dialog)) || gtk_toggle_button_get_active((GtkToggleButton*)GET_ENTRY_EXISTINGGUAKETABNAMED(dialog))) && guake_gettabcount(&numtabs)==FALSE) { char msg[1000]; sprintf(msg,"Guake indicator detected a Guake version prior to 0.4.5 (dbus call to get_tab_count failed), it's very likely that this host will be opened in a new tab instead of reusing tab number %s.\nI suggest you upgrading Guake to version 0.4.5 or higher to use this feature",gtk_entry_get_text(GET_ENTRY_NTHGUAKETAB(dialog))); error_modal_box(msg); } } gboolean view_onButtonPressed (GtkWidget *treeview, GdkEventButton *event, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; gpointer host; GtkTreeIter iter; if (dialog->status!=STATUS_EDIT) return FALSE; /* single click with the right mouse button */ if (event->type == GDK_BUTTON_PRESS && event->button == 3) { GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview)); GtkTreePath *path; /* Get tree path for row that was clicked */ if (gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(treeview), (gint) event->x, (gint) event->y, &path, NULL, NULL, NULL)) { gtk_tree_selection_unselect_all(selection); gtk_tree_model_get_iter(GTK_TREE_MODEL (dialog->tree_store), &iter, path); gtk_tree_model_get(GTK_TREE_MODEL (dialog->tree_store), &iter, ID_COLUMN, &host, -1); switch( gtk_tree_path_get_depth(path) ) { case 1: dialog->selected_hostgroup_for_operation=(HostGroup*)host; dialog->selected_host_for_operation=NULL; break; case 2: dialog->selected_host_for_operation=(Host*)host; dialog->selected_hostgroup_for_operation=NULL; break; } gtk_tree_selection_select_path(selection, path); gtk_tree_path_free(path); } view_popup_menu(treeview, event, userdata); } return FALSE; } void view_popup_menu (GtkWidget *treeview, GdkEventButton *event, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; GtkWidget *menu, *copy,*cut,*paste; menu = gtk_menu_new(); copy = gtk_menu_item_new_with_label("Copy"); cut = gtk_menu_item_new_with_label("Cut"); paste = gtk_menu_item_new_with_label("Paste"); // set widget sensitivity gtk_widget_set_sensitive(GTK_WIDGET(paste),dialog->copied_host||dialog->copied_hostgroup?TRUE:FALSE); g_signal_connect(copy, "activate",(GCallback) view_popup_menu_oncopy, userdata); g_signal_connect(cut, "activate",(GCallback) view_popup_menu_oncut, userdata); g_signal_connect(paste, "activate",(GCallback) view_popup_menu_onpaste, userdata); if (dialog->selected_hostgroup_for_operation==NULL) { gtk_menu_shell_append(GTK_MENU_SHELL(menu), copy); gtk_menu_shell_append(GTK_MENU_SHELL(menu), cut); } gtk_menu_shell_append(GTK_MENU_SHELL(menu), paste); gtk_widget_show_all(menu); gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL,(event != NULL) ? event->button : 0,event->time); } // Callback function of copy operations void view_popup_menu_oncopy (GtkWidget *menuitem, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; dialog->type_operation=TRUE; view_popup_menu_onperformcutcopyaction (menuitem,userdata); } // Callback function of cut operations void view_popup_menu_oncut (GtkWidget *menuitem, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; dialog->type_operation=FALSE; view_popup_menu_onperformcutcopyaction (menuitem,userdata); } void view_popup_menu_onperformcutcopyaction (GtkWidget *menuitem, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; if (dialog->selected_host_for_operation) { dialog->copied_host=dialog->selected_host_for_operation; gchar* message=g_strjoin(NULL,"Menu item ",dialog->copied_host->menu_name," stored into the clipboard",NULL); guake_notify("Guake indicator",message ); g_free(message); } else if (dialog->selected_hostgroup_for_operation) { dialog->copied_hostgroup=dialog->selected_hostgroup_for_operation; gchar* message=g_strjoin(NULL,"Menu ",dialog->copied_host->menu_name," stored into the clipboard",NULL); guake_notify("Guake indicator",message ); g_free(message); } else if (dialog->type_operation) error_modal_box("Nothing to copy"); else error_modal_box("Nothing to cut"); } void view_popup_menu_onpaste (GtkWidget *menuitem, gpointer userdata) { EditMenuDialog* dialog = (EditMenuDialog*) userdata; // Manage the copy and paste (duplicate element) if (dialog->type_operation==TRUE) { // Manage the host copy if (dialog->copied_host) { // Create a new host based on the copied element Host*newhost=create_new_host(NULL, NULL, dialog->copied_host->menu_name,dialog->copied_host->tab_name,dialog->copied_host->command_after_login, dialog->copied_host->dont_show_guake&&!strcasecmp(dialog->copied_host->dont_show_guake,"yes")?TRUE:FALSE, dialog->copied_host->open_in_tab, dialog->copied_host->label, dialog->copied_host->lfcr&&!strcasecmp(dialog->copied_host->lfcr,"yes")?TRUE:FALSE, dialog->copied_host->guakeindicatorscript&&!strcasecmp(dialog->copied_host->guakeindicatorscript,"yes")?TRUE:FALSE, dialog->copied_host->open_in_tab_named, FALSE); // Host after another host if (dialog->selected_host_for_operation) { newhost->parent=dialog->selected_host_for_operation->parent; newhost->group_head=dialog->selected_host_for_operation->group_head; newhost->next=dialog->selected_host_for_operation->next; dialog->selected_host_for_operation->next=newhost; write_and_reload(dialog,"Host copied successfully"); } //Host as a first element of a group else if (dialog->selected_hostgroup_for_operation) { newhost->parent=dialog->selected_hostgroup_for_operation; newhost->group_head=newhost; newhost->next=dialog->selected_hostgroup_for_operation->hostarray; dialog->selected_hostgroup_for_operation->hostarray=newhost; write_and_reload(dialog,"Host copied successfully"); } else error_modal_box("Nothing to paste"); } // Manage the hostgroup copy (not implemented because probably useless) else { } } // Manage the cut and paste else { if (dialog->copied_host) { // Host after another host if (dialog->selected_host_for_operation) { Host* ptr = dialog->selected_host_for_operation->next; if (dialog->copied_host->previous==NULL) dialog->copied_host->parent->hostarray=dialog->copied_host->next; else dialog->copied_host->previous->next=dialog->copied_host->next; dialog->selected_host_for_operation->next=dialog->copied_host; dialog->copied_host->next=ptr; write_and_reload(dialog,"Host cut successfully"); } //Host as a first element of a group else if (dialog->selected_hostgroup_for_operation) { if (dialog->copied_host->previous==NULL) dialog->copied_host->parent->hostarray=dialog->copied_host->next; else dialog->copied_host->previous->next=dialog->copied_host->next; dialog->copied_host->next=dialog->selected_hostgroup_for_operation->hostarray; dialog->selected_hostgroup_for_operation->hostarray=dialog->copied_host; write_and_reload(dialog,"Host moved successfully"); } else error_modal_box("Nothing to paste"); } } } gboolean view_onPopupMenu (GtkWidget *treeview, gpointer userdata) { view_popup_menu(treeview, NULL, userdata); return TRUE; } guake-indicator/src/000775 001750 001750 00000000000 12451035035 015003 5ustar00ozzyozzy000000 000000 guake-indicator/ChangeLog000664 001750 001750 00000005006 12451035035 015767 0ustar00ozzyozzy000000 000000 2014-12-31 Alessio Garzi 1.1 release with "open in selected tab" option added 2014-12-24 Alessio Garzi and Francesco Minà 1.0 release with the following features : - switch to xml based configuration file - new gui for configuration file builder - suppressed ssh strongly related commands - command passed to guake now is fully customizable - added plugins managment 2014-07-15 Alessio Garzi * src/Changelog : Start of glade based gui development 2014-06-15 Alessio Garzi * src/COPYING : Changed with correct license 2014-06-15 Alessio Garzi * src/guake-indicator-notify.h : Changed notification icon * src/guake-indicator.c : Check if fopen() fails while opening /proc/#pid#/comm * src/guake-indicator-read-json.c : Fixed memory leaks within read_json_cfg_file() function * src/guake-indicator-write-json.c : Added write json configuration file capabilities * src/guake-indicator-write-json.h : Added write json configuration file capabilities * src/Makefile.am : Added guake-indicator-write-json.c and guake-indicator-write-json.h to guake_indicator_CPPFLAGS * src/guake-indicator-read-json.c : Added dont_show_guake option * src/guake-indicator.h : Added dont_show_guake option * src/guake-indicator.c : Added dont_show_guake option * src/guake-indicator.c : Do now write bin/bash if command_after_login is empty * src/guake-indicator-new-entry.c : New file for configuration file management * src/guake-indicator-new-entry.h : New file for configuration file management * src/guake-indicator-new-group.c : New file for configuration file management * src/guake-indicator-new-group.h : New file for configuration file management * src/guake-indicator-delete-entry.group.c : New file for configuration file management * src/guake-indicator-delete-entry-group.h : New file for configuration file management * src/guake-indicator.h : Added error_modal_box() prototype * src/guake-indicator.h : Added reload prototype (it was mispelled) 2014-05-06 Alessio Garzi * src/Makefile.am : Ereased unnecessary libraries * src/guake-indicator-read-json.c : Removed extra parameter on fprintf inside createdefaultfilecfg() function * src/guake-indicator.h : Added x_forwarded in Host struct to support X FORWARDING * src/guake-indicator-read-json.c : Added support for x_forwarding * src/guake-indicator.c : Added support for x_forwarding guake-indicator/stamp-h1000664 001750 001750 00000000027 12451035035 015570 0ustar00ozzyozzy000000 000000 timestamp for config.h guake-indicator/data/gi_plugin_dialog.glade000664 001750 001750 00000027225 12451035035 021427 0ustar00ozzyozzy000000 000000 700 400 False Guake Indicator Menu Editor False center True False 10 0 in True False 10 4 True False True False True False 0 none True False True False 12 True True automatic automatic in True True 0 True True 6 0 True False <b>Select Plugin:</b> True True True 0 True True 0 True True 0 True False True True False True True True True False True False True False list-add True True 0 True False Add True True 1 True True 0 True True True False True False True False dialog-close True True 0 True False Cancel True True 1 True True 1 False False end 0 False True 1 True False 0.49000000953674316 <b>Plugins:</b> True guake-indicator/data/guake-patch.py000664 001750 001750 00000000307 12451035035 017670 0ustar00ozzyozzy000000 000000 @dbus.service.method(DBUS_NAME, in_signature='i', out_signature='s') def get_gtktab_name(self, tab_index=0): return self.guake.tabs.get_children()[tab_index].get_label() guake-indicator/data/000775 001750 001750 00000000000 12451035035 015125 5ustar00ozzyozzy000000 000000 guake-indicator/COPYING000664 001750 001750 00000043103 12451035035 015250 0ustar00ozzyozzy000000 000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. guake-indicator/src/.deps/guake_indicator-guake-indicator-read-xml.Po000664 001750 001750 00000156453 12451035035 026235 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-read-xml.o: guake-indicator-read-xml.c \ /usr/include/stdc-predef.h guake-indicator.h \ /usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/xlocale.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-xml.h \ /usr/include/libxml2/libxml/parser.h \ /usr/include/libxml2/libxml/xmlversion.h \ /usr/include/libxml2/libxml/xmlexports.h \ /usr/include/libxml2/libxml/tree.h \ /usr/include/libxml2/libxml/xmlstring.h \ /usr/include/libxml2/libxml/xmlregexp.h \ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ /usr/include/libxml2/libxml/valid.h \ /usr/include/libxml2/libxml/xmlerror.h \ /usr/include/libxml2/libxml/list.h \ /usr/include/libxml2/libxml/xmlautomata.h \ /usr/include/libxml2/libxml/entities.h \ /usr/include/libxml2/libxml/encoding.h /usr/include/iconv.h \ /usr/include/libxml2/libxml/xmlIO.h \ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX.h \ /usr/include/libxml2/libxml/xlink.h /usr/include/libxml2/libxml/SAX2.h \ /usr/include/libxml2/libxml/xmlmemory.h \ /usr/include/libxml2/libxml/threads.h \ /usr/include/libxml2/libxml/xpath.h /usr/include/strings.h \ /usr/include/string.h /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/stdc-predef.h: guake-indicator.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-xml.h: /usr/include/libxml2/libxml/parser.h: /usr/include/libxml2/libxml/xmlversion.h: /usr/include/libxml2/libxml/xmlexports.h: /usr/include/libxml2/libxml/tree.h: /usr/include/libxml2/libxml/xmlstring.h: /usr/include/libxml2/libxml/xmlregexp.h: /usr/include/libxml2/libxml/dict.h: /usr/include/libxml2/libxml/hash.h: /usr/include/libxml2/libxml/valid.h: /usr/include/libxml2/libxml/xmlerror.h: /usr/include/libxml2/libxml/list.h: /usr/include/libxml2/libxml/xmlautomata.h: /usr/include/libxml2/libxml/entities.h: /usr/include/libxml2/libxml/encoding.h: /usr/include/iconv.h: /usr/include/libxml2/libxml/xmlIO.h: /usr/include/libxml2/libxml/globals.h: /usr/include/libxml2/libxml/SAX.h: /usr/include/libxml2/libxml/xlink.h: /usr/include/libxml2/libxml/SAX2.h: /usr/include/libxml2/libxml/xmlmemory.h: /usr/include/libxml2/libxml/threads.h: /usr/include/libxml2/libxml/xpath.h: /usr/include/strings.h: /usr/include/string.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/x86_64-linux-gnu/bits/string3.h: guake-indicator/py-compile000775 001750 001750 00000011076 12451035035 016225 0ustar00ozzyozzy000000 000000 #!/bin/sh # py-compile - Compile a Python program scriptversion=2011-06-08.12; # UTC # Copyright (C) 2000-2013 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . if [ -z "$PYTHON" ]; then PYTHON=python fi me=py-compile usage_error () { echo "$me: $*" >&2 echo "Try '$me --help' for more information." >&2 exit 1 } basedir= destdir= while test $# -ne 0; do case "$1" in --basedir) if test $# -lt 2; then usage_error "option '--basedir' requires an argument" else basedir=$2 fi shift ;; --destdir) if test $# -lt 2; then usage_error "option '--destdir' requires an argument" else destdir=$2 fi shift ;; -h|--help) cat <<\EOF Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..." Byte compile some python scripts FILES. Use --destdir to specify any leading directory path to the FILES that you don't want to include in the byte compiled file. Specify --basedir for any additional path information you do want to be shown in the byte compiled file. Example: py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py Report bugs to . EOF exit $? ;; -v|--version) echo "$me $scriptversion" exit $? ;; --) shift break ;; -*) usage_error "unrecognized option '$1'" ;; *) break ;; esac shift done files=$* if test -z "$files"; then usage_error "no files given" fi # if basedir was given, then it should be prepended to filenames before # byte compilation. if [ -z "$basedir" ]; then pathtrans="path = file" else pathtrans="path = os.path.join('$basedir', file)" fi # if destdir was given, then it needs to be prepended to the filename to # byte compile but not go into the compiled file. if [ -z "$destdir" ]; then filetrans="filepath = path" else filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)" fi $PYTHON -c " import sys, os, py_compile, imp files = '''$files''' sys.stdout.write('Byte-compiling python modules...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() if hasattr(imp, 'get_tag'): py_compile.compile(filepath, imp.cache_from_source(filepath), path) else: py_compile.compile(filepath, filepath + 'c', path) sys.stdout.write('\n')" || exit $? # this will fail for python < 1.5, but that doesn't matter ... $PYTHON -O -c " import sys, os, py_compile, imp # pypy does not use .pyo optimization if hasattr(sys, 'pypy_translation_info'): sys.exit(0) files = '''$files''' sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() if hasattr(imp, 'get_tag'): py_compile.compile(filepath, imp.cache_from_source(filepath, False), path) else: py_compile.compile(filepath, filepath + 'o', path) sys.stdout.write('\n')" 2>/dev/null || : # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: guake-indicator/NEWS000664 001750 001750 00000000000 12451035035 014701 0ustar00ozzyozzy000000 000000 guake-indicator/data/icons/256x256/000775 001750 001750 00000000000 12451035035 017201 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/256x256/apps/guake-indicator.png000664 001750 001750 00000117151 12451035035 023726 0ustar00ozzyozzy000000 000000 PNG  IHDR\rfbKGD pHYsIIEtIME  " IDATxg$u&Y}};  A $RE#RH#/ĥH{FьÕvsVQDQ aH$׶lWU̪FNtUfFDFĽ~hmm6Fhmm6Fhmm6Fhmm6Fhmm6ݍ_nգ2FyjD_{ǟhq]wݯAK]6ϭX,t?>D3Gh;70O7޸ootFh;BpP(tY;۵DӶmv@,!.hmۺG!FWgf8Q0F13te"6^a:˲FWg|!F`I ЂXQpEm|R`voI?JFh{nzXGDeYv~oDtx m]6-ѣ+~eY#0F=b`ajjb h4ǹ40BeYkju7޸.᧯qўU/s{mWVU䳦l׎yzsK5s GŧO\|=b Ol۵c.xW3CQ}<σ=<|9qOgmׅ! P*G}dؽHf3zp0=7a5ۘ{z^pԃaPx{܃ge7i}zoWiSA 0 W#|w_PPMItT{$D_FO_;w͑dԵ";ma ƒ_A"·ym8 Z :B3V{ zMjo%rL2> dX|eL1mS[@ذ@ Z||^IgSF² W40d@d> d^r(k{y p_7y`ݨaF ՇY><׆FgI㌘%?4^9{A =_,ݨa卛$8& AKě侭I;gݟGת󰀺PMr wm_σU!<n3h`e?}*6a5c\r=x }yut;*2_GpC C{n @&eozP`ܫܣoJPY;cÊ Wyɾ*{Q7 0@pgo@8$Uot}Moms%n YdƅoeٸZfqgIHq()0C^Ń p}(gUy  }tБo~C?Y< .ZjΛסkh;띋ywfDRz{|.;|sD0 Edh*l}+>{۪pG$CmgX=~p^'rPM}ֳ[w "+D 0ζXjqC>!HH D*GZ R 0f}S,Ԟ2~0@-[,0W^Vw:@lߨʾd dFA"%lТGPJu5:~ fR-a 91G,XHڇ]u7㵳6I}u~ Mh /$0G4 -,jh9yY'T_11 h AA5q>gUWWQ2@K뀠Hu`$xLXrQ6& sIXo B&l9)}\`$P 6HQJQxa+QtÈD@0oT+p .{Xֺ; -c0]$lmDA9AP6}K^ Q M,`W_ĆSmCB{t*=òa$0Y"L 61Πs!PZN#,!¸+QtBXp;8VN73}?>>> 5s?hR @ (XM(Z[&'izܖs2 @캕BA, }8lAxB_?Ag ,$,2М|!grҟ18%M&-KR eb8IX`fDcqYG2Q0t`9g+?/zy09I[f!h[åߍy?:@(H@ &1q(p~2ڐ5Z\ ipCMs`9N 9F[RA\5і=TwNތL=4}%TpJk4e_~zxrv <4}7wx\C mSw~φ6>Ckbbck:^# t[ӡQն6(`bvr0&\߀= l+0t6ћ@D20BO x( T8Yސ2|oSC?ۇyls?r_y_r\r^K?[ 7 ܞs;H#:?K:n,'JL&zCRHH?'Qk~rLj8ōc;VTmy"]\4MJ<5{45HF'bDhcJ0Y3Ҥz7lU7 g' " !Q7{٧\3\%~Pg f8`tlL:BZ3zfygzJ'J T`/{% ?4!f@r BQHF*({X9U%؜)p"\P:q4F_f[[#IOJqjΣW.KQ"RB Xzج)11M 9m4j-UK<7eY2-0]s 4f?fCʋ"HFRJWP ,rL"t3׀U[07喓sW1FS޳`JmlA_K#}ON(}X=BB0 !%SJ6"D[ylVpH2vhSv8E&rg;=6Kk94ϝ,IU汥AK 9.4DH4mst !7o1 giPkU(IgsNnZ:0<$ "آ "L<+Wd @PCʁEv` f=oz Oq3KK3P7a?\GI:>3ua&J\+B)0~:=9Z(nK*cHn`U a"p7z+@ Θi?@O@1X#d9֜M!8ayfED2*@DDFBr`9ʎC&<ll 0plzoX&Sb'ƗW|:WD+uȈd 5zpJzk!rmVqs@XeӚbLr\Ur!M?Y5 cB{(0─۾XI MGE5@j\ٍR}갯0RDAW+_+ڛ_ݘ>?u4eoն%|N$kg!4_Èٹq7眂s\iAh:kx6_GVcp}7O _g٫vC? 5ؑ{7 @2Yl(yhek@bwR@fJ#pˀp7'!~ L, "CyJ MKXMLKKHmcp;zɃ42:0t?'лtxp=fnFIR47|kZY/qIe#Js~΅Op ӄH%7lF=x*ĕc[5y$؟ 9x׏W|Ms݊)AD)ɊM!7ZߪQ*Pиݸs6A0)Xk6`/X7Y k]ЯX ĭ d%T07Ck!|kӑ{Mu=w7"6K\qLt!8;s~>1]dEycZY~5c ʕ֒>C >X8L`PHG[^L=XcSH$:PPMB+a=g6ڎx*A5[PL;5k˭zدz~i$E+ ]5bSWQh|җFҁ&{{mY;p;1K@&] ?κ gaC {~:ݯ1 . ^|HV+@+vڞ{7Hc(=cmwqi[MQj0 ?ix,>d!"HuAIu Sb\H̚ZP2TCQ~//MdjgK7>4Iz:Bڬ6,;mM[k:Lj@0q.dmcYD:L4{Y[? Ql0Pp/@ ּ9T鱌һCGsmVAkfTK)D+i?$"|"!ymZ I&te7h3f<&b PV@ }#;9jQkmZw`3VM=pN,$7Vs m}&$2}AYE 3JDo=VE0dGi k!.F42\;& ; ̽L@7!edfu$z-zΗZZ5ظ$IS룾wJfXFI"ڿSE %x@=w>qH}@YHor&r:ОUGZYGeekVipI#P+׎F="HV4\1(KHᔐĝKq5v@6 P"ȞH=Ma㊽mk=Wu(CoǠ$ &]$5j0hB8iD!4D/YS. Az4UB3ڀvt,1[T= ٸa.11H ˡ?HPt ^GR*߁ڼv"><sOL@_$ nhϦDtm}_3H hEo̐@r)`p2]'˶)@[C!C;Fi"~(7n˴d^'I,AhzU! Ĥǯ= ۅBB,ׇu.a60mF =@6MTd XBJmA:  ~.kC"Ϊ:35G `{Yke*˰KK=D-X!(ݚ2;QɱqLPt,ؖWի-&m@>d_چ澡C>F<`ZktL,V5dTwuPJuA$%H#DFcB^g'0[4hf$%P--Ll- 6G:[MtĀxp4UBѶe][1=VD(/zZ֢F W+mzDvthD:+|1D &"0e83I`M XD(8JE잞@1 (Wwa釨5TjnD .۩ }NܗBيZ 䘅SEl*a˄ Ƕ`v}Dl4 A[KNebA$Qdȹ.IЅFZyUx/ʮu"R"ufWa10rY! ,:JCD@`aT% 7D #@&Ď~\u1_nbHLP/[ 5sNG>F+>Y`O0^P,KQU6/efa l ;kRwjga6Y3BL 9|=S21FdkEcczp,-EAWJhe@Qs,4Ptl03@" %2:ˀ*۟ߗpnK&-aۤ oM0Va[! A7 uf)j-` UvXd(ߦO-ΉhTF<-Jg$`-Ȍ7%3~]@߱e֒ncPD 2hukpc(B 0VPT*0Gv;xl" &ecKhFBt5LdtQ7_'2 q\+3 D93Ï$l Il?0l"7'%N$(XAP&Dz!)'Qֳe ztH""õ=yc47g㺤^/c$#%jn☹0buECNt!AB(eC db,x& tr1֑#ɨcAP*&,oq+drH~!H"- kIKXeoaCЂWA`_7-hƋIMXdC2] Ơ#֫An IDAT[8`o9b#Vpݗl:K/d4,|g}x%d B9|P,lÎ? ˢܤ՞՟sҞZ~B :0gCZ> {Yv8^~X0p ےBuw\"B ?PoXyX))X Xw#v t QZt^b4.ȑo@D 2@`N\D I"̻g c]x F{A(CkM,,7TPkQvA]C?Ӌ8sr/͠PF0:65[½qp77齒 "4cc ✎@ (SG_Yd$LNDd#]@hWHw`R뇹vq"7fop67D "e+5s+u>SrK@F`{,7|z/}==lVhV{qP(⛮%7][@(%訊 \r^Dº8G}hmoچ `@P0E1`I&k)NR6PeR@sh뇨=/7prs-հRuzz[Ƴx|I~ ]<'#;ۮjӽDW LBF5W E-,+.DG(`;0u|9/ h4+Jrϑ%Fd$!cF_uzP26ﳁ!P, Й:0 9~Zj l@HҦ"G`tOWؖKAٿIq(Hd\ЄO[YX2:yY@4O$ "T8P2Nb@Klz75|D\7~[xÝ[&Z! #@2jR @Q#R%(89R;[4A(ML\iO 3S0ˋz^KwSSJJm`g6%nj1ܔNTVL G 0BlH ֎DrMuCz+6k.$8|6|,\X\nVI 2>sj_#p*k5UW^ԩw|)<'6ݖ6u<«nl߷gCo9 2Fy&hZ!PAG(Hx\Y')2򆯯Rd M|#Vd8'k{'4 rlBmP'`e$ jJ~Gq]$9VBzZe7$jx@V"M vA$pxEs+"a8VVvզr8>_Ʌ Wj(7=4Q$S Al}wlKYeen _x!Cމ[n}%<[0Vt0V*zf,TqI}eT$X&N BmbR/",R'yVUۖAt/;CrXз#p$!R7XE7[De3>)/66; !ؙ`N 4 :;d2e .cFmA1=iAOuea͙$H*'^W%(sBV,CɊQo8SnbVpr:u7=՛l.=txbtp jErgfMg7=v[,>o~W]} v؆R(z**0`8p"ףP,Qjs'q`YԀk)/rۯĹoz T5x"()H, $T\?8at#8pgfqV&\kW:y$Y $7G\3h*ElVr?HJ2rXm_r~n~74/0zq_q¶ Xu6?GT8Pű-cL +&n0Zu9;lTfW{pÇ'vMu(v;&;=&ĝ~c5./ֿw܅b(( p-G۱Qp}4J".^}!jK*q!GPڬ$3"Fީʿe[(caIqBr[ˮs'Ri߆P`/1{2sV+%IBq4_2u`v_r,t4i/B9mSӸUTl%BY2,[{P8Smb VlXzhxP~FϕT_zPEUj -[=W?n'K}pbb| jmö-=, cwLOo7eA^Ԗs>&JftۓzMT5aЎMJ"2R8-H Aa?۹DZy)Tjxݠ#-+_[҆16VGsUEsD`D#LMl1_8lˊ,W9Sñ4S*M]A Sw[un@X`4c4#-*2燰j~ojspсJo`۰-+݉/8wǶXwlƁ{Xcx_1x|t*IvQ$\Ԛx_#q@QrެqHVBB؅q.NAS_ǿ5n<8-9}2kmn=q %sYX'+wl6O&r&wr.-A+:UoέMP,q %P#,W]+-BgM~ U3V_uvչ:: ?F@  bXBu{p&} Ϡ` Q\obne8,4PkzܷW@k`p >X<>wݸ抋2XvJ!>O| DnL[4\sE7|k>ǁW\hR g?[?aT+3?8=W x*sKn/RblXŇ & cE% a2xƮKw+w/gKa70H6I=UћkCKPF:ZY`6ʔƠ/A%rld4ʊʐq 8CfDDkq{_C@D  BT>89_ƱU_zjlg䃏\rhu\l'ZC 3dMMPsC/Eԗ-xl2Μo-7p֯AD3s?q=puȀ8PȺ-7d8>'1wƷM;/NQ2[`ūDp\?R1-)DQ꾎-1 u=Xo"Hh@cQAgn2Zi[p96],DgRl~0XCOsY0dXfȲŨ1&# l¡=pϭ AຟCю[Z)|8>Wr +5 _9h^.P`RW#yu|),>fS(.39-'f , 2j6iY6 J-k/sYFef/?h"&wO.0z2ܸ,ˢ1(@@QeB[P#X.?Rյnj^L ohCF0H40-H06dm%(8_}\1L2 D̢J ؖYlBTŷX*7qz+81٥V*M} %p[`oyv ǪN?{>* ̜ ϕ1(Y1upL/L{ O/>ꉒWW~wwcD9ɅÉ%sh_}{ݍR`|NIq+_3X;5ԛ7<,>IR(}.#I6IPg4¢Xp+UK/-7чl=Rfr쇯w|`ev ė۞cvW;J+2l;Rd a[c2.sIX6 bl c,[؇;~螎!Oguj;.;{w**w_O=;OcxI2R$D񿣐dETruw_x86"ߥx=/؂-01Vέ8x4.޿ ߎ}8&JR ډ{S0,Wwwpj~>&""wBx"U6E8+&I_s>^2EKҰ枢cmwZ qH)x.NSx*ЯRQ}}K2X p='vLG?/-޳gWT?(#8E ۑlŽ@!?F̔ߜ=+WftSC`6l2D[JKќz#>UL8s(f5hR(`W. I Y  a(p>2é3Zҋغo;b2e<^J b?pH6s}L0މo?QW,,a; % c&&"a۶||8t-ibd<+jaX !p0ʃSӸ+_C XReӍ^nS=&r~1/p=R^q#ٌB`ERcFY)?+_LY±2j(]xAp=pPAm{?gP]m\{8ruӓun^Ш 4jU ͚FU* e 33s )"s.?QR\'vYk۶u+߂o= aY;[\ЬpnFf# ;{8H q<}n=%2P?SûS-('*}Hmkb"H>0`8Ξt۷ą{ѧEF5$&cN^bAd״8b#k?79fkDw($*l\rmFjϡ`+(1jr'l6Fk.\/Db?4P+>ߋ?e\ʲ߳* " ~ A7 Kq xrv?]|e=F=۷L73ӟ|`Z~ 9h":9O%! Kuum\k.ǒ)s(i9A-n1-'EƶZ9XRI4P}8>SN}T߇KD?`=88\$! Fݵw.LnzR]Eh4Yl*+sJnL_"BfRnm FRJlwOaV5;H"  戇kcglL .ATm,EQJ{K 9؛aYj$ET|OH x CHC¶z ,ڀZA* M[#f S@`]o1u g߄H*9j3K5[eZXJM,per .# " !DP0eJ`q> V;>_)F("_|Qñ5WMrΩ' #4T&XH؂Ghj :fBS௽w?a|%D\>օ7u!}&PQ81Uu?2Ddt#xp!wiض #j'fVp Nήxb `,!p瑸+RԚރ>`jmR^I3${qܪ! gz/Ab϶qaB8 h}߉;NV;F.1c2=5+.8ԉtXA TE9O)e &?;&G<*OZd@gv) WK 8K*6SIcІӈ:mMjW7]}[s 2|Lz=۷Tʼnetz'V0TG?)u/;&\z08\6?+f'\E$+> m. yZrJRCAӃZL@DZQi8=c,#!۲06V$JE<&5ok? > R Mq蚷#RWKCaMXخ ڤN.Hh4Mf*^9,@X4 8 Ii]vJ~_Ն ِb|c8'Zf^Օ`H,ۖƻ OlƢ}DcqNsp6XR?~R ')D.dH ;>mO2|fTk +pP$ p۶OuP*e@ W݌׿Ɵ%+Ʀrԓ9NYK@B72H3e"2fm܎zgr±-/e`@ц}X0;aDC`wòZ~c&c''׮aItF&N+e*3MNBMiZ`rt`Α~݌2È;h*#YV{GVs1nRX*y Hi *jTa+ y/&P,*c[Gy%c_T5p#M v}Q6T{(m*Ӊ@5ʪY]_N4WطMO9LMLӨ}]N}0B`)9fqzJC&YyX!`#a~vJb: t<_Oj6m<*@8]W+B63q'ME4~r*B_{1g*vhi䮫P?/#7aЎȫ! <Pj`S-(ᓀ%B!kzry?*:pʤh&cahL-N!rB]0Y* vm^Wa[ 2O ^Kqj3u G T!h(PO/W91Em&VKo)%(k$0i8e)}-@d"TĠva ,0ryE'&D\U@1I0N(4#{omgY,W,2+s"g%<9V_(ԢNB@c-P"3De[(9>qsD"J3UYqr ͖ 73$G- 1%RCC̑2hɄ9k,QSf\۠TNͅOa@0kp d•Gw}4hXFl!E#Hc Nl_CZO,CHd\Y4VMԐ\AF1#d"X$Pt~ĵ_#< a'{\s1w3+xNή`aj̓!/d) `dHCJݳgS<Av6F]6*ѼO%@U!cE-XG` ]C'3'-FFmHaXBiwqM5+) D#(؊I Q51w+xN̕~[㣿?,,Ys:C}i }@c 8k/ }LE  kOJ 'fx,anJ ly @rfQӇovK\~x0>6Ţ !Auja(]c,7m N7@V ؅Av=ַ |Q'Ƴrtf׌Т)ҡ0&CO)9ʙQ[ `=a^0#")HƜXh̠^*&&nOw~o?Q:*U>slZnd4'˕F}Jz'(v \t ~]?­'H}c)3PRA9@4%- ;/}?s?R-܂>?}V>۶mѣGg|1>'xK} g,']֭[{^o0 jH#3i;mʬiblS:ɷs·Q Aڈ aH-<1ߔCW#>A!"I꣺5%PFDDYz)s-`] Ɗh<ndD B`2R2u4 OO}^}UXx1{eʹr^u:;y78{ z{{ٺe+s'Kw_ynB w}?7r5ײa&N@yyaɒ]dniR8pN|C1j,t#:<cf)hN*1M3BKG?]! &H3hѠxv]qeG?O؋le"_BZZ4؄Աq$ϙg_+ gwxSGy\X|~ÙIē讞-!Z:  O&>18e<%};;vp/ ysX`!ӧO'Lk1A?>#`bnVU@G  ~kq>IԪۈfxAiY&6L!W鰉>2]Z:4wiHw @پk)\s1 g9. R[[E|Ϛ5k喏#|_eʕݻ'Qe˖أ2eT&L@iY)%%%(Bcc#|~3a߾}DAG]}=M zi<ܳs7#qIvqNt,. g;plbI)@^"ƀm`D~EC&eQq'ǻ$ HBf =n̝ }$UITƒI{i 2D=QbD G%9}&>ծ{7suyAu?ֆe)H:::#LRRR U:sOTUVʫs0%466倠uSUU<;!$tRȜ>8yӊ|iא(̒ NF5b n0<QH1S#ĥ|Pc=p/=m.A)]} #l)~ΌEAPSUE} JDt#ȡBJ9d/8@ @ mT`l :uftUSQ^n@^ӦMCJIYi)<HjkZuRf4hSUUe;:oYYVt2+~VN Bٖ aN\M};Bo?ZyP5 H@  Dq[i -(0l\GRW4#$7\+~ !%Ń .Us}t-E>]Oe,CAۃu9?H$$|t P.ci>TAݴ" ! G+ќ bBrގ?]wI[=d/p#F's;,JCF[hH$$QxL (~Iğ hz}| [v$RQ5銈M:@lb;F1~GUXy9|}7}dR/D4@4EO0ʡ0;&9@x0Ilr:>Tx)&K ;vGbYB>sv6;␣3+qչb{;{eaE2I=#9KGץ< d5&#QIǎ":ƀ l_0\CfB1g٦!#PLQcǣ'F<4e؂z|>Vt]3ǘI{\SDs=P K'Ed1mMJ>MЍZ478H{W Az$H&38)*#2\<#pYgO3NXT^~%Vsgb۶mL2M6qqA^|L>9nV.]J<gY{n/8ŋAJٰ~U̜9ifٞ}@ iOfIa]`;6a=+w#Y\8WՈA"bj2TlAOx9J.2Y[OqTF3MU!!-Ÿ9:IOai|/QjDiDh,Mo8FtHQ3 BqpN?!m 465ϓHcɒٲy S&O]wsP(ľ}{oqF˜9shimASUBSNSN-[piQWWǯ+$ӦM#ƛoPZR3PUkHvÐ,@8U|a(q\2.')Tcx#&eo" e7+rgテ錆A`M&m8dEx&OEiI{gb)$cttGhi7B8A4aT+w9s(Vo[ywN3PYY97p#EE~2 5}Y"u108իiuu446PZZJ ˉ D(+-&Isw:EEEx^%% `ڀV1 sdNd#kܐ54SǐKᘜkJgq:#pUAJ FFOxx ǃϫB<tY-8m.߼_w`C7=ߣP[YWkyD=^«}_<&kP|8?%OD.2c zHH{Tnen3CO6 'D.G5&Md|]%3iӦ9Bi1 gɎ)d6W ԥn[}(B-R3гΟyZ[mK& 0rU')U iT<B3Tcl(d2;I$J;}2;=jO6f۰Mci IDAT|BZ4~%b_bSrM<,Oʔ0Vv?fz;A?]xd2FHo 꺎qʌJ|Ŧ5g錩j,$BPh 3FCN!,07kbMŖ󘠥WxMY1k4ZqڂMѬyg_L~~!549C}B%^>;X< L$v_U5 8ݦ~u FF]U1[z{X.ȡTM;6UUU̝;&Z)..b׭c%ϊٱs' 200eu$S)&N믿E]̤ɓؾ};EE#̙3m >QnƂ)*.&(&Ljj^59ގgʔJػg7J{{;MMM466G8!6e >lG6qeyE:9a^D\ XڂRWI+iQ\w͟4A37¬x<"f[~{z`}z v?h}1VyJ wpդe.zPUU&S[[ˡCBQ][K_O{졤GaM]J}1Wc٤):;;Yv-~."z{z9s&{eUl߶W_}k>:;I%/_=>G+\pS&O_㉵k>޳rMMMttvʊ b*++ضm+=,%%=yBk¥ax[PU%Չ̎3i]Ll,Q~`$#E~/W]|%]~sݨW(DJ} }u8x?M~UkG+(dI̱~E..!$ҒpT2s9#uγpڮ`mmmx^R>p8L PL&A^xU̹PF*1M2jjj\y*5Lqt7i}Cr}NgХ̠VVVܹsRRZZJ}}mP6r Bb*++illʻJgpt8sxvu"#$sS|Š m S9؂/_[| ;w^A_aɂ|_$Ow}ҦO0ʡi }U5:徱|Hag K"@xrr y=Ux<(uq a(8FPHF0Fc_1!>٬w˲Rѷ((חWp\bȪ89q}LF%O25<+L_8N,6lA)3>UPL΄"9O[kzIĞKNHP ]qS(UcDX"5Cq[A<]]]"o{ ,]}O~0x088H}}={/SMkqڢE \{ua>,O)  QX'b?೟JR[[˛oI SOeӦM̝;vO?&:%IQ_ߐtH\Ȍ,]CFLG ކ:(.CD6LQ7[b-XYQ>8ՅJ|>KEsvN<,>o$K4b#4Qbjr)@?y {t1 lN [ؤOӤR)nVvɎ;())a< {|_Lotuu{͝{6۵k'Tnd*E*b _Qf͚IBp-p֭[yt:͊+x'Xt"Ν;דJ/JKJGá6uݦ6+ l $MjD#5H4pX8$2Sbo҅dPlu_,6O{_ PQVƷLhpE_ƫ&/7>= oMHg44owL@V WkGQQ@8c:qD'RYYɂ LOEE%O-B]]=D 3o<~?AN? TVVx"ietw.# i\{r -TUUi*!_C[[WnχTUULJbi,]P8̤IL>:ҩ^|1DD"af \j?(d)D AGzq|y:݈RRe0DxMbd z@m! PZz}S/|oK'Ɯ9xDz]d@Ξ-i>gDIc܎h` 0LMo_Y栔,=})V,Ylt̹m%]Nũ`BHdR7ԣiӦ۫ ̛7/?'x^wL8@M:wCJN l+19γ*+@xe JCaB9kc6yb` ZN@2ق[4 ~o>N; i :{h微0=} DR;cX+Yo$ mD']&ma FPQlq!)2$Jj|Hg'h桌U_ysb֤UZ-8!P&)$cwQ) rR/8A2&E  Pl`~d fiƟJ"uGDdJ%MdY~ CozM_(筆Cn2'?~KٸqSNeĉ :%%%<,XR9x O<˗SWWGq !JSQYA<G檫ǎ9 ~E~FITTTOhlhx[o 1q$`ߏ֢ip:"D1c6n .0 %-hyRaW8QVI0gO2Lg^%\lAkdzP3/>@ @4I9`I`` h5caxUƠiӦ {imme˖-W3BSa=~_~Or5碋.'`ҥ[̘>.;vDw^>̟'zjjk}$Iz{/"We:::Xx1,~ETWU(++cᄑ\q[w=Yr7oF4^/.6R4/ o,Hxc8qp-KHqbDDVGQ2o0؂ߧɼ\[`jJr#ā>Z0>7^al(… ٻo+V,gΜ9K83yg馛hhh۷`Bx~{ǿ|TWWUkem\}߿+V 7D}m-Gꫯ&NL(4651cLnF^|%|~? .Ǚ:mŤR)~O?4_0jTM㬳9B#YkmN m 0\yPIHqgh:rB)C$ZYތ CZՈRc4rCA: 'H$TԌ~r+?ri ן_J*-If$d/ϢSJv 8>TWn̿EA׌^zE$ 9΢EvcePUoc N.nbDb"%Q` ߥ\P3\?zbN;1/,e2NfzfOo` ʰEx,gX{RᲒ13V~6֎ xP*|/"zI%*69̝oW؊I$r(w0'u r#lfն98jgAu|\w%?nځqvI(tD;eaG-@&C6QQ ʰHTV" )9TEa͟ȨaW ͇i#6Q]@Mh:FEiZ(G6LI<gѢEB!χGd ֟"HTUUm6x}t:m#RTT ̤(//'HT*@mV&OBYy$Ivl󨬨"fdزu+r b10reؿ ٻgT@K϶b5b\ϖ ]gHhJbkE)]?o&GiT,!S_P bOfcttii>u$3xXmlk¸@N-pl"Pn N{)--e޼y| m:&Lf׮]i3grwׇ45M@Q׳yf~>ϒJE1lB2`ᩧ֛ox7SOm! ԓOPz*VZy'Yr%[m# o_WtvvRVZ͛k> ذa=s=?BY/In{r Q*6V Fl8.!jK)bJ b-ӪOd 9/{P?:szɕUri)>+Vk.En#_YgӀ${.[ncٲel޼ RTTD[[PUVQYYɾR)tM#rEXh1L S[[)N!RQYI0 N[&&Ld2Ů]9cR֯_K/e۶m|>R*˂ d2TTT8'b\* tD4-ap[[(fcPRGy*:m}ud00;5=o=8z.!1AdyVRptíY%K۲ڸb LL&cA)JL1pncd*ef%f#nPAЋWQl~y{T Otzh;m(bʊ*11 TT<@!Q Ѷ[ t#hTТ$IIA B>ijJ(*2Ñ#P?="a裞$/pH|*rZY $,߿?sO0HmM tuv*cxB|r^~fΜɤIRs… Ig2}ak zx^&Mƒ[fΜ{=M7QK)tףHQXVDT:(woe:A D*mO٦^2Nx #tFESr(/KZ'\qZgF;illdŊlڴ7xgz뭼e߾}ttt000Fc|_wS^^Ç9t-Ȓ%wz).R0wr1avimmeY__8q"]wp{ >r L6ʊJ|M~444Egd2>ST\lO ¢:#L ;-;έ|D  AR P5||T]'O G D8.T`r'eRڥm۶@II }}}444PWWǼyxgcƍ,Zg\{L>2CMM L8xj)@MO=Rb(<4:{Z" A%-XӐmm;@W%ˣHY-go{;G]]KFǖXC.ePUlVQwgvtk C1l>Vtj`IJq uh+4rl|b"EjQL%)șL&4TkԘ- 9;Nhiia„ 6E=Mɤ3~;jho׋aú ̙3J p+\G^5 8 d9U4K,}[7E68cRN[oHX||>Ld2IGGx'? &L`]KNٽgHWWAUUطo$ ҙ ]z)s:;5k7x#UUU{9m"89s)--eٲe//sؼi#C:>3m0&'`KUWFƀPCUQQSד<]A,G;Q4Τ8iT;wRYYɡC(..&N3i$>L*B48@,![nEJΝ;A@4(oL(bѢER){9)`} (//g%tI&@Ν;b9|3zSZV h>x3m4<^N@vN?(;kb'vĘA/V! 59\it]_TSU136RƍYtcdzahB^]JWU E[ $(FנC;#2c_f(aɊ;Ѣ d&.v[M4#`r-|#!R\l ~L~2 EEE|>֬Y3<Ê+DQ\s5d~=?BԌ ee|DJIQQ1B!^RRb 7理$W_M,g„ 00BPY8 X<>#WUL*UU),=EXMiNn'1ڮ+ I- ,1jQVV6I]W_mSi _/|S:5Sg:xaI?H{ 0!)% [qHx F*yᇉb\y|k_c\tEO*\pTWU~>_ I,㬳ge͚5D"{90_=o\r f׮]}~-^<̜9nY`X]wss=ywB4)))! QYUEoO/~?'+W7xEQ(..իc֬S)9HlRg59yşK(O2R?6wصыurEiȖ=H9@*n)Sn::::\q<L0?>D>M6?'2c fϞMGG>,李.~CSS/+d رSN9gyΝ=C]]|Cb` Oz\kƁ9ԅ!@Q^/sΥ=;4MW^~SN9J̞=˹mZmJa[z΄[=ӿrS(b/Gh.L@啤U*i̿^)t]CJ)ʪqKʁhhh.yAQRRBee%444δiӈ K,6nr"NJ4eϞ=̝;T*E&R9o<FF!dq u, 'O&'-[&?BS5C--~R^~%Y]]#O(b„ L2YAپcDcT1GVzDW*8< ގHxPt_t q_^I*H.3r@ O([>YڟD]c:t2ohF|'Hi$f#C ( O~(Qz_qv;9'0w_BƘ8A@i]I~3p - 6+LYϛ=6r@C2q/&:t~'99F[G2ܿiE׍ؐ˶ЋG:SCn%!]9l!_ |#!(LhF]]][exWŋ1s&peV.Bz{{ٻw/_S}G$|<ư' {|\K8' Rv`:C7q2ηŪ_7o9Zn^ ޼7T C_x+ qϟO ?)}}}2Ɉ6K;ZZZؼy3_~9`0(k&N9~8SR} 0S 14/&)Bv.徏p S]@| HsHF_H+,gA^1>QPG'-^p PRRQ|AzjV\ D / lYf x=**+ihD"/R1ENxp9) 3w D92~yaX>wE'a3} ukȅ,GRے%KF]@-Zg̙662bc p׈Q0!!:9%i*/a(I{ిIc?U_rc\sA#,!G|N r媑!F } bh.]fyi۝s[+p?ׁlNҒD9/E0^ },+~t\Ʈ~|6 UX%RGD?xǼ|ϽY%ǜ+ bQѩ|qb:vJHmm->,mmmTVVO.nzzzyWH&B!<믳i&^~eN?t~?֭"8c)ӧ/ hɓ'sgCqUWxb/N ۸kYf *;wdɬ}qzl¼yعs'g}6ihh /.2 Hwj\eB}i[iXR{o xGsJO~#F~ѦAF|?X|@ 7 ٲe|>Kee%W_}5;wd̙p뭷2ezAn69ә"={6@}C,\;wm6Vgec$\d7vm*l9d͗R # u/Fv\wnxߙ5i3^)θvt]5[k f|r52WkC>7B~V0 \bӕa{_E̽6<>Con?ANx&s.pن 6~Qgh27c*6BީH.`^_f1KEXC9r#BH'I"Ms*izh&a>ypv5ZY_A  0x9ɳjGjc60|hmFN@5 dQ"p8LQQL&Bx^TUD"t:MQQ2]vXxb0L2$̛7d22J E(0h5kO_znDB4 M}:Vh4ʁعs';v`ʕ̊+(.. //BҥKyꩧd2\… Qr9R*+93˟̔)5kgϦZ? z^K;w݌faV|,F e!{$\ꏩ x U9*I‹?܆gu'637VB'Yځ?ɐN)--}G)(c=ŎBy"<>O DGq 1Vٷk? _e,I![#5Z)5g5|Y]g\gUK,f\ 1YPL#GᏧX Ydz z\%4~HQt:mdSUUtwwE:Fut]df!Xͤ,@=sБ*YtF")Lf 6M[ySGi9rrF{py+Թ$(4q楣_y7UU?Ί+8Xv- ̙3_ל{}v/_믿N"[u](!)//СC\~l޼]vqO|jА<< :<)Z즏 RcYYJ=F_(z?Rt1՞Q-Yt(P2DAKK WkR[[K}}=555DQ|>>EQx>Q¬Yزe ZGs:  Jя mU0FKjR75>5[与+O2wUT@9aV6pbX#B^y> 1 (t?F?g:ǃ;f  #)q]+=Bs! \dNabcI }XXuyHՀ,l{~\ώ& f:6 8Ӂs1GC x$# (J+=dXRLN 1]vJA8 ?՘bՀq|߱ Juo4 YxO:nNR`U5}QiFA9FX nc<Zݏph aB=Dnb綉TT*EqQ] ug11d*E"rFiD ! !Pf=E 'NMPUMCS_S( E;d!7__c+ X8M+̒i^Bxoޛn g]MMUtnJ=DU'}$&!Rkg~.yxzQVQPɮWv|V`#فoE,k& |=9 n]5e~GHlmb cIJ>?t zq,N PRA.6?#J}} >@QB+S[+ guc oA4crIΝWкr {óNn"^OV% Ebh]ؐ}cYŃyk/nAȋߧ<Ž;ϟ$rw=.Oہg9\єUJ4]ʴ*EZIg4tᕋ/RcȆ9 1>9zkqv{Rny"3}^WQ^!L7zk{#zxۓy0 wf=+W$]J4T]Qu4]jU῵Kʭ@U^a>Wx \_iX4|On#CwX װzkD",GRjR ]7s0|@%=~Vˋ$&vpKv8{0 J A {'.~qC7ť_@ZT9P[*Hg˟79~rIqLeh"? r*q۶=`pDG=N8깧`ڨ k% yoƉ3G׈sH^{_QR8I ղʢG\4K%+; *-yiup\L5e,qDe,O{_ŤYcE,>d'*DN}M/?Pv5< @eAJɪu`6-㍌}:p >((2o nIENDB`guake-indicator/src/guake-indicator-read-json.h000664 001750 001750 00000002202 12451035035 022076 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "json.h" #define GUAKE_INDICATOR_DEFAULT_FILEJSON "guake-indicator.json" GArray* json_parse(json_object *); GArray* read_json_cfg_file(char *); char* checkandcreatedefaultdir(); Host* host_queue(Host* ,Host* ); Host* create_host_linkedlist(struct json_object*,int); void sethostcounterid(Host*); void sethostgroupcounterid(HostGroup*); guake-indicator/data/icons/guake-indicator.xpm000664 001750 001750 00000027577 12451035035 022056 0ustar00ozzyozzy000000 000000 /* XPM */ static char * guake_indicator_xpm[] = { "32 32 620 2", " c None", ". c #262626", "+ c #3D3D3D", "@ c #3E3E3E", "# c #656E68", "$ c #6E7B72", "% c #6D7B72", "& c #6D7B71", "* c #6C7A71", "= c #6C7A70", "- c #6B7A70", "; c #6B7A6F", "> c #6B796F", ", c #6A796F", "' c #6A796E", ") c #69796E", "! c #69786E", "~ c #69786D", "{ c #68786D", "] c #68786C", "^ c #5D6A61", "/ c #89A893", "( c #A2CBAF", "_ c #A1CAAD", ": c #A0CAAD", "< c #9FC9AD", "[ c #9FC9AB", "} c #9EC8AB", "| c #9DC8AA", "1 c #9CC7A9", "2 c #9BC7A8", "3 c #9AC6A8", "4 c #99C6A7", "5 c #99C6A6", "6 c #98C5A6", "7 c #97C5A5", "8 c #97C4A4", "9 c #96C4A4", "0 c #95C4A3", "a c #94C3A2", "b c #93C2A1", "c c #92C2A0", "d c #92C1A0", "e c #91C19F", "f c #90C09F", "g c #90C09E", "h c #8FC09D", "i c #749B80", "j c #82A18B", "k c #9AC3A6", "l c #9AC2A6", "m c #99C2A5", "n c #98C1A4", "o c #98C0A4", "p c #97C0A3", "q c #96BFA3", "r c #95C0A2", "s c #94BFA1", "t c #93BEA0", "u c #92BE9F", "v c #92BD9E", "w c #91BC9E", "x c #90BC9D", "y c #8FBC9C", "z c #8EBB9B", "A c #8DBB9B", "B c #8DBA9A", "C c #8CBA99", "D c #8BB999", "E c #8AB898", "F c #8AB897", "G c #89B897", "H c #88B796", "I c #87B796", "J c #87B795", "K c #6D9378", "L c #7C9C85", "M c #93BCA0", "N c #93BC9F", "O c #92BC9E", "P c #92BB9E", "Q c #91BB9D", "R c #90BA9D", "S c #90BA9B", "T c #8EB99B", "U c #8EB99A", "V c #8DB89A", "W c #8CB899", "X c #8CB798", "Y c #8BB798", "Z c #8AB696", "` c #89B596", " . c #88B595", ".. c #87B495", "+. c #87B594", "@. c #86B393", "#. c #85B393", "$. c #85B292", "%. c #84B291", "&. c #83B291", "*. c #81B190", "=. c #82B18F", "-. c #81B18F", ";. c #80B08E", ">. c #80B08D", ",. c #668C71", "'. c #76967F", "). c #8DB699", "!. c #8CB598", "~. c #8BB497", "{. c #8AB496", "]. c #89B396", "^. c #89B395", "/. c #88B294", "(. c #87B293", "_. c #86B193", ":. c #86B192", "<. c #85B191", "[. c #83AF90", "}. c #A4C496", "|. c #F2F3A8", "1. c #F2F3AC", "2. c #F1F3AB", "3. c #F2F3A9", "4. c #BDD397", "5. c #7AA988", "6. c #7CAB89", "7. c #78A886", "8. c #6FA37E", "9. c #527C5E", "0. c #709079", "a. c #86AF92", "b. c #85AE91", "c. c #85AE90", "d. c #84AD90", "e. c #83AD8F", "f. c #82AC8E", "g. c #81AB8D", "h. c #80AB8C", "i. c #7FAA8B", "j. c #7EA98A", "k. c #7CA889", "l. c #AEC892", "m. c #FDFDDC", "n. c #CEDFD5", "o. c #D3E2DA", "p. c #D5E2DC", "q. c #D7E5DE", "r. c #D9E6E0", "s. c #DBE7E2", "t. c #DDE9E4", "u. c #F4F7EF", "v. c #C9D88F", "w. c #5A916B", "x. c #528C62", "y. c #4E895E", "z. c #4F8A5F", "A. c #3E6C4B", "B. c #6A8A73", "C. c #7FA88A", "D. c #7EA78A", "E. c #7EA789", "F. c #7DA688", "G. c #7CA588", "H. c #7BA587", "I. c #7AA586", "J. c #7AA486", "K. c #79A385", "L. c #78A384", "M. c #77A283", "N. c #76A282", "O. c #75A182", "P. c #A9C38E", "Q. c #FBFBD7", "R. c #AAC4B0", "S. c #B0CAB8", "T. c #B4CBBA", "U. c #B8CFBE", "V. c #BAD0BF", "W. c #B7CDBD", "X. c #B4CCBB", "Y. c #E6EEDF", "Z. c #C0D187", "`. c #49835B", " + c #4C865C", ".+ c #3C6848", "++ c #63836D", "@+ c #78A083", "#+ c #77A082", "$+ c #769F82", "%+ c #769E81", "&+ c #749E80", "*+ c #749D7F", "=+ c #739D7F", "-+ c #729C7E", ";+ c #719C7D", ">+ c #719B7C", ",+ c #709A7B", "'+ c #6F9A7B", ")+ c #6D997A", "!+ c #A4BE89", "~+ c #9FBBA7", "{+ c #A7C2AF", "]+ c #A5C0AC", "^+ c #A0BDA8", "/+ c #A0BCA8", "(+ c #A6C1AD", "_+ c #A9C3B1", ":+ c #E4ECDC", "<+ c #BFCF86", "[+ c #467D56", "}+ c #498058", "|+ c #396445", "1+ c #5D7C66", "2+ c #70987C", "3+ c #70987A", "4+ c #6F977A", "5+ c #6E9779", "6+ c #6D9679", "7+ c #6D9577", "8+ c #6C9577", "9+ c #6A9476", "0+ c #699374", "a+ c #689374", "b+ c #689273", "c+ c #669172", "d+ c #A0B984", "e+ c #FAFAD7", "f+ c #8EAE96", "g+ c #8BAC94", "h+ c #8EAE95", "i+ c #93B19B", "j+ c #98B5A0", "k+ c #9DB9A4", "l+ c #A1BBA8", "m+ c #E1E9D9", "n+ c #BECD84", "o+ c #437852", "p+ c #467A54", "q+ c #375F41", "r+ c #56755F", "s+ c #699074", "t+ c #689073", "u+ c #678F72", "v+ c #668E71", "w+ c #658E71", "x+ c #658D70", "y+ c #648C6F", "z+ c #638C6E", "A+ c #628B6E", "B+ c #618A6C", "C+ c #5E886B", "D+ c #5C876A", "E+ c #5B8669", "F+ c #98B17D", "G+ c #F8F9D5", "H+ c #74997D", "I+ c #7FA188", "J+ c #85A58C", "K+ c #89A991", "L+ c #8FAD97", "M+ c #94B09B", "N+ c #97B39E", "O+ c #DEE6D6", "P+ c #BBCA82", "Q+ c #3C704D", "R+ c #3F724E", "S+ c #41734F", "T+ c #345B3E", "U+ c #506E58", "V+ c #61886B", "W+ c #60886B", "X+ c #60876A", "Y+ c #5E8669", "Z+ c #5F8669", "`+ c #5F896A", " @ c #5D8567", ".@ c #5B8466", "+@ c #5A8365", "@@ c #799970", "#@ c #D8DE96", "$@ c #D5DC90", "%@ c #D4DC8E", "&@ c #E0E48F", "*@ c #F4F5D1", "=@ c #6A8F73", "-@ c #75987E", ";@ c #7B9C82", ">@ c #80A088", ",@ c #85A38C", "'@ c #8BA791", ")@ c #8DA995", "!@ c #D9E2D2", "~@ c #EDED93", "{@ c #CED789", "]@ c #CFD789", "^@ c #D1DA8E", "/@ c #87A46D", "(@ c #30553A", "_@ c #496751", ":@ c #597F63", "<@ c #587F62", "[@ c #587E62", "}@ c #598163", "|@ c #243729", "1@ c #37403A", "2@ c #243628", "3@ c #557E5F", "4@ c #537A5C", "5@ c #5E8361", "6@ c #E4E79A", "7@ c #FFFFF7", "8@ c #AEC1B3", "9@ c #B2C4B8", "0@ c #ACBFB2", "a@ c #62876B", "b@ c #6B8E74", "c@ c #719179", "d@ c #76967D", "e@ c #7B9A82", "f@ c #809E88", "g@ c #85A18C", "h@ c #B1C3B6", "i@ c #CBD7D0", "j@ c #F4F7F7", "k@ c #F9F7B0", "l@ c #65875A", "m@ c #2E5237", "n@ c #435F4A", "o@ c #547B5D", "p@ c #557C5E", "q@ c #547D5E", "r@ c #1E3122", "s@ c #C2C5CA", "t@ c #B0B4B7", "u@ c #C2C6CA", "v@ c #1C2F20", "w@ c #487352", "x@ c #3D6A48", "y@ c #517850", "z@ c #EBEC9F", "A@ c #CFD9CA", "B@ c #4A7153", "C@ c #567A5F", "D@ c #5C7E64", "E@ c #618369", "F@ c #67876E", "G@ c #6C8B74", "H@ c #719079", "I@ c #76947E", "J@ c #7C9883", "K@ c #819C88", "L@ c #859F8B", "M@ c #BBCAC0", "N@ c #FEFCBA", "O@ c #749060", "P@ c #376242", "Q@ c #2C4E34", "R@ c #324B38", "S@ c #272612", "T@ c #5A4302", "U@ c #594200", "V@ c #87888C", "W@ c #FFFFFF", "X@ c #575A5D", "Y@ c #87888B", "Z@ c #584200", "`@ c #5A4301", " # c #23230E", ".# c #526E49", "+# c #F4F3A8", "@# c #BAC8BA", "## c #466A4D", "$# c #517459", "%# c #56785E", "&# c #5C7D63", "*# c #628168", "=# c #67866E", "-# c #6D8973", ";# c #728E78", "># c #76927D", ",# c #A2B5A8", "'# c #FFFEC6", ")# c #869D67", "!# c #335C3E", "~# c #365D3F", "{# c #2A4931", "]# c #1E1504", "^# c #E1AB24", "/# c #E8D194", "(# c #CFC4A7", "_# c #DADFE4", ":# c #D8DCE1", "<# c #DBDFE3", "[# c #DBDFE5", "}# c #CFC5A8", "|# c #EAD295", "1# c #E2AC23", "2# c #211F0C", "3# c #668357", "4# c #FCFAB3", "5# c #A2B3A5", "6# c #42644A", "7# c #4C6D53", "8# c #527159", "9# c #57765E", "0# c #5C7A63", "a# c #627F68", "b# c #67846E", "c# c #889E8D", "d# c #FFFFD2", "e# c #9BAB6F", "f# c #30573A", "g# c #32593B", "h# c #27452E", "i# c #543B00", "j# c #EFE5CD", "k# c #FAFAFB", "l# c #EEEFF0", "m# c #E5E7E9", "n# c #E3E5E7", "o# c #E0E3E5", "p# c #DDE0E3", "q# c #D9DCDF", "r# c #D8DBDF", "s# c #D9DEE1", "t# c #ECE2CA", "u# c #583C00", "v# c #305639", "w# c #73895A", "x# c #FFFFC0", "y# c #889D8D", "z# c #3E5F45", "A# c #46664D", "B# c #4C6A53", "C# c #526F58", "D# c #57745E", "E# c #6C8672", "F# c #FDFCDA", "G# c #AFBA77", "H# c #2D5136", "I# c #2F5337", "J# c #2F5237", "K# c #25402B", "L# c #533900", "M# c #F0E9DA", "N# c #CCCCCC", "O# c #969797", "P# c #959696", "Q# c #9C9D9D", "R# c #939595", "S# c #C4C6C7", "T# c #EBEDEF", "U# c #E7E9EC", "V# c #E1E4E7", "W# c #E9E4D5", "X# c #573A00", "Y# c #2F5235", "Z# c #294B31", "`# c #849561", " $ c #FFFFCA", ".$ c #708774", "+$ c #3A5940", "@$ c #415F46", "#$ c #47644C", "$$ c #526D57", "%$ c #F4F5DD", "&$ c #C3C981", "*$ c #2E4F33", "=$ c #2C4D32", "-$ c #223C27", ";$ c #503700", ">$ c #EDE7D9", ",$ c #F8F9F9", "'$ c #E6E6E7", ")$ c #E7E8E8", "!$ c #E2E3E4", "~$ c #F9FAFC", "{$ c #F2F4F5", "]$ c #EFF1F3", "^$ c #E6E8EC", "/$ c #E8E2D4", "($ c #543800", "_$ c #2B4C31", ":$ c #29482E", "<$ c #26452D", "[$ c #95A269", "}$ c #58705D", "|$ c #35523A", "1$ c #3A563E", "2$ c #E4E8D6", "3$ c #D4D78C", "4$ c #314E33", "5$ c #28472E", "6$ c #28482E", "7$ c #203824", "8$ c #4D3500", "9$ c #EBE5D8", "0$ c #EFEFEF", "a$ c #C6C6C6", "b$ c #C5C5C6", "c$ c #BDBDBD", "d$ c #C2C3C4", "e$ c #C5C5C7", "f$ c #BBBCBE", "g$ c #EBECEE", "h$ c #E7E1D4", "i$ c #513600", "j$ c #27452C", "k$ c #25412A", "l$ c #25422A", "m$ c #234029", "n$ c #A8B071", "o$ c #FEFCD9", "p$ c #405943", "q$ c #CFD5C8", "r$ c #E4E497", "s$ c #385134", "t$ c #1D3321", "u$ c #4B3300", "v$ c #E9E3D7", "w$ c #F5F5F6", "x$ c #DEDEDE", "y$ c #DFDFE0", "z$ c #DCDCDD", "A$ c #DEDFE0", "B$ c #D9D9DA", "C$ c #D6D7D8", "D$ c #D8D9DA", "E$ c #E6E1D5", "F$ c #4E3300", "G$ c #244028", "H$ c #223D26", "I$ c #233D27", "J$ c #B9BE79", "K$ c #FFFFE3", "L$ c #F0EEA4", "M$ c #425839", "N$ c #213C26", "O$ c #1A2F1E", "P$ c #483001", "Q$ c #EBEBEB", "R$ c #BFBFBF", "S$ c #C3C3C3", "T$ c #B6B6B7", "U$ c #AFAFAF", "V$ c #C2C2C2", "W$ c #BCBDBE", "X$ c #CDCECF", "Y$ c #F4F6F7", "Z$ c #E3DED3", "`$ c #4B3100", " % c #203A24", ".% c #1E3622", "+% c #253C25", "@% c #B1B776", "#% c #51633F", "$% c #1D3521", "%% c #182B1A", "&% c #452E02", "*% c #E4DFD4", "=% c #E0E0E0", "-% c #E8E9E9", ";% c #E3E3E4", ">% c #FDFEFF", ",% c #F6F7F8", "'% c #E2DDD3", ")% c #492F01", "!% c #1D3320", "~% c #1C301E", "{% c #182E1C", "]% c #1B301D", "^% c #162617", "/% c #432C03", "(% c #E1DDD3", "_% c #F0F0F0", ":% c #B6B6B6", "<% c #B9BABA", "[% c #BBBCBC", "}% c #B6B5B6", "|% c #B2B3B3", "1% c #F0F1F1", "2% c #E0DBD1", "3% c #462D02", "4% c #152717", "5% c #142415", "6% c #101D12", "7% c #402A04", "8% c #DFDBD2", "9% c #F7F7F7", "0% c #E4E4E4", "a% c #DADADA", "b% c #FBFBFB", "c% c #DEDAD1", "d% c #3E2805", "e% c #DCD8D1", "f% c #F1F1F1", "g% c #C8C8C8", "h% c #BEBEBE", "i% c #C1C1C2", "j% c #E2E2E2", "k% c #FCFDFD", "l% c #DCD7D0", "m% c #3B2506", "n% c #D9D6D0", "o% c #E5E5E5", "p% c #DDDDDD", "q% c #FEFDFE", "r% c #D9D5CF", "s% c #392408", "t% c #CEC9C2", "u% c #100B04", "v% c #916A3D", "w% c #B9AB9A", "x% c #BAAC9C", "y% c #916A3C", "z% c #0F0B04", "A% c #010100", "B% c #211507", "C% c #201406", " ", " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", "+ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ + ", " # $ $ $ % & & & * = = - = - ; ; > > , ' ' ) ) ! ~ { { { ] ^ ", " / ( ( _ : < [ } | | 1 2 3 4 5 6 7 8 9 0 a a b c d e f g h i ", " j k l m n o p q r s s t u v w x x y z A B C D E F G H I J K ", " L M N O P Q R S T U V W X Y Z ` ...+.@.#.$.%.&.*.=.-.;.>.,. ", " '.).!.!.~.{.].^./.(._.:.<.[.}.|.1.2.2.2.2.2.2.3.4.5.6.7.8.9. ", " 0.a.b.c.d.e.f.f.g.h.i.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z.A. ", " B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.`. + + +.+ ", " ++@+#+$+%+&+*+=+-+;+>+,+'+)+!+Q.~+{+]+^+/+(+_+:+<+[+}+}+}+|+ ", " 1+2+3+4+5+6+7+8+9+9+0+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+p+p+q+ ", " r+s+t+u+v+w+x+y+z+A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+R+S+T+ ", " U+V+W+X+Y+Z+`+ @.@+@@@#@$@%@&@*@=@-@;@>@,@'@)@!@~@{@]@^@/@(@ ", " _@:@<@[@}@|@1@2@3@4@5@6@7@8@9@0@a@b@c@d@e@f@g@h@i@i@j@k@l@m@ ", " n@o@p@q@r@s@t@u@v@w@x@y@z@A@B@C@D@E@F@G@H@I@J@K@L@M@N@O@P@Q@ ", " R@S@T@U@V@W@X@W@Y@Z@`@ #.#+#@###$#%#&#*#=#-#;#>#,#'#)#!#~#{# ", " ]#^#/#(#_#:#<#:#[#}#|#1#2#3#4#5#6#7#8#9#0#a#b#c#d#e#f#g#g#h# ", " i#j#k#l#m#n#o#p#q#r#s#t#u#v#w#x#y#z#A#B#C#D#E#F#G#H#I#J#J#K# ", " L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#`# $.$+$@$#$$$%$&$*$=$=$=$=$-$ ", " ;$>$,$'$)$!$!$~${$]$^$/$($_$:$<$[$d#}$|$1$2$3$4$5$6$6$6$6$7$ ", " 8$9$0$a$b$c$d$b$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$k$k$k$k$k$k$t$ ", " u$v$w$x$y$z$A$B$C$D$]$E$F$G$H$H$H$I$J$K$L$M$N$H$H$H$H$H$H$O$ ", " P$E$Q$R$S$T$U$V$W$X$Y$Z$`$ %.%.%.%.%+%@%#%$%.%.%.%.%.%.%.%%% ", " &%*%,$=%-%)$;%)$y$>%,%'%)%!%~%~%~%~%~%{%]%~%~%~%~%~%~%~%~%^% ", " /%(%_%:%c$S$<%[%}%|%1%2%3%4%5%5%5%5%5%5%5%5%5%5%5%5%5%5%5%6% ", " 7%8%9%0%a%_%W@W@W@W@b%c%7% ", " d%e%f%S$g%g%h%R$i%j%k%l%d% ", " m%n%9%=%o%p%_%W@W@W@q%r%m% ", " s%t%W@W@W@W@W@W@W@W@W@t%s% ", " u%v%w%x%x%x%x%x%x%x%w%y%z% ", " A%B%C%C%C%C%C%C%C%B%A% "}; guake-indicator/aclocal.m4000664 001750 001750 00000143215 12451035035 016062 0ustar00ozzyozzy000000 000000 # generated automatically by aclocal 1.14.1 -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.14' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.14.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.14.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version is >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) AC_MSG_ERROR([Python interpreter is too old])]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) # Just factor out some code duplication. am_python_setup_sysconfig="\ import sys # Prefer sysconfig over distutils.sysconfig, for better compatibility # with python 3.x. See automake bug#10227. try: import sysconfig except ImportError: can_use_sysconfig = 0 else: can_use_sysconfig = 1 # Can't use sysconfig in CPython 2.7, since it's broken in virtualenvs: # try: from platform import python_implementation if python_implementation() == 'CPython' and sys.version[[:3]] == '2.7': can_use_sysconfig = 0 except ImportError: pass" dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('purelib', vars={'base':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(0, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c " $am_python_setup_sysconfig if can_use_sysconfig: sitedir = sysconfig.get_path('platlib', vars={'platbase':'$am_py_prefix'}) else: from distutils import sysconfig sitedir = sysconfig.get_python_lib(1, 0, prefix='$am_py_prefix') sys.stdout.write(sitedir)"` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR guake-indicator/data/icons/16x16/000775 001750 001750 00000000000 12451035035 017025 5ustar00ozzyozzy000000 000000 guake-indicator/AUTHORS000664 001750 001750 00000000041 12451035035 015257 0ustar00ozzyozzy000000 000000 Alessio Garzi guake-indicator/src/guake-indicator-read-json.c000664 001750 001750 00000034370 12451035035 022104 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include #include #include #include #include "guake-indicator.h" #include "guake-indicator-read-json.h" #include "guake-indicator-xml.h" // This function reads the json cfg file and returns a linked list of host GArray* read_json_cfg_file(char * customfilecfg) { FILE* fd; struct json_object *new_obj; struct stat s; char* raw_data=NULL; char* filecfg; char* filedir; size_t numbytes; if (customfilecfg!=NULL) filecfg=strdup(customfilecfg); else { filedir=checkandcreatedefaultdir(); asprintf(&filecfg,"%s/%s",filedir,GUAKE_INDICATOR_DEFAULT_FILEJSON); free((void*)filedir); } int err = stat(filecfg, &s); if (err==-1) { if (createdefaultfilecfg(filecfg)) return NULL; //err = stat(filecfg, &s); return read_xml_cfg_file(); } if(!S_ISREG(s.st_mode) && !S_ISLNK(s.st_mode)) { free((void*)filecfg); return NULL; } fd=fopen(filecfg,"r"); free((void*)filecfg); if (fd==NULL) return NULL; raw_data=(char*)malloc(s.st_size+1); bzero((void*)raw_data,s.st_size+1); numbytes=fread((void*)raw_data,1,s.st_size,fd); if (numbytes<0) { free((void*)raw_data); fclose(fd); return NULL; } fclose(fd); new_obj = json_tokener_parse(raw_data); free((void*)raw_data); if (new_obj==NULL) return NULL; GArray* returnarray=json_parse(new_obj); json_object_put(new_obj); return returnarray; } GArray* json_parse(json_object * jobj) { GArray * hostgrouparray; Host* head=NULL; int i; struct json_object * inner_jobj,*data_jobj; enum json_type type; HostGroup* hostgroup; sethostcounterid(NULL); // reset counter id for single hosts sethostgroupcounterid(NULL); // reset counter id for host groups hostgrouparray = g_array_new (TRUE, FALSE, sizeof (HostGroup*)); json_object_object_foreach(jobj, key, val) { type = json_object_get_type(val); switch (type) { case json_type_array: hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); head=NULL; json_object_object_get_ex(jobj, "data",&data_jobj); int arraylen = json_object_array_length(data_jobj); for (i=0;iparent=hostgroup; head=host_queue(head,newhost); } } hostgroup->hostarray=head; g_array_append_val (hostgrouparray, hostgroup); break; case json_type_object: hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); hostgroup->title=g_strdup(key); sethostgroupcounterid(hostgroup); json_object_object_get_ex(jobj, key,&inner_jobj); head=NULL; json_object_object_foreach(inner_jobj, key, val) { if (!strcmp(key,"label")) { struct json_object * lab_obj; json_object_object_get_ex(inner_jobj, key,&lab_obj); char* title=(char*)json_object_get_string(lab_obj); HostGroup* labelhostgroup = malloc(sizeof(HostGroup)); bzero((void*)labelhostgroup,sizeof(HostGroup)); sethostgroupcounterid(labelhostgroup); labelhostgroup->title=g_strdup((const gchar*)title); labelhostgroup->label=TRUE; g_array_append_val (hostgrouparray, labelhostgroup); } else { json_object_object_get_ex(inner_jobj, "data",&data_jobj); int arraylen = json_object_array_length(data_jobj); for (i=0;iparent=hostgroup; head=host_queue(head,new_host); } } // Set the open all row Host* all_host = (Host*) malloc(sizeof(Host)); bzero((void*)all_host,sizeof(Host)); sethostcounterid(all_host); all_host->menu_name=g_strdup((char*)"Open all"); all_host->group_head=head; all_host->open_all=TRUE; head=host_queue(head,all_host); } } hostgroup->hostarray=head; g_array_append_val (hostgrouparray, hostgroup); break; } } return hostgrouparray; } // This function parses a "data" json array Host* create_host_linkedlist(struct json_object * data_jobj,int i) { json_object * jvalue; jvalue = json_object_array_get_idx(data_jobj, i); // check if it's a label struct json_object * new_obj_label; json_object_object_get_ex(jvalue, "label",&new_obj_label); if (new_obj_label!=NULL) { Host* newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->menu_name=strdup((char*)json_object_get_string(new_obj_label)); newhost->label=TRUE; return newhost; } // regular host entry struct json_object * new_obj_hostname; json_object_object_get_ex(jvalue, "hostname",&new_obj_hostname); struct json_object * new_obj_login; json_object_object_get_ex(jvalue, "login",&new_obj_login); struct json_object * new_obj_menu_name; json_object_object_get_ex(jvalue, "menu_name",&new_obj_menu_name); struct json_object * new_obj_tab_name; json_object_object_get_ex(jvalue, "tab_name",&new_obj_tab_name); struct json_object * new_obj_cmd_name; json_object_object_get_ex(jvalue, "command_after_login",&new_obj_cmd_name); struct json_object * new_obj_remote_command; json_object_object_get_ex(jvalue, "remote_command",&new_obj_remote_command); struct json_object * new_obj_x_forwarded; json_object_object_get_ex(jvalue, "x_forwarded",&new_obj_x_forwarded); struct json_object * new_obj_dont_show_guake; json_object_object_get_ex(jvalue, "dont_show_guake",&new_obj_dont_show_guake); if ((char*)json_object_get_string(new_obj_menu_name)==NULL) { return NULL; } Host* newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); if (new_obj_hostname) newhost->hostname=strdup((char*)json_object_get_string(new_obj_hostname)); if (new_obj_login) newhost->login=strdup((char*)json_object_get_string(new_obj_login)); newhost->menu_name=strdup((char*)json_object_get_string(new_obj_menu_name)); if (new_obj_tab_name) newhost->tab_name=strdup((char*)json_object_get_string(new_obj_tab_name)); if ((char*)json_object_get_string(new_obj_cmd_name)) newhost->command_after_login=strdup((char*)json_object_get_string(new_obj_cmd_name)); if (new_obj_remote_command!=NULL) newhost->remote_command=strdup((char*)json_object_get_string(new_obj_remote_command)); if (new_obj_x_forwarded!=NULL) newhost->x_forwarded=strdup((char*)json_object_get_string(new_obj_x_forwarded)); if (new_obj_dont_show_guake!=NULL) newhost->dont_show_guake=strdup((char*)json_object_get_string(new_obj_dont_show_guake)); return newhost; } // This function puts a new host and the end of a queue Host* host_queue(Host* head,Host* newhost) { Host* ptr; if (head==NULL) return newhost; ptr=head; while (ptr->next) ptr=ptr->next; ptr->next=newhost; newhost->previous=ptr; return head; } // Create a directory for hosting a new configuration file if it doesn't exist char* checkandcreatedefaultdir() { char* fulldirpath; struct stat s,s1; char* pluginpath; asprintf(&fulldirpath,"%s/%s",getenv("HOME"),GUAKE_INDICATOR_DEFAULT_DIR); int err = stat(fulldirpath, &s); if(ENOENT == err) { if (mkdir(fulldirpath,0744)==-1) fprintf(stderr,"Can't create %s (%d - %s)",GUAKE_INDICATOR_DEFAULT_DIR,errno,strerror(errno)); } else { if(!S_ISDIR(s.st_mode)) { if (mkdir(fulldirpath,0744)) fprintf(stderr,"Can't create %s (%d - %s)",GUAKE_INDICATOR_DEFAULT_DIR,errno,strerror(errno)); } } asprintf(&pluginpath,"%s/%s",fulldirpath,GUAKE_INDICATOR_PLUGIN_DIR); err = stat(pluginpath, &s1); if(ENOENT == err) { if (mkdir(pluginpath,0744)==-1) fprintf(stderr,"Can't create %s (%d - %s)",GUAKE_INDICATOR_PLUGIN_DIR,errno,strerror(errno)); } else { if(!S_ISDIR(s1.st_mode)) { if (mkdir(pluginpath,0744)) fprintf(stderr,"Can't create %s (%d - %s)",GUAKE_INDICATOR_PLUGIN_DIR,errno,strerror(errno)); } } free(pluginpath); return fulldirpath; } // Create a new default cfg file int createdefaultfilecfg(const char* path) { char* user=getenv("LOGNAME"); Host* head; HostGroup* hostgroup; GArray* hostgrouparray; // Start root section hostgrouparray = g_array_new (TRUE, FALSE, sizeof (HostGroup*)); hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); Host* newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->label=TRUE; newhost->menu_name=g_strdup("SSH Hosts"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup("localhost"); newhost->login=g_strdup(user!=NULL?user:""); newhost->menu_name=g_strdup("SSH on localhost"); newhost->tab_name=g_strdup("LocalHost"); head=host_queue(head,newhost); hostgroup->hostarray=head; g_array_append_val (hostgrouparray, hostgroup); //End root section // Start mysql server section head=NULL; hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); hostgroup->title=g_strdup("Mysql Servers"); hostgroup->label=TRUE; g_array_append_val (hostgrouparray, hostgroup); hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); hostgroup->title=g_strdup("MYSQL"); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->label=TRUE; newhost->hostname=g_strdup(""); newhost->login=g_strdup(""); newhost->tab_name=g_strdup(""); newhost->menu_name=g_strdup("Local Mysql Servers"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup("localhost"); newhost->login=g_strdup(user!=NULL?user:""); newhost->menu_name=g_strdup("Mysql on localhost"); newhost->tab_name=g_strdup("Mysql"); newhost->command_after_login=g_strdup("mysql -u root --pass --host localhost -A mysql"); newhost->remote_command=g_strdup("yes"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup("127.0.0.1"); newhost->login=g_strdup(user!=NULL?user:""); newhost->menu_name=g_strdup("Mysql on 127.0.0.1"); newhost->tab_name=g_strdup("Mysql on 127.0.0.1"); newhost->command_after_login=g_strdup("mysql -u root --pass --host 127.0.0.1 -A mysql"); newhost->remote_command=g_strdup("yes"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->label=TRUE; newhost->hostname=g_strdup(""); newhost->login=g_strdup(""); newhost->tab_name=g_strdup(""); newhost->menu_name=g_strdup("Remote Mysql Servers"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup("192.168.1.1"); newhost->login=g_strdup(user!=NULL?user:""); newhost->menu_name=g_strdup("Mysql on 192.168.1.1"); newhost->tab_name=g_strdup("Mysql on 192.168.1.1"); newhost->command_after_login=g_strdup("mysql -u root --pass --host 192.168.1.1 -A mysql"); newhost->remote_command=g_strdup("yes"); head=host_queue(head,newhost); hostgroup->hostarray=head; g_array_append_val (hostgrouparray, hostgroup); // End of mysql server section //Start of localhost tasks head=NULL; hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); hostgroup->title=g_strdup("Localhost tasks"); hostgroup->label=TRUE; g_array_append_val (hostgrouparray, hostgroup); hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); hostgroup->title=g_strdup("MISC"); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup(""); newhost->login=g_strdup(""); newhost->menu_name=g_strdup("tmp folder"); newhost->tab_name=g_strdup("tmp folder"); newhost->command_after_login=g_strdup("cd /tmp"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup(""); newhost->login=g_strdup(""); newhost->menu_name=g_strdup("top"); newhost->tab_name=g_strdup("top"); newhost->command_after_login=g_strdup("top"); head=host_queue(head,newhost); newhost = malloc(sizeof(Host)); bzero((void*)newhost,sizeof(Host)); sethostcounterid(newhost); newhost->hostname=g_strdup(""); newhost->login=g_strdup(""); newhost->menu_name=g_strdup("ping www.google.com"); newhost->tab_name=g_strdup("Ping google"); newhost->command_after_login=g_strdup("ping www.google.com"); head=host_queue(head,newhost); hostgroup->hostarray=head; g_array_append_val (hostgrouparray, hostgroup); // End of localhost tasks return write_xml_cfg_file(hostgrouparray); } void sethostcounterid(Host* host) { static int counter=0; if (host==NULL) { counter=0; return ; } host->id = g_strdup_printf("host%d", counter++); } void sethostgroupcounterid(HostGroup* hostgroup) { static int counter=0; if (hostgroup==NULL) { counter=0; return; } hostgroup->id = g_strdup_printf("hostgroup%d", counter++); } guake-indicator/data/labelicon.png000664 001750 001750 00000001023 12451035035 017557 0ustar00ozzyozzy000000 000000 PNG  IHDR7gAMA asRGB cHRMz&u0`:pQ<bKGD̿ pHYs   IDAT(eK+gf!a3)De33$K2a&,f.ݝy. XL6+FJ-As$;oދh2ܙa!*hIP,TslP_+^VuFuXAm"֢*-,K".߃:1oFܻR1г~%M6D!e/.|EYҵZ7J2P1&zT5lfҚvM7W%tEXtdate:create2014-08-08T10:29:17+02:00%tEXtdate:modify2014-08-08T10:29:17+02:00Es_IENDB`guake-indicator/src/guake-indicator.h000664 001750 001750 00000004627 12451035035 020233 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include #include #define GUAKE_INDICATOR_DEFAULT_DIR ".guake-indicator" #define GUAKE_INDICATOR_PLUGIN_DIR "plugins" #define GUAKE_INDICATOR_ICON_DIR "icons/hicolor/256x256/apps/" #define GUAKE_INDICATOR_GCONF_SCHEMA_ROOT "/apps/guake-indicator/" typedef struct Host { gchar* id; gboolean label; gchar* hostname; gchar* login; gchar* menu_name; gchar* tab_name; gchar* command_after_login; gchar* remote_command; gchar* x_forwarded; gchar* dont_show_guake; gchar* open_in_tab; gboolean open_in_tab_named; gchar* lfcr; gchar* guakeindicatorscript; gboolean open_all; struct Host* next; struct Host* previous; struct Host* group_head; struct HostGroup* parent; } Host; typedef struct HostGroup { gchar* id; gchar* title; Host* hostarray; gboolean label; }HostGroup; typedef struct GtkInfo { GtkActionGroup* action_group; GtkUIManager * uim; GArray* grouphostlist; } GtkInfo; void reload(GtkAction*,gpointer); static void activate_action (GtkAction* ); static void guake_open(GtkAction*,gpointer); static void guake_open_with_show(GtkAction*,gpointer); static void group_guake_open(GtkAction*,gpointer); static void about(GtkAction*); static void close_guake ( GtkWidget *, gpointer); static void update_json(gpointer); gchar* add_host_to_menu(Host*,GtkActionGroup *); gchar* add_lable_to_menu(HostGroup*,GtkActionGroup *); void create_default_actions(GtkActionGroup*,GtkInfo*); gchar* create_actionlists(GArray*,GtkUIManager*,GtkActionGroup*); void grouphostlist_free(GArray*); void host_free(Host*); void hostgroup_free(HostGroup*); int findguakepid(); void error_modal_box (const char*); guake-indicator/README000664 001750 001750 00000000000 12451035035 015062 0ustar00ozzyozzy000000 000000 guake-indicator/src/.deps/guake_indicator-guake-indicator-new-entry.Po000664 001750 001750 00000153073 12451035035 026447 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-new-entry.o: guake-indicator-new-entry.c \ /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator.h \ guake-indicator-new-entry.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-write-json.h /usr/include/stdc-predef.h: /usr/include/string.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/include/xlocale.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/string3.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator.h: guake-indicator-new-entry.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-write-json.h: guake-indicator/src/guake-indicator.c000664 001750 001750 00000046733 12451035035 020232 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include "guake-indicator.h" #include "guake-indicator-read-json.h" #include "guake-indicator-write-json.h" #include "guake-indicator-edit-menu.h" #include "guake-indicator-xml.h" static const gchar* ui_start = ""; static const gchar* ui_end = ""; static const gchar* popup_start = ""; static const gchar* popup_end = ""; static const gchar* separator = ""; static const gchar* default_menuitems = "" "" "" "" ""; AppIndicator *indicator; guint merge_id=0; // Open a group of tabs static void group_guake_open(GtkAction* action,gpointer user_data) { Host host = *((Host*) user_data); Host* ptr = host.group_head; void (*guake_funct)(GtkAction*,gpointer); while (ptr) { // If it's the last host or the host after is the "open all" // i call guake_open_with_show() for showing the terminal // otherwise i call guake_open() that doesn't show the terminal if (ptr->next==NULL || ptr->next->group_head!=NULL) guake_funct=guake_open_with_show; else guake_funct=guake_open; if (ptr->group_head==NULL && ptr->label==FALSE) guake_funct(action,(gpointer)ptr); ptr=ptr->next; } } static void guake_open_with_show(GtkAction* action,gpointer user_data) { // open new terminal and execute command guake_open(action,user_data); // try to show Guake guake_show(); } // Open a new terminal tab on guake static void guake_open(GtkAction* action,gpointer user_data) { Host host = *((Host*) user_data); gchar* cmd = NULL; gint32 numtabs; // open a new Guake tab if (guake_gettabcount(&numtabs)==FALSE) guake_newtab(); // if current guake tab is selected i skip this part else if (host.open_in_tab && atol((char*)host.open_in_tab)==-1) { } else if (host.open_in_tab==NULL || !strlen(host.open_in_tab) || ((long)numtabs<=atol((char*)host.open_in_tab) && host.open_in_tab_named==FALSE)) guake_newtab(); else { if (host.open_in_tab_named==FALSE) guake_selecttab(host.open_in_tab); // Search a tab by name else { gint32 i =0; gchar* name; for (i=0;istr)==-1) { guake_notify("Guake indicator","Cannot spawn system call"); } g_string_free (systemstring,TRUE); continue; } //Manage the tags else if (host.guakeindicatorscript && !strcmp(host.guakeindicatorscript,"yes") && cmd[i]=='<' && cmd[i+1]=='!') { i+=2; gchar* start=cmd+(i*sizeof(gchar)); gchar* end = g_strstr_len(start,-1,"!>"); if (end>start) { gchar* envstring = g_strndup(start,(end-start)*sizeof(gchar)); GConfClient *client = gconf_client_get_default (); gchar* gschema = g_strjoin(NULL,GUAKE_INDICATOR_GCONF_SCHEMA_ROOT,envstring,NULL); char* str = gconf_client_get_string (client, gschema, NULL); g_free(gschema); if (str) { g_string_append (newstring,str); free(str); } g_free(envstring); i=i+((end-start)*sizeof(gchar))+1; continue; } } g_string_append_c (newstring,cmd[i]); if (cmd[i]==10) { // Add a cr to the end line will be lfcr if (host.lfcr && !g_strcmp0(host.lfcr,"yes")) g_string_append_c (newstring,13); guake_executecommand(newstring->str); g_string_free (newstring,TRUE); newstring = g_string_new (NULL); } } if (newstring->len>0) guake_executecommand(newstring->str); g_string_free (newstring,TRUE); g_free(x_forwarded_flag); g_free(cmd); } // Reload hosts reading them from the configuration file void reload(GtkAction* action,gpointer user_data) { GArray* oldgrouphostlist = ((GtkInfo*)user_data)->grouphostlist; GtkActionGroup* action_group = ((GtkInfo*)user_data)->action_group; GtkUIManager * uim = ((GtkInfo*)user_data)->uim; GError *error = NULL; GtkWidget *indicator_menu; GArray* grouphostlist =NULL; GList *actions, *iter; // Fetch data from the cfg file if (check_xml_cfg_file_presence()) grouphostlist = read_xml_cfg_file(); else grouphostlist = read_json_cfg_file(NULL); if (grouphostlist==NULL) { error_modal_box("Couldn't retrieve host from your guake indicator configuration file"); return ; } // free the old grouphostlist and use the new one grouphostlist_free(oldgrouphostlist); ((GtkInfo*)user_data)->grouphostlist=grouphostlist; // Remove old action group and ui gtk_ui_manager_remove_action_group(uim,action_group); actions = gtk_action_group_list_actions (action_group); for (iter = actions; iter; iter = iter->next) { GtkAction *action = iter->data; gtk_action_group_remove_action (action_group,action); } g_list_free (actions); gtk_ui_manager_remove_ui(uim,merge_id); // I create a new actionlist for each grouphostlist gchar* menuitems=create_actionlists(grouphostlist,uim,action_group); create_default_actions(action_group,(GtkInfo*)user_data); gtk_ui_manager_insert_action_group (uim, action_group, 0); gchar* ui_full_info=g_strjoin (NULL, ui_start, popup_start, menuitems, separator, default_menuitems, popup_end, ui_end, NULL ); g_free(menuitems); merge_id=gtk_ui_manager_add_ui_from_string (uim, ui_full_info, -1, &error); if (!merge_id) { g_message ("Failed to build menus: %s\n", error->message); g_error_free (error); g_free(ui_full_info); error = NULL; } g_free(ui_full_info); indicator_menu = gtk_ui_manager_get_widget (uim, "/ui/IndicatorPopup"); app_indicator_set_menu (indicator, GTK_MENU (indicator_menu)); gtk_ui_manager_ensure_update(uim); guake_notify("Guake indicator","Reload completed"); return ; } // About page static void about (GtkAction* action) { GError *error = NULL; const gchar *authors[] = { "Alessio Garzi ", "Francesco Minà ", NULL }; const gchar* license ="guake-indicator is free software; you can redistribute it and/or\n" " modify it under the terms of the GNU General Public License\n" " as published by the Free Software Foundation; either version 2\n" " of the License, or (at your option) any later version.\n\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" " GNU General Public License for more details.\n\n" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA."; GdkPixbuf *logo = gdk_pixbuf_new_from_file (DATADIR"/"GUAKE_INDICATOR_ICON_DIR"/guake-indicator.png", &error); if (error != NULL) { if (error->domain == GDK_PIXBUF_ERROR) g_print ("GdkPixbufError: %s\n", error->message); else if (error->domain == G_FILE_ERROR) g_print ("GFileError: %s\n", error->message); else g_print ("An error in the domain: %d has occurred!\n", error->domain); g_error_free (error); } gtk_show_about_dialog(NULL, "program-name", "guake-indicator", "authors", authors, "comments", "A simple indicator that lets you send custom commands to Guake.", "copyright", "(C) 2013-2015 Alessio Garzi\n(C) 2013-2015 Francesco Mina\n\nDedicated to my daughters\n Ludovica and newborn Mariavittoria", "logo", logo, "version", "1.1", "website", "http://guake-indicator.ozzyboshi.com", "license",license, NULL); } void error_modal_box (const char* alerttext) { GtkWidget *dialog; dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_INFO, GTK_BUTTONS_CLOSE, "%s", alerttext); g_signal_connect (dialog, "response",G_CALLBACK (gtk_widget_destroy), NULL); gtk_widget_show (dialog); } // Add a lable to an action group gchar* add_lable_to_menu(HostGroup* hostgroup,GtkActionGroup *action_group) { gchar* title=hostgroup->title; gchar* id=hostgroup->id; gchar* ui_tmp; gchar* ui_full_info=g_strjoin(NULL,"",NULL); GtkAction* action = gtk_action_new(id, title, NULL, NULL); gtk_action_set_sensitive(action,FALSE); gtk_action_group_add_action(action_group, action); ui_tmp=ui_full_info; ui_full_info = g_strconcat(ui_tmp,"",NULL); g_free(ui_tmp); return ui_full_info; } // Add a host to an action group gchar* add_host_to_menu(Host* head,GtkActionGroup *action_group) { GtkAction* action; Host* ptr = head; gchar* ui_tmp; gchar* ui_full_info=g_strjoin(NULL,"",NULL); for (ptr=head;ptr;ptr=ptr->next) { // if the open_all row is clicked if (ptr->group_head!=NULL) { action = gtk_action_new(ptr->id, ptr->menu_name, NULL, NULL); g_signal_connect(G_OBJECT(action), "activate", G_CALLBACK(group_guake_open), (gpointer)ptr); } // Draw a inner label else if (ptr->label==TRUE) { action = gtk_action_new(ptr->id, ptr->menu_name, NULL, NULL); gtk_action_set_sensitive(action,FALSE); } // Regular row is clicked else { void (*funct_ptr)(GtkAction*,gpointer); if (ptr->dont_show_guake==NULL || g_strcmp0(ptr->dont_show_guake,"yes")) funct_ptr=guake_open_with_show; else funct_ptr=guake_open; if (ptr->open_in_tab==NULL) action = gtk_action_new(ptr->id, ptr->menu_name, NULL, NULL); else { gchar* menu_desc; if (atol((char*)ptr->open_in_tab)==-1) menu_desc=g_strjoin(NULL,ptr->menu_name," (Current Tab)",NULL); else menu_desc=g_strjoin(NULL,ptr->menu_name," (Tab ",ptr->open_in_tab,")",NULL); action = gtk_action_new(ptr->id, menu_desc, NULL, NULL); g_free(menu_desc); } g_signal_connect(G_OBJECT(action), "activate", G_CALLBACK(funct_ptr), (gpointer)ptr); } gtk_action_group_add_action(action_group, action); ui_tmp=ui_full_info; // for the open all row and labels I set a separator before printing it if (ptr->group_head!=NULL || ptr->label==TRUE) ui_full_info = g_strconcat(ui_tmp,"",NULL); else ui_full_info = g_strconcat(ui_tmp,"",NULL); g_free(ui_tmp); } return ui_full_info; } // Create actionslist according to the result of a json file gchar* create_actionlists(GArray* grouphostlist,GtkUIManager* uim,GtkActionGroup* action_group) { gint i=0; gchar* menuitems=g_strdup(""); for (i=0;grouphostlist!=NULL && ilen;i++) { HostGroup* hostgroup = g_array_index (grouphostlist, HostGroup* , i); if (hostgroup->title==NULL || !strlen((char*)hostgroup->title)) { gchar* p = menuitems; gchar* xmlcode=add_host_to_menu(hostgroup->hostarray,action_group); menuitems=g_strconcat(p,xmlcode,NULL); g_free(xmlcode); g_free(p); continue; } gchar* gtk_name=g_strdup_printf("%d",i); // Create a new action group GtkActionGroup* host_action_group = gtk_action_group_new (hostgroup->title); GtkAction *newaction=gtk_action_new(gtk_name, hostgroup->title, NULL, NULL); gtk_action_group_add_action(action_group,newaction); g_object_unref(newaction); gchar* p = menuitems; // Case of a label if (hostgroup->label==TRUE) { gchar* xmlcode=add_lable_to_menu(hostgroup,host_action_group); menuitems=g_strconcat(p,xmlcode,NULL); g_free(xmlcode); } //Case of a Guake link else { gchar* xmlcode=add_host_to_menu(hostgroup->hostarray,host_action_group); menuitems=g_strconcat(p,"",xmlcode,"",NULL); g_free(xmlcode); } g_free(p); g_free(gtk_name); gtk_ui_manager_insert_action_group (uim, host_action_group , 0); } return menuitems; } // Free a grouphostlist void grouphostlist_free(GArray* grouphostlist) { Host* ptr,*newptr; gint i; for (i=0;grouphostlist!=NULL && ilen;i++) { HostGroup* hostgroup = g_array_index (grouphostlist, HostGroup* , i); for (ptr=hostgroup->hostarray;ptr;ptr=newptr) { host_free(ptr); newptr=ptr->next; free(ptr); } if (hostgroup->id) free(hostgroup->id); if (hostgroup->title) free(hostgroup->title); free(hostgroup); } g_array_free(grouphostlist,TRUE); } // Free a host structure void host_free(Host* ptr) { if (ptr->menu_name) free(ptr->menu_name); if (ptr->tab_name) free(ptr->tab_name); if (ptr->command_after_login) free(ptr->command_after_login); if (ptr->dont_show_guake) free(ptr->dont_show_guake); if (ptr->lfcr) free(ptr->lfcr); if (ptr->guakeindicatorscript) free(ptr->guakeindicatorscript); if (ptr->id) free(ptr->id); if (ptr->open_in_tab) free(ptr->open_in_tab); } // Free a hostgroup structure void hostgroup_free(HostGroup* ptr) { if (ptr->id) free(ptr->id); if (ptr->title) free(ptr->title); } // close the indicator static void close_guake ( GtkWidget *widget, gpointer user_data) { GArray* grouphostlist= ((GtkInfo*)user_data)->grouphostlist; grouphostlist_free(grouphostlist); gtk_main_quit(); return ; } int main (int argc, char **argv) { GtkWidget *indicator_menu; GtkActionGroup *action_group; GtkUIManager *uim; GError *error = NULL; if (!findguakepid()) if (system("guake &")==-1) return -1; gtk_init (&argc, &argv); GArray* grouphostlist; if (check_xml_cfg_file_presence()) grouphostlist = read_xml_cfg_file(); else grouphostlist = read_json_cfg_file(NULL); if (grouphostlist==NULL) error_modal_box("Couldn't retrieve host from your guake indicator configuration file"); // Create action group for refresh quit and about menuitems action_group = gtk_action_group_new ("AppActions"); uim = gtk_ui_manager_new (); // I create a new actionlist for each grouphostlist gchar* menuitems=create_actionlists(grouphostlist,uim,action_group); // Add reload_action GtkInfo gtkinfo; gtkinfo.action_group = action_group; gtkinfo.uim = uim; gtkinfo.grouphostlist=grouphostlist; // Create default actions create_default_actions(action_group,>kinfo); gtk_ui_manager_insert_action_group (uim, action_group, 0); gchar* ui_full_info=g_strjoin (NULL, ui_start, popup_start, menuitems, separator, default_menuitems, popup_end, ui_end, NULL ); merge_id=gtk_ui_manager_add_ui_from_string (uim, ui_full_info, -1, &error); if (!merge_id) { g_message ("Failed to build menus: %s\n", error->message); g_error_free (error); error = NULL; } g_free(ui_full_info); g_free(menuitems); /* Indicator */ indicator = app_indicator_new ("guake-indicator", "guake-indicator", APP_INDICATOR_CATEGORY_APPLICATION_STATUS); indicator_menu = gtk_ui_manager_get_widget (uim, "/ui/IndicatorPopup"); app_indicator_set_status (indicator, APP_INDICATOR_STATUS_ACTIVE); app_indicator_set_menu (indicator, GTK_MENU (indicator_menu)); guake_notify("Guake indicator","Guake indicator is running"); gtk_main (); return 0; } void create_default_actions(GtkActionGroup* action_group,GtkInfo* gtkinfo) { // Add Edit menu GtkAction* edit_menu_action = gtk_action_new("Edit Menu", "Edit Menu", NULL, NULL); g_signal_connect(G_OBJECT(edit_menu_action), "activate", G_CALLBACK(print_edit_menu_form), (gpointer) gtkinfo); gtk_action_group_add_action(action_group, edit_menu_action); // Add reload_action GtkAction* reload_action = gtk_action_new("Reload", "Reload", NULL, NULL); g_signal_connect(G_OBJECT(reload_action), "activate", G_CALLBACK(reload), (gpointer) gtkinfo); gtk_action_group_add_action(action_group, reload_action); // Add quit_action GtkAction* quit_action = gtk_action_new("Quit", "Quit", NULL, NULL); g_signal_connect(G_OBJECT(quit_action), "activate", G_CALLBACK(close_guake), (gpointer) gtkinfo); gtk_action_group_add_action(action_group, quit_action); // Add about_action GtkAction* about_action = gtk_action_new("About", "About", NULL, NULL); g_signal_connect(G_OBJECT(about_action), "activate", G_CALLBACK(about), NULL); gtk_action_group_add_action(action_group, about_action); } int findguakepid() { const char* directory = "/proc"; size_t taskNameSize = 1024; char* taskName = calloc(1, taskNameSize); const char* guakestr ="guake"; DIR* dir = opendir(directory); if (dir) { struct dirent* de = 0; while ((de = readdir(dir)) != 0) { if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue; int pid = -1; int res = sscanf(de->d_name, "%d", &pid); if (res == 1) { char cmdline_file[1024] = {0}; sprintf(cmdline_file, "%s/%d/comm", directory, pid); FILE* cmdline = fopen(cmdline_file, "r"); if (cmdline==NULL) continue; if (getline(&taskName, &taskNameSize, cmdline) > 0) { taskName[strlen((char*)taskName)-1]=0; if (!strcmp(taskName, guakestr) != 0) { fclose(cmdline); closedir(dir); free(taskName); return pid; } } fclose(cmdline); } } closedir(dir); } free(taskName); return 0; } guake-indicator/src/.deps/guake_indicator-guake-indicator-write-json.Po000664 001750 001750 00000153006 12451035035 026614 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-write-json.o: \ guake-indicator-write-json.c /usr/include/stdc-predef.h \ guake-indicator.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/xlocale.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-write-json.h \ /usr/include/string.h /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/stdc-predef.h: guake-indicator.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-write-json.h: /usr/include/string.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/x86_64-linux-gnu/bits/string3.h: guake-indicator/depcomp000775 001750 001750 00000056016 12451035035 015601 0ustar00ozzyozzy000000 000000 #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: guake-indicator/data/hostgroupicon.png000664 001750 001750 00000000663 12451035035 020543 0ustar00ozzyozzy000000 000000 PNG  IHDR7gAMA asRGB cHRMz&u0`:pQ<bKGD̿ pHYs  IDAT(1jQ<\@qqMsY2]ZaR,Pf,Lm{QGY_t<£jB@_0M/Vr3ꢐ PW"ؘ w_p{ΫeE>ՒJDζ>{*'-SSp"NE(%tEXtdate:create2014-08-08T12:30:10+02:00^x,%tEXtdate:modify2014-08-08T12:30:09+02:00vIIENDB`guake-indicator/data/gi_custom_cmd_form.glade000664 001750 001750 00000040752 12451035035 021772 0ustar00ozzyozzy000000 000000 650 600 False Guake Indicator Menu Editor False center True False 10 0 in True False 10 4 True False 400 True False True False 0 none True False True False 12 True True automatic automatic in True True 0 True True 6 0 True False <b>Select Menu:</b> True True True 0 True True 0 True True 0 True False True False 16 True True True True False True False True False dialog-close False False 0 True False Close True True 1 True True 0 True True True False True False True False list-add True True 0 True False Add True True 1 True True 1 True True True False True False True False view-refresh True True 0 True False Refresh True True 1 True True 2 True True True False True False True False dialog-ok True True 0 True False Apply True True 1 True True 3 False False end 0 True True 1 True False 0.49000000953674316 <b>Edit Menu:</b> True guake-indicator/data/Makefile.in000664 001750 001750 00000046577 12451035035 017215 0ustar00ozzyozzy000000 000000 # Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = data DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(uidir)" DATA = $(ui_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPINDICATORLIB = @APPINDICATORLIB@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKLIB = @GTKLIB@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = icons uidir = $(datadir)/guake-indicator ui_DATA = \ gi_edit_menu_dialog.glade \ gi_custom_cmd_form.glade \ gi_plugin_dialog.glade \ hosticon.png \ labelicon.png \ hostgroupicon.png EXTRA_DIST = \ $(ui_DATA) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-uiDATA: $(ui_DATA) @$(NORMAL_INSTALL) @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(uidir)'"; \ $(MKDIR_P) "$(DESTDIR)$(uidir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \ done uninstall-uiDATA: @$(NORMAL_UNINSTALL) @list='$(ui_DATA)'; test -n "$(uidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(uidir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(uidir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-uiDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-uiDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic cscopelist-am ctags ctags-am \ distclean distclean-generic distclean-tags distdir dvi dvi-am \ html html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip install-uiDATA \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-uiDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: guake-indicator/data/gi_edit_menu_dialog.glade000664 001750 001750 00000232742 12451035035 022104 0ustar00ozzyozzy000000 000000 1000 768 False Guake Indicator Menu Editor False center True True False 10 0 in True False 10 4 True False True False True False 0 none 340 True False True False 12 True True automatic automatic in True True 0 True True 6 0 340 True False 12 True False True True True False True False Collapse go-previous True True True 0 True True True False True False Expand go-next True True 1 False False 0 True False 0 in True False 0 4 4 8 8 True False 2 True True True True False 0 True False True False 0 go-top False True 0 True False Top True True 1 True True 0 True True True False 0 True False True False 0 go-up False True 0 True False Up True True 1 True True 1 True True True False 0 True False True False 0 go-down False True 0 True False Down True True 1 True True 2 True True True False 0 True False True False go-bottom False True 0 True False Bottom True True 1 True True 3 True False <b>Move</b> True False False 1 True False 0 in True False 0 4 4 8 8 True False 2 True True True True False 0 True False True False list-add False False 0 True False Group True True 1 True True 0 True True True False 0 True False True False list-add False False 0 True False Group Label True True 1 True True 1 True True True False 0 True False True False list-add False False 0 True False Entry True True 1 True True 2 True True True False 0 True False True False list-add False False 0 True False Entry Label True True 1 True True 3 True False <b>New</b> True False False 2 False True 2 1 True False <b>Select Menu:</b> True True True 0 True True 0 True True 0 True False 4 140 True False 0.95999997854232788 5 <b>Menu name:</b> True right False True 0 True False True True gtk-clear False True True True Clear True True 1 False True 4 1 True False 4 140 True False 0.95999997854232788 5 <b>Rename Tab with:</b> True right False True 0 True False True True gtk-clear False True True True Clear True True 1 False True 4 2 True False True False 0 0 5 <b>Command:</b> True start False False 0 75 True False 4 True True automatic automatic True True True True 0 ... True False True True False right False True 1 False True 4 1 True True 3 True False 4 Dont show Guake True False True False If checked Guake does not show up after the command is sent to him False True True False 0 Send LFCR True True False If checked it sends a LF (Line Feed) + RC (Return Carriage) at the end of each line. If not checked it sends only a LF False True True False 1 Enable guake-indicator scripting True True False To learn how to script with guake-indicator refer to the scripting section of http://guake-indicator.ozzyboshi.com False True True False 2 False True 4 4 True False True True 5 True False 14 True False 0.95999997854232788 5 <b>Open in:</b> True right False False 0 new Guake tab True True False False True True radiobutton3 False False 1 current Guake tab True True False False True radiobutton3 False False 2 True False Guake tab index True True False False True radiobutton3 True True 0 True True 10 0.05000000074505806 True False False True True True True True True 1 True True 3 True False True first Guake tab named True True False False True radiobutton3 True True 0 True False True True gtk-clear False True True True Clear Clear True True 1 True True 4 True True 4 6 True False True True 7 True False True False 16 True True True True False True False True False drive-removable-media False False 0 True False Export True True 1 True True 0 True True True False True False True False dialog-close False False 0 True False Close True True 1 True True 1 True False True True False True False True False edit-delete True True 0 True False Remove True True 1 True True 2 True False True True False bottom True False True False document-save False False 0 True False Save True True 1 True True 3 False False end 0 True True 8 True False 0.49000000953674316 <b>Edit Menu:</b> True radiobutton True True False False True True guake-indicator/autogen.sh000775 001750 001750 00000000247 12451035035 016220 0ustar00ozzyozzy000000 000000 #!/bin/sh PKG_NAME="guake-indicator" which gnome-autogen.sh || { echo "You need gnome-common from GNOME Git" exit 1 } USE_GNOME2_MACROS=1 \ . gnome-autogen.sh $@ guake-indicator/INSTALL000664 001750 001750 00000036610 12451035035 015253 0ustar00ozzyozzy000000 000000 Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. guake-indicator/compile000775 001750 001750 00000016245 12451035035 015602 0ustar00ozzyozzy000000 000000 #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: guake-indicator/data/Makefile.am000664 001750 001750 00000000353 12451035035 017162 0ustar00ozzyozzy000000 000000 SUBDIRS = icons uidir = $(datadir)/guake-indicator ui_DATA = \ gi_edit_menu_dialog.glade \ gi_custom_cmd_form.glade \ gi_plugin_dialog.glade \ hosticon.png \ labelicon.png \ hostgroupicon.png EXTRA_DIST = \ $(ui_DATA) guake-indicator/src/.deps/guake_indicator-guake-indicator-new-group.Po000664 001750 001750 00000153170 12451035035 026440 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-new-group.o: guake-indicator-new-group.c \ /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator.h \ guake-indicator-new-entry.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-write-json.h \ guake-indicator-new-group.h /usr/include/stdc-predef.h: /usr/include/string.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/include/xlocale.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/string3.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator.h: guake-indicator-new-entry.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-write-json.h: guake-indicator-new-group.h: guake-indicator/data/icons/16x16/apps/000775 001750 001750 00000000000 12451035035 017770 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/24x24/apps/000775 001750 001750 00000000000 12451035035 017766 5ustar00ozzyozzy000000 000000 guake-indicator/src/guake-indicator-dbus.h000664 001750 001750 00000003016 12451035035 021155 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include #include #define GUAKE_URI "org.guake.RemoteControl" #define GUAKE_PATH "/org/guake/RemoteControl" #define GUAKE_IFACE "org.guake.RemoteControl" DBusGProxy* guake_dbus_init(); gboolean guake_dbus_send(const gchar*,const gchar*); gboolean guake_dbus_send_intparam_with_string_return(const gchar*,gint32,gchar**); gboolean guake_dbus_send_noparams_with_integer_return(const gchar*,gint32*); gboolean guake_dbus_send_noparam(const gchar*); gboolean guake_show(); gboolean guake_newtab(); gboolean guake_gettabcount(gint32*); gboolean guake_getgtktabname(guint,gchar**); gboolean guake_selecttab(const gchar*); gboolean guake_renamecurrenttab(const gchar*); gboolean guake_executecommand(const char*); guake-indicator/data/icons/48x48/apps/000775 001750 001750 00000000000 12451035035 020002 5ustar00ozzyozzy000000 000000 guake-indicator/missing000775 001750 001750 00000015330 12451035035 015615 0ustar00ozzyozzy000000 000000 #! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: guake-indicator/guake-indicator.desktop000664 001750 001750 00000000525 12451035035 020657 0ustar00ozzyozzy000000 000000 [Desktop Entry] Name=Guake Indicator Comment=Use it to launch guake-indicator and a new icon will show up to the upper right corner of the screen TryExec=guake-indicator Exec=guake-indicator Icon=guake-indicator Type=Application Categories=GNOME;GTK;System;Utility;TerminalEmulator; StartupNotify=true Keywords=guake;ssh;terminal;indicator; guake-indicator/src/guake-indicator-dbus.c000664 001750 001750 00000010030 12451035035 021142 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "guake-indicator-dbus.h" DBusGProxy* guake_dbus_init() { DBusGConnection* bus; GError* error = NULL; DBusGProxy* remoteValue; bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (error != NULL) { g_printf("Couldn't connect to the Session bus %s", error->message); g_error_free (error); return NULL; } remoteValue =dbus_g_proxy_new_for_name(bus,GUAKE_URI,GUAKE_PATH,GUAKE_IFACE); if (remoteValue == NULL) { g_printf("Couldn't create the proxy object"); return NULL; } return remoteValue; } // Send a integer to the dbus system and get a string in return gboolean guake_dbus_send_intparam_with_string_return(const gchar* functname,gint32 param,gchar** ret) { GError* error = NULL; gchar* strret; DBusGProxy* remoteValue = guake_dbus_init(); if (remoteValue==NULL) return FALSE; if (!dbus_g_proxy_call (remoteValue, functname,&error,G_TYPE_INT, param,G_TYPE_INVALID,G_TYPE_STRING,&strret,G_TYPE_INVALID)) { g_printerr ("Error: %s\n", error->message); g_error_free (error); return FALSE; } *ret=strret; return TRUE; } // Get an integer from the dbus system gboolean guake_dbus_send_noparams_with_integer_return(const gchar* functname,gint32* ret) { GError* error = NULL; gboolean returnValue; DBusGProxy* remoteValue = guake_dbus_init(); if (remoteValue==NULL) return FALSE; *ret=-1; returnValue = dbus_g_proxy_call (remoteValue, functname,&error,G_TYPE_INVALID,G_TYPE_INT, ret,G_TYPE_INVALID); if (!returnValue) { //g_printerr ("Error: %s\n", error->message); g_error_free (error); return FALSE; } return TRUE; } gboolean guake_dbus_send(const gchar* functname,const gchar* param) { GError* error = NULL; gboolean returnValue; DBusGProxy* remoteValue = guake_dbus_init(); if (remoteValue==NULL) return FALSE; if (param==NULL) returnValue = dbus_g_proxy_call (remoteValue, functname,&error,G_TYPE_INVALID,G_TYPE_INVALID); else returnValue = dbus_g_proxy_call (remoteValue, functname,&error,G_TYPE_STRING,param,G_TYPE_INVALID,G_TYPE_INVALID); if (!returnValue) { g_error_free (error); return FALSE; } return TRUE; } gboolean guake_dbus_send_noparam(const gchar* funcname) { return guake_dbus_send(funcname,NULL); } // It shows Guake gboolean guake_show() { // Show is not supported on old guake versions, so i set a fallback on show_hide if (guake_dbus_send_noparam("show")==FALSE) return guake_dbus_send_noparam("show_hide"); return TRUE; } // It opens a new Guake tab gboolean guake_newtab() { return guake_dbus_send_noparam("add_tab"); } // It opens the nth Guake tab gboolean guake_selecttab(const gchar* param) { return guake_dbus_send("select_tab",param); } // Get number of Guake tabs gboolean guake_gettabcount(gint32* numtabs) { return guake_dbus_send_noparams_with_integer_return("get_tab_count",numtabs); } // Get number of the nth Guake tab gboolean guake_getgtktabname(guint tabindex,gchar** name) { return guake_dbus_send_intparam_with_string_return("get_gtktab_name",tabindex,name); } // It renames the current Guake tab gboolean guake_renamecurrenttab(const gchar* param) { return guake_dbus_send("rename_current_tab",param); } // It execute a command on a Guake shell gboolean guake_executecommand(const char* command) { return guake_dbus_send("execute_command",command); } guake-indicator/src/guake-indicator-xml.h000664 001750 001750 00000002453 12451035035 021024 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #define GUAKE_INDICATOR_DEFAULT_FILEXML "guake-indicator.xml" #define ENCODING "UTF-8" Host* create_new_host(HostGroup*, Host* ,const gchar* ,const gchar* ,const gchar* ,gboolean ,const gchar*,gboolean ,gboolean,gboolean,gboolean,gboolean ); gboolean check_xml_cfg_file_presence(); int write_xml_cfg_file(GArray*); int write_xml_cfg_file_from_file(GArray*,char*); GArray* read_xml_cfg_file(); GArray* read_xml_cfg_file_from_file(char* ); guake-indicator/src/guake-indicator-notify.h000664 001750 001750 00000001710 12451035035 021527 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #define LIBNOTIFY_SHARED_OBJECT "libnotify.so.4" int guake_notify(gchar*,gchar*); guake-indicator/data/icons/32x32/apps/000775 001750 001750 00000000000 12451035035 017764 5ustar00ozzyozzy000000 000000 guake-indicator/src/guake-indicator-notify.c000664 001750 001750 00000003603 12451035035 021525 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include int guake_notify(gchar* title,gchar* message ) { void *handle, *n; typedef void (*notify_init_t)(char *); typedef void *(*notify_notification_new_t)( char *, char *, char *, char *); typedef void (*notify_notification_set_timeout_t)( void *, int ); typedef void (*notify_notification_show_t)(void *, char *); handle= dlopen(LIBNOTIFY_SHARED_OBJECT, RTLD_LAZY); if (handle==NULL) return -1; notify_init_t init = (notify_init_t)dlsym(handle, "notify_init"); if (init==NULL) { dlclose(handle); return -1; } init("Basics"); notify_notification_new_t notification_function_ptr = (notify_notification_new_t)dlsym(handle, "notify_notification_new"); if (notification_function_ptr==NULL) { dlclose(handle); return -1; } n = notification_function_ptr(title, message, DATADIR"/"GUAKE_INDICATOR_ICON_DIR"/guake-indicator.png", NULL); notify_notification_show_t show = (notify_notification_show_t)dlsym(handle, "notify_notification_show"); if (show==NULL) { dlclose( handle ); return 1; } show(n, NULL ); return 0; } guake-indicator/TODO000664 001750 001750 00000000252 12451035035 014703 0ustar00ozzyozzy000000 000000 To get an updated information about things we're working on, please visit our bug tracker: https://bugs.launchpad.net/guake-indicator -- Alessio Garzi guake-indicator/src/guake-indicator-read-xml.c000664 001750 001750 00000014515 12451035035 021732 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include GArray* read_xml_cfg_file() { return read_xml_cfg_file_from_file(NULL); } GArray* read_xml_cfg_file_from_file(char* filecfginput) { char* filedir,*filecfg; GArray* hostgrouparray; Host* head=NULL; hostgrouparray = g_array_new (TRUE, FALSE, sizeof (HostGroup*)); filedir=checkandcreatedefaultdir(); if (filecfginput==NULL) asprintf(&filecfg,"%s/%s",filedir,GUAKE_INDICATOR_DEFAULT_FILEXML); else filecfg=strdup(filecfginput); free((void*)filedir); xmlNode *cur_node = NULL; LIBXML_TEST_VERSION xmlDoc *doc = NULL; doc = xmlReadFile(filecfg, NULL, 0); if (doc == NULL) { return NULL; } xmlNode *root_element = xmlDocGetRootElement(doc); cur_node = root_element->xmlChildrenNode; while (cur_node != NULL) { if (!xmlStrcmp(cur_node->name, (const xmlChar *)"HostGroup")) { xmlChar* label=xmlGetProp(cur_node,"label"); head=NULL; HostGroup* hostgroup = malloc(sizeof(HostGroup)); bzero((void*)hostgroup,sizeof(HostGroup)); sethostgroupcounterid(hostgroup); xmlChar* hostgrouplabel = xmlGetProp(cur_node,"name"); hostgroup->title=g_strdup((const gchar*)hostgrouplabel); xmlFree(hostgrouplabel); // read all the hosts xmlNode * host_node=cur_node->xmlChildrenNode; while (host_node != NULL) { if (!xmlStrcmp(host_node->name, (const xmlChar *)"Host")) { xmlChar* hostlabel=xmlGetProp(host_node,"label"); xmlNode * data_node=host_node->xmlChildrenNode; xmlChar* menu_name=NULL,*tab_name=NULL,*command_after_login=NULL,*dont_show_guake=NULL,*open_in_tab=NULL,*lfcr=NULL,*guakeindicatorscript=NULL,*named=NULL; while (data_node != NULL) { if (!xmlStrcmp(data_node->name, (const xmlChar *)"menu_name")) menu_name=xmlNodeListGetString(doc, data_node->children, 1); if (!xmlStrcmp(data_node->name, (const xmlChar *)"tab_name")) tab_name=xmlNodeListGetString(doc, data_node->children, 1); if (!xmlStrcmp(data_node->name, (const xmlChar *)"command_after_login")) command_after_login=xmlNodeListGetString(doc, data_node->children, 1); if (!xmlStrcmp(data_node->name, (const xmlChar *)"dont_show_guake")) dont_show_guake=xmlNodeListGetString(doc, data_node->children, 1); if (!xmlStrcmp(data_node->name, (const xmlChar *)"open_in_tab")) { open_in_tab=xmlNodeListGetString(doc, data_node->children, 1); if (open_in_tab) named=xmlGetProp(data_node,"named"); } if (!xmlStrcmp(data_node->name, (const xmlChar *)"lfcr")) lfcr=xmlNodeListGetString(doc, data_node->children, 1); if (!xmlStrcmp(data_node->name, (const xmlChar *)"guakeindicatorscript")) guakeindicatorscript=xmlNodeListGetString(doc, data_node->children, 1); data_node=data_node->next; } Host* newhost = create_new_host(hostgroup, head, menu_name, tab_name, command_after_login, dont_show_guake&&!strcasecmp((char*)dont_show_guake,"yes")?TRUE:FALSE, open_in_tab,hostlabel&&!strcasecmp((char*)hostlabel,"yes")?TRUE:FALSE, lfcr&&!strcasecmp((char*)lfcr,"yes")?TRUE:FALSE,\ guakeindicatorscript&&!strcasecmp((char*)guakeindicatorscript,"yes")?TRUE:FALSE, named&&!strcasecmp((char*)named,"yes")?TRUE:FALSE, FALSE); head=host_queue(head,newhost); hostgroup->hostarray=head; xmlFree(hostlabel); xmlFree(command_after_login); xmlFree(menu_name); xmlFree(tab_name); xmlFree(dont_show_guake); xmlFree(open_in_tab); xmlFree(lfcr); xmlFree(guakeindicatorscript); xmlFree(named); } host_node=host_node->next; } if ((!xmlStrcmp(label, (const xmlChar *)"yes"))) { hostgroup->label=TRUE; } // create a regular hostgroup else { // Set the open all row if we are not on the root node if (hostgroup->title) { Host* newhost = create_new_host( hostgroup,head,"Open all",NULL,NULL,FALSE,"",FALSE,FALSE,FALSE,FALSE,TRUE); head=host_queue(head,newhost); hostgroup->hostarray=head; } } xmlFree(label); g_array_append_val (hostgrouparray, hostgroup); } cur_node = cur_node->next; } xmlFree(cur_node); free(filecfg); xmlFreeDoc(doc); return hostgrouparray; } gboolean check_xml_cfg_file_presence() { char* filedir,*filecfg; gboolean ret; filedir=checkandcreatedefaultdir(); asprintf(&filecfg,"%s/%s",filedir,GUAKE_INDICATOR_DEFAULT_FILEXML); if( access( filecfg, F_OK ) != -1 ) ret=TRUE; else ret=FALSE; free((void*)filedir); free((void*)filecfg); return ret; } // Function for new host creation Host* create_new_host(HostGroup* parent, Host* head,const gchar* menu_name,const gchar* tab_name,const gchar* command,gboolean dont_show_guake,const gchar* open_in_tab,gboolean label,gboolean lfcr,gboolean guakeindicatorscript,gboolean named,gboolean open_all) { Host* host = (Host*) malloc(sizeof(Host)); bzero((void*)host,sizeof(Host)); sethostcounterid(host); host->parent=parent; host->menu_name=g_strdup(menu_name); if (label==TRUE) { host->label=TRUE; return host; } if (open_all==TRUE) { host->group_head=head; host->open_all=TRUE; return host; } host->tab_name=g_strdup(tab_name); host->command_after_login=g_strdup(command); if (dont_show_guake==TRUE) host->dont_show_guake=g_strdup("yes"); if (open_in_tab) { host->open_in_tab=g_strdup(open_in_tab); host->open_in_tab_named=named; } if (lfcr==TRUE) host->lfcr=g_strdup("yes"); if (guakeindicatorscript==TRUE) host->guakeindicatorscript=g_strdup("yes"); return host; } guake-indicator/data/icons/48x48/000775 001750 001750 00000000000 12451035035 017037 5ustar00ozzyozzy000000 000000 guake-indicator/install-sh000775 001750 001750 00000033255 12451035035 016230 0ustar00ozzyozzy000000 000000 #!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: guake-indicator/data/icons/Makefile.in000664 001750 001750 00000051521 12451035035 020311 0ustar00ozzyozzy000000 000000 # Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = data/icons DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_appsicon16_DATA) $(dist_appsicon22_DATA) \ $(dist_appsicon24_DATA) $(dist_appsicon256_DATA) \ $(dist_appsicon32_DATA) $(dist_appsicon48_DATA) \ $(dist_appsiconxpm_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(appsicon16dir)" \ "$(DESTDIR)$(appsicon22dir)" "$(DESTDIR)$(appsicon24dir)" \ "$(DESTDIR)$(appsicon256dir)" "$(DESTDIR)$(appsicon32dir)" \ "$(DESTDIR)$(appsicon48dir)" "$(DESTDIR)$(appsiconxpmdir)" DATA = $(dist_appsicon16_DATA) $(dist_appsicon22_DATA) \ $(dist_appsicon24_DATA) $(dist_appsicon256_DATA) \ $(dist_appsicon32_DATA) $(dist_appsicon48_DATA) \ $(dist_appsiconxpm_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPINDICATORLIB = @APPINDICATORLIB@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKLIB = @GTKLIB@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ iconthemedir = $(datadir)/icons/hicolor appsiconxpmdir = $(datadir)/pixmaps/guake-indicator appsicon16dir = $(iconthemedir)/16x16/apps appsicon22dir = $(iconthemedir)/22x22/apps appsicon24dir = $(iconthemedir)/24x24/apps appsicon32dir = $(iconthemedir)/32x32/apps appsicon48dir = $(iconthemedir)/48x48/apps appsicon256dir = $(iconthemedir)/256x256/apps dist_appsiconxpm_DATA = guake-indicator.xpm dist_appsicon16_DATA = 16x16/apps/guake-indicator.png dist_appsicon22_DATA = 22x22/apps/guake-indicator.png dist_appsicon24_DATA = 24x24/apps/guake-indicator.png dist_appsicon32_DATA = 32x32/apps/guake-indicator.png dist_appsicon48_DATA = 48x48/apps/guake-indicator.png dist_appsicon256_DATA = 256x256/apps/guake-indicator.png update_icon_cache = gtk-update-icon-cache --ignore-theme-index --force all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/icons/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/icons/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-dist_appsicon16DATA: $(dist_appsicon16_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon16_DATA)'; test -n "$(appsicon16dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon16dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon16dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon16dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon16dir)" || exit $$?; \ done uninstall-dist_appsicon16DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon16_DATA)'; test -n "$(appsicon16dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon16dir)'; $(am__uninstall_files_from_dir) install-dist_appsicon22DATA: $(dist_appsicon22_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon22_DATA)'; test -n "$(appsicon22dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon22dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon22dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon22dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon22dir)" || exit $$?; \ done uninstall-dist_appsicon22DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon22_DATA)'; test -n "$(appsicon22dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon22dir)'; $(am__uninstall_files_from_dir) install-dist_appsicon24DATA: $(dist_appsicon24_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon24_DATA)'; test -n "$(appsicon24dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon24dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon24dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon24dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon24dir)" || exit $$?; \ done uninstall-dist_appsicon24DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon24_DATA)'; test -n "$(appsicon24dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon24dir)'; $(am__uninstall_files_from_dir) install-dist_appsicon256DATA: $(dist_appsicon256_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon256_DATA)'; test -n "$(appsicon256dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon256dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon256dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon256dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon256dir)" || exit $$?; \ done uninstall-dist_appsicon256DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon256_DATA)'; test -n "$(appsicon256dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon256dir)'; $(am__uninstall_files_from_dir) install-dist_appsicon32DATA: $(dist_appsicon32_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon32_DATA)'; test -n "$(appsicon32dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon32dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon32dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon32dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon32dir)" || exit $$?; \ done uninstall-dist_appsicon32DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon32_DATA)'; test -n "$(appsicon32dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon32dir)'; $(am__uninstall_files_from_dir) install-dist_appsicon48DATA: $(dist_appsicon48_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsicon48_DATA)'; test -n "$(appsicon48dir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsicon48dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsicon48dir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicon48dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicon48dir)" || exit $$?; \ done uninstall-dist_appsicon48DATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsicon48_DATA)'; test -n "$(appsicon48dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsicon48dir)'; $(am__uninstall_files_from_dir) install-dist_appsiconxpmDATA: $(dist_appsiconxpm_DATA) @$(NORMAL_INSTALL) @list='$(dist_appsiconxpm_DATA)'; test -n "$(appsiconxpmdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appsiconxpmdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appsiconxpmdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsiconxpmdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsiconxpmdir)" || exit $$?; \ done uninstall-dist_appsiconxpmDATA: @$(NORMAL_UNINSTALL) @list='$(dist_appsiconxpm_DATA)'; test -n "$(appsiconxpmdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsiconxpmdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(appsicon16dir)" "$(DESTDIR)$(appsicon22dir)" "$(DESTDIR)$(appsicon24dir)" "$(DESTDIR)$(appsicon256dir)" "$(DESTDIR)$(appsicon32dir)" "$(DESTDIR)$(appsicon48dir)" "$(DESTDIR)$(appsiconxpmdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_appsicon16DATA \ install-dist_appsicon22DATA install-dist_appsicon24DATA \ install-dist_appsicon256DATA install-dist_appsicon32DATA \ install-dist_appsicon48DATA install-dist_appsiconxpmDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_appsicon16DATA \ uninstall-dist_appsicon22DATA uninstall-dist_appsicon24DATA \ uninstall-dist_appsicon256DATA uninstall-dist_appsicon32DATA \ uninstall-dist_appsicon48DATA uninstall-dist_appsiconxpmDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-data-am install-strip uninstall-am .PHONY: all all-am check check-am clean clean-generic cscopelist-am \ ctags-am distclean distclean-generic distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-data-hook install-dist_appsicon16DATA \ install-dist_appsicon22DATA install-dist_appsicon24DATA \ install-dist_appsicon256DATA install-dist_appsicon32DATA \ install-dist_appsicon48DATA install-dist_appsiconxpmDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \ uninstall uninstall-am uninstall-dist_appsicon16DATA \ uninstall-dist_appsicon22DATA uninstall-dist_appsicon24DATA \ uninstall-dist_appsicon256DATA uninstall-dist_appsicon32DATA \ uninstall-dist_appsicon48DATA uninstall-dist_appsiconxpmDATA \ uninstall-hook install-data-hook: install-update-icon-cache uninstall-hook: uninstall-update-icon-cache install-update-icon-cache: $(AM_V_at)$(POST_INSTALL) test -n "$(DESTDIR)" || $(update_icon_cache) "$(iconthemedir)" uninstall-update-icon-cache: $(AM_V_at)$(POST_UNINSTALL) test -n "$(DESTDIR)" || $(update_icon_cache) "$(iconthemedir)" # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: guake-indicator/src/Makefile.in000664 001750 001750 00000113525 12451035035 017057 0ustar00ozzyozzy000000 000000 # Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : bin_PROGRAMS = guake-indicator$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_guake_indicator_OBJECTS = \ guake_indicator-guake-indicator.$(OBJEXT) \ guake_indicator-guake-indicator-read-json.$(OBJEXT) \ guake_indicator-guake-indicator-notify.$(OBJEXT) \ guake_indicator-guake-indicator-dbus.$(OBJEXT) \ guake_indicator-guake-indicator-write-json.$(OBJEXT) \ guake_indicator-guake-indicator-edit-menu.$(OBJEXT) \ guake_indicator-guake-indicator-write-xml.$(OBJEXT) \ guake_indicator-guake-indicator-read-xml.$(OBJEXT) guake_indicator_OBJECTS = $(am_guake_indicator_OBJECTS) guake_indicator_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(guake_indicator_SOURCES) DIST_SOURCES = $(guake_indicator_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPINDICATORLIB = @APPINDICATORLIB@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKLIB = @GTKLIB@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = -lappindicator -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 `pkg-config --libs json-c` -lglib-2.0 -ldl -ldbus-glib-1 -lxml2 -lgconf-2 LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ guake_indicator_SOURCES = \ guake-indicator.c guake-indicator.h \ guake-indicator-read-json.c guake-indicator-read-json.h \ guake-indicator-notify.c guake-indicator-notify.h \ guake-indicator-dbus.c guake-indicator-dbus.h \ guake-indicator-write-json.c guake-indicator-read-json.h \ guake-indicator-edit-menu.c guake-indicator-edit-menu.h guake-indicator-write-xml.c guake-indicator-xml.h \ guake-indicator-read-xml.c guake_indicator_CPPFLAGS = -Wunused-variable `pkg-config --cflags gtk+-2.0` `pkg-config --cflags appindicator-0.1` `pkg-config --cflags json-c` `pkg-config --cflags libxml-2.0` -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gconf/2 AM_CFLAGS = -DDATADIR=\"$(datadir)\" -DPYTHONDATADIR=\"$(pythondir)\" all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) guake-indicator$(EXEEXT): $(guake_indicator_OBJECTS) $(guake_indicator_DEPENDENCIES) $(EXTRA_guake_indicator_DEPENDENCIES) @rm -f guake-indicator$(EXEEXT) $(AM_V_CCLD)$(LINK) $(guake_indicator_OBJECTS) $(guake_indicator_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-dbus.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-notify.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-read-json.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-read-xml.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-write-json.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator-write-xml.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/guake_indicator-guake-indicator.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` guake_indicator-guake-indicator.o: guake-indicator.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator.Tpo -c -o guake_indicator-guake-indicator.o `test -f 'guake-indicator.c' || echo '$(srcdir)/'`guake-indicator.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator.Tpo $(DEPDIR)/guake_indicator-guake-indicator.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator.c' object='guake_indicator-guake-indicator.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator.o `test -f 'guake-indicator.c' || echo '$(srcdir)/'`guake-indicator.c guake_indicator-guake-indicator.obj: guake-indicator.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator.Tpo -c -o guake_indicator-guake-indicator.obj `if test -f 'guake-indicator.c'; then $(CYGPATH_W) 'guake-indicator.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator.Tpo $(DEPDIR)/guake_indicator-guake-indicator.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator.c' object='guake_indicator-guake-indicator.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator.obj `if test -f 'guake-indicator.c'; then $(CYGPATH_W) 'guake-indicator.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator.c'; fi` guake_indicator-guake-indicator-read-json.o: guake-indicator-read-json.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-read-json.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-read-json.Tpo -c -o guake_indicator-guake-indicator-read-json.o `test -f 'guake-indicator-read-json.c' || echo '$(srcdir)/'`guake-indicator-read-json.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-read-json.Tpo $(DEPDIR)/guake_indicator-guake-indicator-read-json.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-read-json.c' object='guake_indicator-guake-indicator-read-json.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-read-json.o `test -f 'guake-indicator-read-json.c' || echo '$(srcdir)/'`guake-indicator-read-json.c guake_indicator-guake-indicator-read-json.obj: guake-indicator-read-json.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-read-json.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-read-json.Tpo -c -o guake_indicator-guake-indicator-read-json.obj `if test -f 'guake-indicator-read-json.c'; then $(CYGPATH_W) 'guake-indicator-read-json.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-read-json.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-read-json.Tpo $(DEPDIR)/guake_indicator-guake-indicator-read-json.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-read-json.c' object='guake_indicator-guake-indicator-read-json.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-read-json.obj `if test -f 'guake-indicator-read-json.c'; then $(CYGPATH_W) 'guake-indicator-read-json.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-read-json.c'; fi` guake_indicator-guake-indicator-notify.o: guake-indicator-notify.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-notify.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-notify.Tpo -c -o guake_indicator-guake-indicator-notify.o `test -f 'guake-indicator-notify.c' || echo '$(srcdir)/'`guake-indicator-notify.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-notify.Tpo $(DEPDIR)/guake_indicator-guake-indicator-notify.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-notify.c' object='guake_indicator-guake-indicator-notify.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-notify.o `test -f 'guake-indicator-notify.c' || echo '$(srcdir)/'`guake-indicator-notify.c guake_indicator-guake-indicator-notify.obj: guake-indicator-notify.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-notify.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-notify.Tpo -c -o guake_indicator-guake-indicator-notify.obj `if test -f 'guake-indicator-notify.c'; then $(CYGPATH_W) 'guake-indicator-notify.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-notify.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-notify.Tpo $(DEPDIR)/guake_indicator-guake-indicator-notify.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-notify.c' object='guake_indicator-guake-indicator-notify.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-notify.obj `if test -f 'guake-indicator-notify.c'; then $(CYGPATH_W) 'guake-indicator-notify.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-notify.c'; fi` guake_indicator-guake-indicator-dbus.o: guake-indicator-dbus.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-dbus.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-dbus.Tpo -c -o guake_indicator-guake-indicator-dbus.o `test -f 'guake-indicator-dbus.c' || echo '$(srcdir)/'`guake-indicator-dbus.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-dbus.Tpo $(DEPDIR)/guake_indicator-guake-indicator-dbus.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-dbus.c' object='guake_indicator-guake-indicator-dbus.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-dbus.o `test -f 'guake-indicator-dbus.c' || echo '$(srcdir)/'`guake-indicator-dbus.c guake_indicator-guake-indicator-dbus.obj: guake-indicator-dbus.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-dbus.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-dbus.Tpo -c -o guake_indicator-guake-indicator-dbus.obj `if test -f 'guake-indicator-dbus.c'; then $(CYGPATH_W) 'guake-indicator-dbus.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-dbus.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-dbus.Tpo $(DEPDIR)/guake_indicator-guake-indicator-dbus.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-dbus.c' object='guake_indicator-guake-indicator-dbus.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-dbus.obj `if test -f 'guake-indicator-dbus.c'; then $(CYGPATH_W) 'guake-indicator-dbus.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-dbus.c'; fi` guake_indicator-guake-indicator-write-json.o: guake-indicator-write-json.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-write-json.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-write-json.Tpo -c -o guake_indicator-guake-indicator-write-json.o `test -f 'guake-indicator-write-json.c' || echo '$(srcdir)/'`guake-indicator-write-json.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-write-json.Tpo $(DEPDIR)/guake_indicator-guake-indicator-write-json.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-write-json.c' object='guake_indicator-guake-indicator-write-json.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-write-json.o `test -f 'guake-indicator-write-json.c' || echo '$(srcdir)/'`guake-indicator-write-json.c guake_indicator-guake-indicator-write-json.obj: guake-indicator-write-json.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-write-json.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-write-json.Tpo -c -o guake_indicator-guake-indicator-write-json.obj `if test -f 'guake-indicator-write-json.c'; then $(CYGPATH_W) 'guake-indicator-write-json.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-write-json.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-write-json.Tpo $(DEPDIR)/guake_indicator-guake-indicator-write-json.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-write-json.c' object='guake_indicator-guake-indicator-write-json.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-write-json.obj `if test -f 'guake-indicator-write-json.c'; then $(CYGPATH_W) 'guake-indicator-write-json.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-write-json.c'; fi` guake_indicator-guake-indicator-edit-menu.o: guake-indicator-edit-menu.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-edit-menu.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Tpo -c -o guake_indicator-guake-indicator-edit-menu.o `test -f 'guake-indicator-edit-menu.c' || echo '$(srcdir)/'`guake-indicator-edit-menu.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Tpo $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-edit-menu.c' object='guake_indicator-guake-indicator-edit-menu.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-edit-menu.o `test -f 'guake-indicator-edit-menu.c' || echo '$(srcdir)/'`guake-indicator-edit-menu.c guake_indicator-guake-indicator-edit-menu.obj: guake-indicator-edit-menu.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-edit-menu.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Tpo -c -o guake_indicator-guake-indicator-edit-menu.obj `if test -f 'guake-indicator-edit-menu.c'; then $(CYGPATH_W) 'guake-indicator-edit-menu.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-edit-menu.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Tpo $(DEPDIR)/guake_indicator-guake-indicator-edit-menu.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-edit-menu.c' object='guake_indicator-guake-indicator-edit-menu.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-edit-menu.obj `if test -f 'guake-indicator-edit-menu.c'; then $(CYGPATH_W) 'guake-indicator-edit-menu.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-edit-menu.c'; fi` guake_indicator-guake-indicator-write-xml.o: guake-indicator-write-xml.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-write-xml.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Tpo -c -o guake_indicator-guake-indicator-write-xml.o `test -f 'guake-indicator-write-xml.c' || echo '$(srcdir)/'`guake-indicator-write-xml.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Tpo $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-write-xml.c' object='guake_indicator-guake-indicator-write-xml.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-write-xml.o `test -f 'guake-indicator-write-xml.c' || echo '$(srcdir)/'`guake-indicator-write-xml.c guake_indicator-guake-indicator-write-xml.obj: guake-indicator-write-xml.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-write-xml.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Tpo -c -o guake_indicator-guake-indicator-write-xml.obj `if test -f 'guake-indicator-write-xml.c'; then $(CYGPATH_W) 'guake-indicator-write-xml.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-write-xml.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Tpo $(DEPDIR)/guake_indicator-guake-indicator-write-xml.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-write-xml.c' object='guake_indicator-guake-indicator-write-xml.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-write-xml.obj `if test -f 'guake-indicator-write-xml.c'; then $(CYGPATH_W) 'guake-indicator-write-xml.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-write-xml.c'; fi` guake_indicator-guake-indicator-read-xml.o: guake-indicator-read-xml.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-read-xml.o -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Tpo -c -o guake_indicator-guake-indicator-read-xml.o `test -f 'guake-indicator-read-xml.c' || echo '$(srcdir)/'`guake-indicator-read-xml.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Tpo $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-read-xml.c' object='guake_indicator-guake-indicator-read-xml.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-read-xml.o `test -f 'guake-indicator-read-xml.c' || echo '$(srcdir)/'`guake-indicator-read-xml.c guake_indicator-guake-indicator-read-xml.obj: guake-indicator-read-xml.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT guake_indicator-guake-indicator-read-xml.obj -MD -MP -MF $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Tpo -c -o guake_indicator-guake-indicator-read-xml.obj `if test -f 'guake-indicator-read-xml.c'; then $(CYGPATH_W) 'guake-indicator-read-xml.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-read-xml.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Tpo $(DEPDIR)/guake_indicator-guake-indicator-read-xml.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='guake-indicator-read-xml.c' object='guake_indicator-guake-indicator-read-xml.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(guake_indicator_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o guake_indicator-guake-indicator-read-xml.obj `if test -f 'guake-indicator-read-xml.c'; then $(CYGPATH_W) 'guake-indicator-read-xml.c'; else $(CYGPATH_W) '$(srcdir)/guake-indicator-read-xml.c'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic cscopelist-am ctags ctags-am \ distclean distclean-compile distclean-generic distclean-tags \ distdir dvi dvi-am html html-am info info-am install \ install-am install-binPROGRAMS install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: guake-indicator/plugins/000775 001750 001750 00000000000 12451035035 015675 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/32x32/000775 001750 001750 00000000000 12451035035 017021 5ustar00ozzyozzy000000 000000 guake-indicator/src/guake-indicator-write-json.h000664 001750 001750 00000001736 12451035035 022330 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "json.h" const char* write_json_cfg_file_to_str(GArray*); json_object * build_json_data_obj(Host*); json_object * build_json_label_obj(Host*); int write_cfg_file(GArray*); guake-indicator/data/icons/16x16/apps/guake-indicator.png000664 001750 001750 00000001461 12451035035 023546 0ustar00ozzyozzy000000 000000 PNG  IHDRabKGD pHYsIIEtIME #غIDAT8˝Mh\U^f2&*@pںT$(B RJiE b)Rq!$Nqх HW](4(*F Ac:7y^3/y~y<:B`JfO} =Kku:<0O1YN/p빊͉qt@ %zm޻ 53(ȓ"q *ʊ4K $IFgu٧y(ɓ"ɨU,}RPh),Sb2-*Jl RJk4dI?!P)6Tqti8òx)F lL>÷_.~tIENDB`guake-indicator/src/.deps/000775 001750 001750 00000000000 12451035035 016014 5ustar00ozzyozzy000000 000000 guake-indicator/plugins/Makefile.am000664 001750 001750 00000000375 12451035035 017736 0ustar00ozzyozzy000000 000000 #bin_SCRIPTS = guake-indicator-plugin-manager #EXTRA_DIST = $(bin_SCRIPTS) guakeindicatormoduledir = $(pkgpythondir) guakeindicatormodule_PYTHON = guake-indicator-plugin-manager guakeindicatordir = $(bindir) EXTRA_DIST = $(guakeindicatormodule_PYTHON) guake-indicator/src/guake-indicator-write-json.c000664 001750 001750 00000011411 12451035035 022312 0ustar00ozzyozzy000000 000000 /* Copyright (C) 2013-2015 Alessio Garzi Copyright (C) 2013-2015 Francesco Minà This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "guake-indicator.h" #include "guake-indicator-read-json.h" #include "guake-indicator-write-json.h" #include const char* write_json_cfg_file_to_str(GArray* grouphostlist) { size_t i=0; json_object * outer_label_string=NULL; json_object * j_outerobj = json_object_new_object(); for (i=0;grouphostlist!=NULL && ilen;i++) { HostGroup* hostgroup = g_array_index (grouphostlist, HostGroup* , i); // Case of label outside the data array if (hostgroup->title!=NULL && hostgroup->label==TRUE) { outer_label_string = json_object_new_string(hostgroup->title); continue; } if (hostgroup->title!=NULL) { json_object * data_array_obj = json_object_new_object(); // Remember that there is a label outside the data array to apply if (outer_label_string!=NULL) { json_object_object_add(data_array_obj, "label",outer_label_string); outer_label_string=NULL; } json_object * data_array = json_object_new_array(); Host* hostPtr; for (hostPtr=hostgroup->hostarray;hostPtr;hostPtr=hostPtr->next) { // Open all hosts don't count because they are automatically created thus not written in the cfg file if (hostPtr->open_all==TRUE) continue; // Label inside data array if (hostPtr->label==TRUE) json_object_array_add(data_array,build_json_label_obj(hostPtr)); // Regular host else json_object_array_add(data_array,build_json_data_obj(hostPtr)); } json_object_object_add(data_array_obj,"data",data_array); json_object_object_add(j_outerobj, hostgroup->title,data_array_obj); } // data array in the root object else { json_object * data_array = json_object_new_array(); Host* hostPtr; for (hostPtr=hostgroup->hostarray;hostPtr;hostPtr=hostPtr->next) { // Label inside data array if (hostPtr->label==TRUE) json_object_array_add(data_array,build_json_label_obj(hostPtr)); // Regular host else json_object_array_add(data_array,build_json_data_obj(hostPtr)); } json_object_object_add(j_outerobj, "data",data_array); } } const char* retvalue = strdup(json_object_to_json_string_ext(j_outerobj, JSON_C_TO_STRING_PRETTY)); json_object_put(j_outerobj); return retvalue; } json_object * build_json_label_obj(Host* hostPtr) { json_object * label_obj = json_object_new_object(); json_object_object_add(label_obj,"label",json_object_new_string(hostPtr->menu_name)); return label_obj; } json_object * build_json_data_obj(Host* hostPtr) { json_object * data_obj = json_object_new_object(); if (hostPtr->hostname) json_object_object_add(data_obj,"hostname",json_object_new_string(hostPtr->hostname)); if (hostPtr->login) json_object_object_add(data_obj,"login",json_object_new_string(hostPtr->login)); json_object_object_add(data_obj,"menu_name",json_object_new_string(hostPtr->menu_name)); if (hostPtr->tab_name) json_object_object_add(data_obj,"tab_name",json_object_new_string(hostPtr->tab_name)); if (hostPtr->command_after_login!=NULL) json_object_object_add(data_obj,"command_after_login",json_object_new_string(hostPtr->command_after_login)); if (hostPtr->remote_command!=NULL) json_object_object_add(data_obj,"remote_command",json_object_new_string(hostPtr->remote_command)); if (hostPtr->x_forwarded!=NULL) json_object_object_add(data_obj,"x_forwarded",json_object_new_string(hostPtr->x_forwarded)); if (hostPtr->dont_show_guake!=NULL) json_object_object_add(data_obj,"dont_show_guake",json_object_new_string(hostPtr->dont_show_guake)); return data_obj; } int write_cfg_file(GArray* grouphostlist) { char* filedir,*filecfg; filedir=checkandcreatedefaultdir(); asprintf(&filecfg,"%s/%s",filedir,GUAKE_INDICATOR_DEFAULT_FILEJSON); free((void*)filedir); FILE * fd=fopen(filecfg,"w"); if (fd==NULL) { free((void*)filecfg); return -1; } const char* data = write_json_cfg_file_to_str(grouphostlist); fwrite((const void*)data,strlen(data),1,fd); fclose(fd); free((void*)filecfg); free((void*)data); return 0; } guake-indicator/src/Makefile.am000664 001750 001750 00000001757 12451035035 017051 0ustar00ozzyozzy000000 000000 bin_PROGRAMS = guake-indicator guake_indicator_SOURCES = \ guake-indicator.c guake-indicator.h \ guake-indicator-read-json.c guake-indicator-read-json.h \ guake-indicator-notify.c guake-indicator-notify.h \ guake-indicator-dbus.c guake-indicator-dbus.h \ guake-indicator-write-json.c guake-indicator-read-json.h \ guake-indicator-edit-menu.c guake-indicator-edit-menu.h guake-indicator-write-xml.c guake-indicator-xml.h \ guake-indicator-read-xml.c guake_indicator_CPPFLAGS = -Wunused-variable `pkg-config --cflags gtk+-2.0` `pkg-config --cflags appindicator-0.1` `pkg-config --cflags json-c` `pkg-config --cflags libxml-2.0` -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gconf/2 LIBS=-lappindicator -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 `pkg-config --libs json-c` -lglib-2.0 -ldl -ldbus-glib-1 -lxml2 -lgconf-2 AM_CFLAGS = -DDATADIR=\"$(datadir)\" -DPYTHONDATADIR=\"$(pythondir)\" guake-indicator/data/icons/Makefile.am000664 001750 001750 00000002165 12451035035 020300 0ustar00ozzyozzy000000 000000 iconthemedir = $(datadir)/icons/hicolor appsiconxpmdir=$(datadir)/pixmaps/guake-indicator appsicon16dir = $(iconthemedir)/16x16/apps appsicon22dir = $(iconthemedir)/22x22/apps appsicon24dir = $(iconthemedir)/24x24/apps appsicon32dir = $(iconthemedir)/32x32/apps appsicon48dir = $(iconthemedir)/48x48/apps appsicon256dir = $(iconthemedir)/256x256/apps dist_appsiconxpm_DATA = guake-indicator.xpm dist_appsicon16_DATA = 16x16/apps/guake-indicator.png dist_appsicon22_DATA = 22x22/apps/guake-indicator.png dist_appsicon24_DATA = 24x24/apps/guake-indicator.png dist_appsicon32_DATA = 32x32/apps/guake-indicator.png dist_appsicon48_DATA = 48x48/apps/guake-indicator.png dist_appsicon256_DATA = 256x256/apps/guake-indicator.png update_icon_cache = gtk-update-icon-cache --ignore-theme-index --force install-data-hook: install-update-icon-cache uninstall-hook: uninstall-update-icon-cache install-update-icon-cache: $(AM_V_at)$(POST_INSTALL) test -n "$(DESTDIR)" || $(update_icon_cache) "$(iconthemedir)" uninstall-update-icon-cache: $(AM_V_at)$(POST_UNINSTALL) test -n "$(DESTDIR)" || $(update_icon_cache) "$(iconthemedir)" guake-indicator/data/icons/22x22/apps/000775 001750 001750 00000000000 12451035035 017762 5ustar00ozzyozzy000000 000000 guake-indicator/config.h000664 001750 001750 00000003633 12451035035 015637 0ustar00ozzyozzy000000 000000 /* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the `bzero' function. */ #define HAVE_BZERO 1 /* Define to 1 if you have the header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_MEMORY_H 1 /* Define to 1 if you have the `mkdir' function. */ #define HAVE_MKDIR 1 /* Define to 1 if you have the header file. */ #define HAVE_STDINT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define to 1 if you have the `strdup' function. */ #define HAVE_STRDUP 1 /* Define to 1 if you have the `strerror' function. */ #define HAVE_STRERROR 1 /* Define to 1 if you have the header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the header file. */ #define HAVE_STRING_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_STAT_H 1 /* Define to 1 if you have the header file. */ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 /* Name of package */ #define PACKAGE "guake-indicator" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "gun101@email.it" /* Define to the full name of this package. */ #define PACKAGE_NAME "guake-indicator" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "guake-indicator 1.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "guake-indicator" /* Define to the home page for this package. */ #define PACKAGE_URL "" /* Define to the version of this package. */ #define PACKAGE_VERSION "1.0" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Version number of package */ #define VERSION "1.0" guake-indicator/data/hosticon.png000664 001750 001750 00000000726 12451035035 017466 0ustar00ozzyozzy000000 000000 PNG  IHDR7gAMA asRGB cHRMz&u0`:pQ<bKGD̿ pHYs  IDAT(ϵ?JAN)ҦWF i{E^AAXbJ,dȲZ$vx<ޟ(Z,GB&5[NdyB4?oB3;bARsoGwm$ w]=ż-.mErhڽF@ziRD_>*HqM[)IENDB`guake-indicator/configure.ac000664 001750 001750 00000004457 12451035035 016514 0ustar00ozzyozzy000000 000000 AC_INIT([guake-indicator], [1.1], [gun101@email.it]) # safety check , make sure that config is not run from outer space AC_CONFIG_SRCDIR([src/guake-indicator.c]) AC_CONFIG_SRCDIR([src/guake-indicator-read-json.c]) AM_INIT_AUTOMAKE([-Wall -Werror]) # Checks for programs. AC_PROG_CC AM_PROG_CC_C_O AM_PATH_PYTHON(2.5.0) #AC_CHECK_PROGS([GUAKE], [guake guake-prefs], [:]) #if test "$GUAKE" = :; then #AC_MSG_ERROR([This package needs guake.]) #fi # Checks for libraries. AC_CHECK_FUNCS([bzero]) AC_CHECK_FUNCS([mkdir]) AC_CHECK_FUNCS([strdup]) AC_CHECK_FUNCS([strerror]) AC_CHECK_LIB([appindicator], [app_indicator_new], [APPINDICATORLIB=-lindicator], [AC_MSG_ERROR([This package needs libappindicator.])]) AC_SUBST([APPINDICATORLIB]) AC_CHECK_LIB([gtk-x11-2.0], [gtk_action_group_new], [GTKLIB=-lgtk-x11-2.0], [AC_MSG_ERROR([This package needs gtk2.0.])]) AC_SUBST([GTKLIB]) # Checks for header files. AC_CHECK_HEADER([gtk/gtk.h]) AC_CHECK_HEADER([libappindicator/app-indicator.h]) AC_CHECK_HEADER([json-c/json.h],[],[AC_MSG_ERROR([libjson-c-dev not installed)])]) AC_CHECK_HEADER([glib.h]) AC_CHECK_HEADER([dbus/dbus-glib.h]) AC_CHECK_HEADER([gconf/gconf-client.h]) # python checks AC_MSG_CHECKING([for the python-urllib package]) ac_urllib2_result=`$PYTHON -c 'try: import urllib2 except Exception, e: print str(e)' 2> /dev/null` if test -z "$ac_urllib2_result"; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) AC_MSG_ERROR([cannot import Python module "urllib2". Please check if you have python-urllib2 installed. The error was: $ac_urllib2_results]) fi AC_MSG_CHECKING([for the python-BeautifulSoup package]) ac_BeautifulSoup_result=`$PYTHON -c 'try: import BeautifulSoup except Exception, e: print str(e)' 2> /dev/null` if test -z "$ac_BeautifulSoup_result"; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) AC_MSG_ERROR([cannot import Python module "BeautifulSoup". Please check if you have python-beautifulsoup installed. The error was: $ac_BeautifulSoup_result]) fi AC_MSG_CHECKING([for the python-BeautifulSoup package]) # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. # Output files. AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile src/Makefile data/Makefile plugins/Makefile data/icons/Makefile]) AC_OUTPUT guake-indicator/src/.deps/guake_indicator-guake-indicator-write-xml.Po000664 001750 001750 00000157027 12451035035 026452 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-write-xml.o: guake-indicator-write-xml.c \ /usr/include/stdc-predef.h guake-indicator.h \ /usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \ /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/xlocale.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-xml.h \ /usr/include/libxml2/libxml/parser.h \ /usr/include/libxml2/libxml/xmlversion.h \ /usr/include/libxml2/libxml/xmlexports.h \ /usr/include/libxml2/libxml/tree.h \ /usr/include/libxml2/libxml/xmlstring.h \ /usr/include/libxml2/libxml/xmlregexp.h \ /usr/include/libxml2/libxml/dict.h /usr/include/libxml2/libxml/hash.h \ /usr/include/libxml2/libxml/valid.h \ /usr/include/libxml2/libxml/xmlerror.h \ /usr/include/libxml2/libxml/list.h \ /usr/include/libxml2/libxml/xmlautomata.h \ /usr/include/libxml2/libxml/entities.h \ /usr/include/libxml2/libxml/encoding.h /usr/include/iconv.h \ /usr/include/libxml2/libxml/xmlIO.h \ /usr/include/libxml2/libxml/globals.h /usr/include/libxml2/libxml/SAX.h \ /usr/include/libxml2/libxml/xlink.h /usr/include/libxml2/libxml/SAX2.h \ /usr/include/libxml2/libxml/xmlmemory.h \ /usr/include/libxml2/libxml/threads.h \ /usr/include/libxml2/libxml/xpath.h /usr/include/strings.h \ guake-indicator-edit-menu.h /usr/include/gtk-2.0/gdk/gdkkeysyms.h \ /usr/include/gtk-2.0/gdk/gdkkeysyms-compat.h /usr/include/string.h \ /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h \ /usr/include/x86_64-linux-gnu/bits/string3.h /usr/include/stdc-predef.h: guake-indicator.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/xlocale.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-xml.h: /usr/include/libxml2/libxml/parser.h: /usr/include/libxml2/libxml/xmlversion.h: /usr/include/libxml2/libxml/xmlexports.h: /usr/include/libxml2/libxml/tree.h: /usr/include/libxml2/libxml/xmlstring.h: /usr/include/libxml2/libxml/xmlregexp.h: /usr/include/libxml2/libxml/dict.h: /usr/include/libxml2/libxml/hash.h: /usr/include/libxml2/libxml/valid.h: /usr/include/libxml2/libxml/xmlerror.h: /usr/include/libxml2/libxml/list.h: /usr/include/libxml2/libxml/xmlautomata.h: /usr/include/libxml2/libxml/entities.h: /usr/include/libxml2/libxml/encoding.h: /usr/include/iconv.h: /usr/include/libxml2/libxml/xmlIO.h: /usr/include/libxml2/libxml/globals.h: /usr/include/libxml2/libxml/SAX.h: /usr/include/libxml2/libxml/xlink.h: /usr/include/libxml2/libxml/SAX2.h: /usr/include/libxml2/libxml/xmlmemory.h: /usr/include/libxml2/libxml/threads.h: /usr/include/libxml2/libxml/xpath.h: /usr/include/strings.h: guake-indicator-edit-menu.h: /usr/include/gtk-2.0/gdk/gdkkeysyms.h: /usr/include/gtk-2.0/gdk/gdkkeysyms-compat.h: /usr/include/string.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/x86_64-linux-gnu/bits/string3.h: guake-indicator/data/icons/48x48/apps/guake-indicator.png000664 001750 001750 00000007132 12451035035 023561 0ustar00ozzyozzy000000 000000 PNG  IHDR00WbKGD pHYsIIEtIME &ot IDATh՚{]}?3s}oۀBync+4 H MBhAJ -X%J$-"!ADPNxLp?~kwo9sH9wΙ3g3~+Wv9]GQt0Z1ZFY͜9S u~E$MG ͟AMlj*r?g=o9M#r"@h66ZCkSh!M-#3:׷ؗD7nqܒsW\ԅ?kB_4B^Is>N3>#I"JPc}p" !5A P! 3{&U)t 3jkV @:K0fl@s3T%y<VtY]yZkI @<9hŐi[$ MS؈y:Ԓ9' yHhYlx|Ns!Lbd9^6ާ~VbѬZm:pF1[kpk]5r9 eՒ>6DB(#R yO%RN*KE -q6y>Imc*9ֹ^Ђ3Q]E9GiRY[v#h26qRRT+r[[{%:W;s9U"ޡ=ޏ5FiٽhXxɬ>qG`58AX AEBf*~"Ҹ: Ai1H|akd HjiVK #$;jF$4 YVD&"4F_<\9ߘ#,U-HtT%yPxPZc OæLaR$ΧjF!Ml.tkO$R#Fk6!F0^1ΜS ΃\uf,; 'FbUdtbؠ1MFVY| x mT5CjX fRARՅˁ  'ujs8QǛ5x6DMDdRً̛fs90ER!iS1h(VjT9؀цB'*lc9<JCg1.s b-jlbR_1ե+(}d&ʸeM^(BkSse&ymX'D&Wn;814_~s wS*Gks9|C92<#:a#3ְ響hSxȐ=筀տy%}c-I@Ͷ^]uz_7y٭Tk. )^|Nj){;ʜe@Xfi$8%Pc1#e)k_Jo1Qooan.^]osn?Q,MuDQ3+/_\=vo~c-Ih0  bQ zz{%cV}J&&&(PK8fY(_dǻ;wn˗p|䏹,trUcχp7}aRH.E2iD,X &29|]JeJ"˖- epY);6^ ykW,Gg Klyg?Aq~ LPdExIBk-/{O\DQJ7L?^yk|{|R.|޴#>xiTMP9xBjZIX~{Y؃Ԋ S8_'7C_w}ts߃/''ۻ~* HHMפSVVDqL8AoO73)Te<4RLaXy7+e$8P͚uR#kc- TSjN=T(|. ^P- m OsM'0s0Ơ&xtT*"):={6y ֬GI&@yiZR$ j=T*?v <"]̝{rE@Q:^|/H0O&]Be[I*RP(0g b>.]nK.! i>datt`dЗ./d}WW'0B fϞARj5/ A#GJ!e@omsA} p6⬃D"B((J9rc Z8nlLIg. @2Ns)4<e tztI~FGGZf(ֳ"Sg]u ]?men*'"ŋx*QƗLiZ`Zr´۶Sd*HI{ HT*3zh=\@hsR݇ܿ; ;mxgˇҗsJf;ΆWPc#l~mfZ&l߫xI7{/8oy]tQ)K}GO$mEuujEϧӄR>< :_Q|@#IENDB`guake-indicator/src/.deps/guake_indicator-guake-indicator-delete-entry-group.Po000664 001750 001750 00000153237 12451035035 030254 0ustar00ozzyozzy000000 000000 guake_indicator-guake-indicator-delete-entry-group.o: \ guake-indicator-delete-entry-group.c /usr/include/stdc-predef.h \ /usr/include/string.h /usr/include/features.h \ /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \ /usr/include/xlocale.h /usr/include/x86_64-linux-gnu/bits/string.h \ /usr/include/x86_64-linux-gnu/bits/string2.h /usr/include/endian.h \ /usr/include/x86_64-linux-gnu/bits/endian.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/byteswap-16.h /usr/include/stdlib.h \ /usr/include/x86_64-linux-gnu/bits/string3.h \ /usr/include/gtk-2.0/gtk/gtk.h /usr/include/gtk-2.0/gdk/gdk.h \ /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h \ /usr/include/glib-2.0/gio/gio.h /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gioenums.h /usr/include/glib-2.0/glib-object.h \ /usr/include/glib-2.0/gobject/gbinding.h /usr/include/glib-2.0/glib.h \ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \ /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h \ /usr/include/glib-2.0/glib/gmacros.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h \ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ /usr/include/x86_64-linux-gnu/bits/local_lim.h \ /usr/include/linux/limits.h \ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h \ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \ /usr/include/x86_64-linux-gnu/bits/time.h \ /usr/include/glib-2.0/glib/garray.h \ /usr/include/glib-2.0/glib/gasyncqueue.h \ /usr/include/glib-2.0/glib/gthread.h \ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \ /usr/include/glib-2.0/glib/gquark.h \ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \ /usr/include/x86_64-linux-gnu/bits/sigset.h \ /usr/include/x86_64-linux-gnu/bits/signum.h \ /usr/include/x86_64-linux-gnu/bits/siginfo.h \ /usr/include/x86_64-linux-gnu/bits/sigaction.h \ /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ /usr/include/x86_64-linux-gnu/bits/sigstack.h \ /usr/include/x86_64-linux-gnu/sys/ucontext.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/sigthread.h \ /usr/include/glib-2.0/glib/gbase64.h \ /usr/include/glib-2.0/glib/gbitlock.h \ /usr/include/glib-2.0/glib/gbookmarkfile.h \ /usr/include/glib-2.0/glib/gbytes.h \ /usr/include/glib-2.0/glib/gcharset.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/gconvert.h \ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \ /usr/include/glib-2.0/glib/gdatetime.h \ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \ /usr/include/dirent.h /usr/include/x86_64-linux-gnu/bits/dirent.h \ /usr/include/glib-2.0/glib/genviron.h \ /usr/include/glib-2.0/glib/gfileutils.h \ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \ /usr/include/glib-2.0/glib/gchecksum.h \ /usr/include/glib-2.0/glib/ghook.h \ /usr/include/glib-2.0/glib/ghostutils.h \ /usr/include/glib-2.0/glib/giochannel.h \ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \ /usr/include/glib-2.0/glib/gunicode.h \ /usr/include/glib-2.0/glib/gutils.h \ /usr/include/glib-2.0/glib/gkeyfile.h \ /usr/include/glib-2.0/glib/gmappedfile.h \ /usr/include/glib-2.0/glib/gmarkup.h \ /usr/include/glib-2.0/glib/gmessages.h \ /usr/include/glib-2.0/glib/goption.h \ /usr/include/glib-2.0/glib/gpattern.h \ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \ /usr/include/glib-2.0/glib/gregex.h \ /usr/include/glib-2.0/glib/gscanner.h \ /usr/include/glib-2.0/glib/gsequence.h \ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \ /usr/include/glib-2.0/glib/gspawn.h \ /usr/include/glib-2.0/glib/gstrfuncs.h \ /usr/include/glib-2.0/glib/gstringchunk.h \ /usr/include/glib-2.0/glib/gtestutils.h \ /usr/include/glib-2.0/glib/gthreadpool.h \ /usr/include/glib-2.0/glib/gtimer.h \ /usr/include/glib-2.0/glib/gtrashstack.h \ /usr/include/glib-2.0/glib/gtree.h \ /usr/include/glib-2.0/glib/gurifuncs.h \ /usr/include/glib-2.0/glib/gvarianttype.h \ /usr/include/glib-2.0/glib/gvariant.h \ /usr/include/glib-2.0/glib/gversion.h \ /usr/include/glib-2.0/glib/deprecated/gallocator.h \ /usr/include/glib-2.0/glib/deprecated/gcache.h \ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \ /usr/include/glib-2.0/glib/deprecated/gmain.h \ /usr/include/glib-2.0/glib/deprecated/grel.h \ /usr/include/glib-2.0/glib/deprecated/gthread.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ /usr/include/x86_64-linux-gnu/bits/select.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/sys/sysmacros.h /usr/include/pthread.h \ /usr/include/sched.h /usr/include/x86_64-linux-gnu/bits/sched.h \ /usr/include/x86_64-linux-gnu/bits/setjmp.h \ /usr/include/glib-2.0/gobject/gobject.h \ /usr/include/glib-2.0/gobject/gtype.h \ /usr/include/glib-2.0/gobject/gvalue.h \ /usr/include/glib-2.0/gobject/gparam.h \ /usr/include/glib-2.0/gobject/gclosure.h \ /usr/include/glib-2.0/gobject/gsignal.h \ /usr/include/glib-2.0/gobject/gmarshal.h \ /usr/include/glib-2.0/gobject/gboxed.h \ /usr/include/glib-2.0/gobject/glib-types.h \ /usr/include/glib-2.0/gobject/genums.h \ /usr/include/glib-2.0/gobject/gparamspecs.h \ /usr/include/glib-2.0/gobject/gsourceclosure.h \ /usr/include/glib-2.0/gobject/gtypemodule.h \ /usr/include/glib-2.0/gobject/gtypeplugin.h \ /usr/include/glib-2.0/gobject/gvaluearray.h \ /usr/include/glib-2.0/gobject/gvaluetypes.h \ /usr/include/glib-2.0/gio/gaction.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroupexporter.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gappinfo.h \ /usr/include/glib-2.0/gio/gapplication.h \ /usr/include/glib-2.0/gio/gapplicationcommandline.h \ /usr/include/glib-2.0/gio/gasyncinitable.h \ /usr/include/glib-2.0/gio/ginitable.h \ /usr/include/glib-2.0/gio/gasyncresult.h \ /usr/include/glib-2.0/gio/gbufferedinputstream.h \ /usr/include/glib-2.0/gio/gfilterinputstream.h \ /usr/include/glib-2.0/gio/ginputstream.h \ /usr/include/glib-2.0/gio/gbufferedoutputstream.h \ /usr/include/glib-2.0/gio/gfilteroutputstream.h \ /usr/include/glib-2.0/gio/goutputstream.h \ /usr/include/glib-2.0/gio/gbytesicon.h \ /usr/include/glib-2.0/gio/gcancellable.h \ /usr/include/glib-2.0/gio/gcharsetconverter.h \ /usr/include/glib-2.0/gio/gconverter.h \ /usr/include/glib-2.0/gio/gcontenttype.h \ /usr/include/glib-2.0/gio/gconverterinputstream.h \ /usr/include/glib-2.0/gio/gconverteroutputstream.h \ /usr/include/glib-2.0/gio/gcredentials.h /usr/include/unistd.h \ /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ /usr/include/x86_64-linux-gnu/bits/environments.h \ /usr/include/x86_64-linux-gnu/bits/confname.h /usr/include/getopt.h \ /usr/include/x86_64-linux-gnu/bits/unistd.h \ /usr/include/glib-2.0/gio/gdatainputstream.h \ /usr/include/glib-2.0/gio/gdataoutputstream.h \ /usr/include/glib-2.0/gio/gdbusaddress.h \ /usr/include/glib-2.0/gio/gdbusauthobserver.h \ /usr/include/glib-2.0/gio/gdbusconnection.h \ /usr/include/glib-2.0/gio/gdbuserror.h \ /usr/include/glib-2.0/gio/gdbusintrospection.h \ /usr/include/glib-2.0/gio/gdbusmessage.h \ /usr/include/glib-2.0/gio/gdbusmethodinvocation.h \ /usr/include/glib-2.0/gio/gdbusnameowning.h \ /usr/include/glib-2.0/gio/gdbusnamewatching.h \ /usr/include/glib-2.0/gio/gdbusproxy.h \ /usr/include/glib-2.0/gio/gdbusserver.h \ /usr/include/glib-2.0/gio/gdbusutils.h \ /usr/include/glib-2.0/gio/gdrive.h \ /usr/include/glib-2.0/gio/gemblemedicon.h \ /usr/include/glib-2.0/gio/gicon.h /usr/include/glib-2.0/gio/gemblem.h \ /usr/include/glib-2.0/gio/gfileattribute.h \ /usr/include/glib-2.0/gio/gfileenumerator.h \ /usr/include/glib-2.0/gio/gfile.h /usr/include/glib-2.0/gio/gfileicon.h \ /usr/include/glib-2.0/gio/gfileinfo.h \ /usr/include/glib-2.0/gio/gfileinputstream.h \ /usr/include/glib-2.0/gio/gfileiostream.h \ /usr/include/glib-2.0/gio/giostream.h \ /usr/include/glib-2.0/gio/gioerror.h \ /usr/include/glib-2.0/gio/gfilemonitor.h \ /usr/include/glib-2.0/gio/gfilenamecompleter.h \ /usr/include/glib-2.0/gio/gfileoutputstream.h \ /usr/include/glib-2.0/gio/ginetaddress.h \ /usr/include/glib-2.0/gio/ginetaddressmask.h \ /usr/include/glib-2.0/gio/ginetsocketaddress.h \ /usr/include/glib-2.0/gio/gsocketaddress.h \ /usr/include/glib-2.0/gio/gioenumtypes.h \ /usr/include/glib-2.0/gio/giomodule.h /usr/include/glib-2.0/gmodule.h \ /usr/include/glib-2.0/gio/gioscheduler.h \ /usr/include/glib-2.0/gio/gloadableicon.h \ /usr/include/glib-2.0/gio/gmemoryinputstream.h \ /usr/include/glib-2.0/gio/gmemoryoutputstream.h \ /usr/include/glib-2.0/gio/gmount.h \ /usr/include/glib-2.0/gio/gmountoperation.h \ /usr/include/glib-2.0/gio/gnativevolumemonitor.h \ /usr/include/glib-2.0/gio/gvolumemonitor.h \ /usr/include/glib-2.0/gio/gnetworkaddress.h \ /usr/include/glib-2.0/gio/gnetworkmonitor.h \ /usr/include/glib-2.0/gio/gnetworkservice.h \ /usr/include/glib-2.0/gio/gpermission.h \ /usr/include/glib-2.0/gio/gpollableinputstream.h \ /usr/include/glib-2.0/gio/gpollableoutputstream.h \ /usr/include/glib-2.0/gio/gpollableutils.h \ /usr/include/glib-2.0/gio/gpropertyaction.h \ /usr/include/glib-2.0/gio/gproxy.h \ /usr/include/glib-2.0/gio/gproxyaddress.h \ /usr/include/glib-2.0/gio/gproxyaddressenumerator.h \ /usr/include/glib-2.0/gio/gsocketaddressenumerator.h \ /usr/include/glib-2.0/gio/gproxyresolver.h \ /usr/include/glib-2.0/gio/gresolver.h \ /usr/include/glib-2.0/gio/gresource.h \ /usr/include/glib-2.0/gio/gseekable.h \ /usr/include/glib-2.0/gio/gsettingsschema.h \ /usr/include/glib-2.0/gio/gsettings.h \ /usr/include/glib-2.0/gio/gsimpleaction.h \ /usr/include/glib-2.0/gio/gsimpleactiongroup.h \ /usr/include/glib-2.0/gio/gactiongroup.h \ /usr/include/glib-2.0/gio/gactionmap.h \ /usr/include/glib-2.0/gio/gsimpleasyncresult.h \ /usr/include/glib-2.0/gio/gsimplepermission.h \ /usr/include/glib-2.0/gio/gsocketclient.h \ /usr/include/glib-2.0/gio/gsocketconnectable.h \ /usr/include/glib-2.0/gio/gsocketconnection.h \ /usr/include/glib-2.0/gio/gsocket.h \ /usr/include/glib-2.0/gio/gsocketcontrolmessage.h \ /usr/include/glib-2.0/gio/gsocketlistener.h \ /usr/include/glib-2.0/gio/gsocketservice.h \ /usr/include/glib-2.0/gio/gsrvtarget.h \ /usr/include/glib-2.0/gio/gsimpleproxyresolver.h \ /usr/include/glib-2.0/gio/gtask.h \ /usr/include/glib-2.0/gio/gsubprocess.h \ /usr/include/glib-2.0/gio/gsubprocesslauncher.h \ /usr/include/glib-2.0/gio/gtcpconnection.h \ /usr/include/glib-2.0/gio/gtcpwrapperconnection.h \ /usr/include/glib-2.0/gio/gtestdbus.h \ /usr/include/glib-2.0/gio/gthemedicon.h \ /usr/include/glib-2.0/gio/gthreadedsocketservice.h \ /usr/include/glib-2.0/gio/gtlsbackend.h \ /usr/include/glib-2.0/gio/gtlscertificate.h \ /usr/include/glib-2.0/gio/gtlsclientconnection.h \ /usr/include/glib-2.0/gio/gtlsconnection.h \ /usr/include/glib-2.0/gio/gtlsdatabase.h \ /usr/include/glib-2.0/gio/gtlsfiledatabase.h \ /usr/include/glib-2.0/gio/gtlsinteraction.h \ /usr/include/glib-2.0/gio/gtlsserverconnection.h \ /usr/include/glib-2.0/gio/gtlspassword.h \ /usr/include/glib-2.0/gio/gvfs.h /usr/include/glib-2.0/gio/gvolume.h \ /usr/include/glib-2.0/gio/gzlibcompressor.h \ /usr/include/glib-2.0/gio/gzlibdecompressor.h \ /usr/include/glib-2.0/gio/gdbusinterface.h \ /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h \ /usr/include/glib-2.0/gio/gdbusobject.h \ /usr/include/glib-2.0/gio/gdbusobjectskeleton.h \ /usr/include/glib-2.0/gio/gdbusobjectproxy.h \ /usr/include/glib-2.0/gio/gdbusobjectmanager.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h \ /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h \ /usr/include/glib-2.0/gio/gdbusactiongroup.h \ /usr/include/glib-2.0/gio/giotypes.h \ /usr/include/glib-2.0/gio/gremoteactiongroup.h \ /usr/include/glib-2.0/gio/gmenumodel.h /usr/include/glib-2.0/gio/gmenu.h \ /usr/include/glib-2.0/gio/gmenuexporter.h \ /usr/include/glib-2.0/gio/gdbusmenumodel.h \ /usr/include/glib-2.0/gio/gnotification.h \ /usr/include/gtk-2.0/gdk/gdkscreen.h /usr/include/cairo/cairo.h \ /usr/include/cairo/cairo-version.h /usr/include/cairo/cairo-features.h \ /usr/include/cairo/cairo-deprecated.h \ /usr/include/gtk-2.0/gdk/gdktypes.h /usr/include/pango-1.0/pango/pango.h \ /usr/include/pango-1.0/pango/pango-attributes.h \ /usr/include/pango-1.0/pango/pango-font.h \ /usr/include/pango-1.0/pango/pango-coverage.h \ /usr/include/pango-1.0/pango/pango-types.h \ /usr/include/pango-1.0/pango/pango-gravity.h \ /usr/include/pango-1.0/pango/pango-matrix.h \ /usr/include/pango-1.0/pango/pango-script.h \ /usr/include/pango-1.0/pango/pango-language.h \ /usr/include/pango-1.0/pango/pango-bidi-type.h \ /usr/include/pango-1.0/pango/pango-break.h \ /usr/include/pango-1.0/pango/pango-item.h \ /usr/include/pango-1.0/pango/pango-context.h \ /usr/include/pango-1.0/pango/pango-fontmap.h \ /usr/include/pango-1.0/pango/pango-fontset.h \ /usr/include/pango-1.0/pango/pango-engine.h \ /usr/include/pango-1.0/pango/pango-glyph.h \ /usr/include/pango-1.0/pango/pango-enum-types.h \ /usr/include/pango-1.0/pango/pango-features.h \ /usr/include/pango-1.0/pango/pango-glyph-item.h \ /usr/include/pango-1.0/pango/pango-layout.h \ /usr/include/pango-1.0/pango/pango-tabs.h \ /usr/include/pango-1.0/pango/pango-renderer.h \ /usr/include/pango-1.0/pango/pango-utils.h /usr/include/stdio.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ /usr/include/x86_64-linux-gnu/bits/stdio2.h \ /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h \ /usr/include/gtk-2.0/gdk/gdkdisplay.h \ /usr/include/gtk-2.0/gdk/gdkevents.h /usr/include/gtk-2.0/gdk/gdkcolor.h \ /usr/include/gtk-2.0/gdk/gdkdnd.h /usr/include/gtk-2.0/gdk/gdkinput.h \ /usr/include/gtk-2.0/gdk/gdkcairo.h /usr/include/gtk-2.0/gdk/gdkpixbuf.h \ /usr/include/gtk-2.0/gdk/gdkrgb.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h \ /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h \ /usr/include/pango-1.0/pango/pangocairo.h \ /usr/include/gtk-2.0/gdk/gdkcursor.h \ /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h \ /usr/include/gtk-2.0/gdk/gdkdrawable.h /usr/include/gtk-2.0/gdk/gdkgc.h \ /usr/include/gtk-2.0/gdk/gdkenumtypes.h \ /usr/include/gtk-2.0/gdk/gdkfont.h /usr/include/gtk-2.0/gdk/gdkimage.h \ /usr/include/gtk-2.0/gdk/gdkkeys.h /usr/include/gtk-2.0/gdk/gdkpango.h \ /usr/include/gtk-2.0/gdk/gdkpixmap.h \ /usr/include/gtk-2.0/gdk/gdkproperty.h \ /usr/include/gtk-2.0/gdk/gdkregion.h \ /usr/include/gtk-2.0/gdk/gdkselection.h \ /usr/include/gtk-2.0/gdk/gdkspawn.h \ /usr/include/gtk-2.0/gdk/gdktestutils.h \ /usr/include/gtk-2.0/gdk/gdkwindow.h \ /usr/include/gtk-2.0/gdk/gdkvisual.h \ /usr/include/gtk-2.0/gtk/gtkaboutdialog.h \ /usr/include/gtk-2.0/gtk/gtkdialog.h \ /usr/include/gtk-2.0/gtk/gtkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccelgroup.h \ /usr/include/gtk-2.0/gtk/gtkenums.h /usr/include/gtk-2.0/gtk/gtkbin.h \ /usr/include/gtk-2.0/gtk/gtkcontainer.h \ /usr/include/gtk-2.0/gtk/gtkwidget.h \ /usr/include/gtk-2.0/gtk/gtkobject.h \ /usr/include/gtk-2.0/gtk/gtktypeutils.h \ /usr/include/gtk-2.0/gtk/gtktypebuiltins.h \ /usr/include/gtk-2.0/gtk/gtkdebug.h \ /usr/include/gtk-2.0/gtk/gtkadjustment.h \ /usr/include/gtk-2.0/gtk/gtkstyle.h \ /usr/include/gtk-2.0/gtk/gtksettings.h /usr/include/gtk-2.0/gtk/gtkrc.h \ /usr/include/atk-1.0/atk/atk.h /usr/include/atk-1.0/atk/atkobject.h \ /usr/include/atk-1.0/atk/atkstate.h \ /usr/include/atk-1.0/atk/atkrelationtype.h \ /usr/include/atk-1.0/atk/atkaction.h \ /usr/include/atk-1.0/atk/atkcomponent.h \ /usr/include/atk-1.0/atk/atkutil.h \ /usr/include/atk-1.0/atk/atkdocument.h \ /usr/include/atk-1.0/atk/atkeditabletext.h \ /usr/include/atk-1.0/atk/atktext.h \ /usr/include/atk-1.0/atk/atkgobjectaccessible.h \ /usr/include/atk-1.0/atk/atkhyperlink.h \ /usr/include/atk-1.0/atk/atkhyperlinkimpl.h \ /usr/include/atk-1.0/atk/atkhypertext.h \ /usr/include/atk-1.0/atk/atkimage.h \ /usr/include/atk-1.0/atk/atknoopobject.h \ /usr/include/atk-1.0/atk/atknoopobjectfactory.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkplug.h \ /usr/include/atk-1.0/atk/atkregistry.h \ /usr/include/atk-1.0/atk/atkobjectfactory.h \ /usr/include/atk-1.0/atk/atkrelation.h \ /usr/include/atk-1.0/atk/atkrelationset.h \ /usr/include/atk-1.0/atk/atkselection.h \ /usr/include/atk-1.0/atk/atksocket.h \ /usr/include/atk-1.0/atk/atkstateset.h \ /usr/include/atk-1.0/atk/atkstreamablecontent.h \ /usr/include/atk-1.0/atk/atktable.h /usr/include/atk-1.0/atk/atkmisc.h \ /usr/include/atk-1.0/atk/atkvalue.h \ /usr/include/atk-1.0/atk/atkversion.h \ /usr/include/atk-1.0/atk/atkwindow.h \ /usr/include/gtk-2.0/gtk/gtkaccellabel.h \ /usr/include/gtk-2.0/gtk/gtklabel.h /usr/include/gtk-2.0/gtk/gtkmisc.h \ /usr/include/gtk-2.0/gtk/gtkmenu.h \ /usr/include/gtk-2.0/gtk/gtkmenushell.h \ /usr/include/gtk-2.0/gtk/gtkaccelmap.h \ /usr/include/gtk-2.0/gtk/gtkaccessible.h \ /usr/include/gtk-2.0/gtk/gtkaction.h \ /usr/include/gtk-2.0/gtk/gtkactiongroup.h \ /usr/include/gtk-2.0/gtk/gtkactivatable.h \ /usr/include/gtk-2.0/gtk/gtkalignment.h \ /usr/include/gtk-2.0/gtk/gtkarrow.h \ /usr/include/gtk-2.0/gtk/gtkaspectframe.h \ /usr/include/gtk-2.0/gtk/gtkframe.h \ /usr/include/gtk-2.0/gtk/gtkassistant.h \ /usr/include/gtk-2.0/gtk/gtkbbox.h /usr/include/gtk-2.0/gtk/gtkbox.h \ /usr/include/gtk-2.0/gtk/gtkbindings.h \ /usr/include/gtk-2.0/gtk/gtkbuildable.h \ /usr/include/gtk-2.0/gtk/gtkbuilder.h \ /usr/include/gtk-2.0/gtk/gtkbutton.h /usr/include/gtk-2.0/gtk/gtkimage.h \ /usr/include/gtk-2.0/gtk/gtkcalendar.h \ /usr/include/gtk-2.0/gtk/gtksignal.h \ /usr/include/gtk-2.0/gtk/gtkmarshal.h \ /usr/include/gtk-2.0/gtk/gtkcelleditable.h \ /usr/include/gtk-2.0/gtk/gtkcelllayout.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderer.h \ /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h \ /usr/include/gtk-2.0/gtk/gtktreemodel.h \ /usr/include/gtk-2.0/gtk/gtktreesortable.h \ /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h \ /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h \ /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h \ /usr/include/gtk-2.0/gtk/gtkcellview.h \ /usr/include/gtk-2.0/gtk/gtkcheckbutton.h \ /usr/include/gtk-2.0/gtk/gtktogglebutton.h \ /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkmenuitem.h \ /usr/include/gtk-2.0/gtk/gtkitem.h \ /usr/include/gtk-2.0/gtk/gtkclipboard.h \ /usr/include/gtk-2.0/gtk/gtkselection.h \ /usr/include/gtk-2.0/gtk/gtktextiter.h \ /usr/include/gtk-2.0/gtk/gtktexttag.h \ /usr/include/gtk-2.0/gtk/gtktextchild.h \ /usr/include/gtk-2.0/gtk/gtkcolorbutton.h \ /usr/include/gtk-2.0/gtk/gtkcolorsel.h \ /usr/include/gtk-2.0/gtk/gtkvbox.h \ /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h \ /usr/include/gtk-2.0/gtk/gtkcombobox.h \ /usr/include/gtk-2.0/gtk/gtktreeview.h /usr/include/gtk-2.0/gtk/gtkdnd.h \ /usr/include/gtk-2.0/gtk/gtkentry.h \ /usr/include/gtk-2.0/gtk/gtkeditable.h \ /usr/include/gtk-2.0/gtk/gtkimcontext.h \ /usr/include/gtk-2.0/gtk/gtkentrybuffer.h \ /usr/include/gtk-2.0/gtk/gtkentrycompletion.h \ /usr/include/gtk-2.0/gtk/gtkliststore.h \ /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h \ /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h \ /usr/include/gtk-2.0/gtk/gtkdrawingarea.h \ /usr/include/gtk-2.0/gtk/gtkeventbox.h \ /usr/include/gtk-2.0/gtk/gtkexpander.h \ /usr/include/gtk-2.0/gtk/gtkfixed.h \ /usr/include/gtk-2.0/gtk/gtkfilechooser.h \ /usr/include/gtk-2.0/gtk/gtkfilefilter.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h \ /usr/include/gtk-2.0/gtk/gtkhbox.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkfontbutton.h \ /usr/include/gtk-2.0/gtk/gtkfontsel.h /usr/include/gtk-2.0/gtk/gtkgc.h \ /usr/include/gtk-2.0/gtk/gtkhandlebox.h \ /usr/include/gtk-2.0/gtk/gtkhbbox.h /usr/include/gtk-2.0/gtk/gtkhpaned.h \ /usr/include/gtk-2.0/gtk/gtkpaned.h /usr/include/gtk-2.0/gtk/gtkhruler.h \ /usr/include/gtk-2.0/gtk/gtkruler.h /usr/include/gtk-2.0/gtk/gtkhscale.h \ /usr/include/gtk-2.0/gtk/gtkscale.h /usr/include/gtk-2.0/gtk/gtkrange.h \ /usr/include/gtk-2.0/gtk/gtkhscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkhseparator.h \ /usr/include/gtk-2.0/gtk/gtkseparator.h \ /usr/include/gtk-2.0/gtk/gtkhsv.h \ /usr/include/gtk-2.0/gtk/gtkiconfactory.h \ /usr/include/gtk-2.0/gtk/gtkicontheme.h \ /usr/include/gtk-2.0/gtk/gtkiconview.h \ /usr/include/gtk-2.0/gtk/gtktooltip.h \ /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h \ /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h \ /usr/include/gtk-2.0/gtk/gtkimmulticontext.h \ /usr/include/gtk-2.0/gtk/gtkinfobar.h \ /usr/include/gtk-2.0/gtk/gtkinvisible.h \ /usr/include/gtk-2.0/gtk/gtklayout.h \ /usr/include/gtk-2.0/gtk/gtklinkbutton.h \ /usr/include/gtk-2.0/gtk/gtkmain.h /usr/include/gtk-2.0/gtk/gtkmenubar.h \ /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoolitem.h \ /usr/include/gtk-2.0/gtk/gtktooltips.h \ /usr/include/gtk-2.0/gtk/gtksizegroup.h \ /usr/include/gtk-2.0/gtk/gtkmessagedialog.h \ /usr/include/gtk-2.0/gtk/gtkmodules.h \ /usr/include/gtk-2.0/gtk/gtkmountoperation.h \ /usr/include/gtk-2.0/gtk/gtknotebook.h \ /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h \ /usr/include/gtk-2.0/gtk/gtkorientable.h \ /usr/include/gtk-2.0/gtk/gtkpagesetup.h \ /usr/include/gtk-2.0/gtk/gtkpapersize.h \ /usr/include/gtk-2.0/gtk/gtkplug.h /usr/include/gtk-2.0/gtk/gtksocket.h \ /usr/include/gtk-2.0/gtk/gtkprintcontext.h \ /usr/include/gtk-2.0/gtk/gtkprintoperation.h \ /usr/include/gtk-2.0/gtk/gtkprintsettings.h \ /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h \ /usr/include/gtk-2.0/gtk/gtkprogressbar.h \ /usr/include/gtk-2.0/gtk/gtkprogress.h \ /usr/include/gtk-2.0/gtk/gtkradioaction.h \ /usr/include/gtk-2.0/gtk/gtktoggleaction.h \ /usr/include/gtk-2.0/gtk/gtkradiobutton.h \ /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h \ /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h \ /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h \ /usr/include/gtk-2.0/gtk/gtkrecentaction.h \ /usr/include/gtk-2.0/gtk/gtkrecentmanager.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooser.h \ /usr/include/gtk-2.0/gtk/gtkrecentfilter.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h \ /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h \ /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h \ /usr/include/gtk-2.0/gtk/gtkscalebutton.h \ /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h \ /usr/include/gtk-2.0/gtk/gtkvscrollbar.h \ /usr/include/gtk-2.0/gtk/gtkviewport.h \ /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h \ /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h \ /usr/include/gtk-2.0/gtk/gtkshow.h \ /usr/include/gtk-2.0/gtk/gtkspinbutton.h \ /usr/include/gtk-2.0/gtk/gtkspinner.h \ /usr/include/gtk-2.0/gtk/gtkstatusbar.h \ /usr/include/gtk-2.0/gtk/gtkstatusicon.h \ /usr/include/gtk-2.0/gtk/gtkstock.h /usr/include/gtk-2.0/gtk/gtktable.h \ /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h \ /usr/include/gtk-2.0/gtk/gtktextbuffer.h \ /usr/include/gtk-2.0/gtk/gtktexttagtable.h \ /usr/include/gtk-2.0/gtk/gtktextmark.h \ /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h \ /usr/include/gtk-2.0/gtk/gtktextview.h \ /usr/include/gtk-2.0/gtk/gtktoolbar.h \ /usr/include/gtk-2.0/gtk/gtkpixmap.h \ /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h \ /usr/include/gtk-2.0/gtk/gtktoolpalette.h \ /usr/include/gtk-2.0/gtk/gtktoolshell.h \ /usr/include/gtk-2.0/gtk/gtktestutils.h \ /usr/include/gtk-2.0/gtk/gtktreednd.h \ /usr/include/gtk-2.0/gtk/gtktreemodelsort.h \ /usr/include/gtk-2.0/gtk/gtktreeselection.h \ /usr/include/gtk-2.0/gtk/gtktreestore.h \ /usr/include/gtk-2.0/gtk/gtkuimanager.h \ /usr/include/gtk-2.0/gtk/gtkvbbox.h \ /usr/include/gtk-2.0/gtk/gtkversion.h \ /usr/include/gtk-2.0/gtk/gtkvolumebutton.h \ /usr/include/gtk-2.0/gtk/gtkvpaned.h \ /usr/include/gtk-2.0/gtk/gtkvruler.h \ /usr/include/gtk-2.0/gtk/gtkvscale.h \ /usr/include/gtk-2.0/gtk/gtkvseparator.h \ /usr/include/gtk-2.0/gtk/gtktext.h /usr/include/gtk-2.0/gtk/gtktree.h \ /usr/include/gtk-2.0/gtk/gtktreeitem.h \ /usr/include/gtk-2.0/gtk/gtkclist.h /usr/include/gtk-2.0/gtk/gtkcombo.h \ /usr/include/gtk-2.0/gtk/gtkctree.h /usr/include/gtk-2.0/gtk/gtkcurve.h \ /usr/include/gtk-2.0/gtk/gtkfilesel.h \ /usr/include/gtk-2.0/gtk/gtkgamma.h \ /usr/include/gtk-2.0/gtk/gtkinputdialog.h \ /usr/include/gtk-2.0/gtk/gtkitemfactory.h \ /usr/include/gtk-2.0/gtk/gtklist.h \ /usr/include/gtk-2.0/gtk/gtklistitem.h \ /usr/include/gtk-2.0/gtk/gtkoldeditable.h \ /usr/include/gtk-2.0/gtk/gtkoptionmenu.h \ /usr/include/gtk-2.0/gtk/gtkpreview.h \ /usr/include/gtk-2.0/gtk/gtktipsquery.h guake-indicator.h \ guake-indicator-new-entry.h guake-indicator-read-json.h \ /usr/include/json-c/json.h /usr/include/json-c/bits.h \ /usr/include/json-c/debug.h \ /usr/include/x86_64-linux-gnu/bits/waitflags.h \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ /usr/include/json-c/linkhash.h /usr/include/json-c/json_object.h \ /usr/include/json-c/json_inttypes.h /usr/include/json-c/json_config.h \ /usr/include/inttypes.h \ /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/wchar.h \ /usr/include/json-c/arraylist.h /usr/include/json-c/json_util.h \ /usr/include/json-c/json_tokener.h \ /usr/include/json-c/json_object_iterator.h \ /usr/include/json-c/json_c_version.h guake-indicator-write-json.h \ guake-indicator-delete-entry-group.h /usr/include/stdc-predef.h: /usr/include/string.h: /usr/include/features.h: /usr/include/x86_64-linux-gnu/sys/cdefs.h: /usr/include/x86_64-linux-gnu/bits/wordsize.h: /usr/include/x86_64-linux-gnu/gnu/stubs.h: /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h: /usr/include/xlocale.h: /usr/include/x86_64-linux-gnu/bits/string.h: /usr/include/x86_64-linux-gnu/bits/string2.h: /usr/include/endian.h: /usr/include/x86_64-linux-gnu/bits/endian.h: /usr/include/x86_64-linux-gnu/bits/byteswap.h: /usr/include/x86_64-linux-gnu/bits/types.h: /usr/include/x86_64-linux-gnu/bits/typesizes.h: /usr/include/x86_64-linux-gnu/bits/byteswap-16.h: /usr/include/stdlib.h: /usr/include/x86_64-linux-gnu/bits/string3.h: /usr/include/gtk-2.0/gtk/gtk.h: /usr/include/gtk-2.0/gdk/gdk.h: /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h: /usr/include/glib-2.0/gio/gio.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gioenums.h: /usr/include/glib-2.0/glib-object.h: /usr/include/glib-2.0/gobject/gbinding.h: /usr/include/glib-2.0/glib.h: /usr/include/glib-2.0/glib/galloca.h: /usr/include/glib-2.0/glib/gtypes.h: /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h: /usr/include/glib-2.0/glib/gmacros.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/limits.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed/syslimits.h: /usr/include/limits.h: /usr/include/x86_64-linux-gnu/bits/posix1_lim.h: /usr/include/x86_64-linux-gnu/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/x86_64-linux-gnu/bits/posix2_lim.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/float.h: /usr/include/glib-2.0/glib/gversionmacros.h: /usr/include/time.h: /usr/include/x86_64-linux-gnu/bits/time.h: /usr/include/glib-2.0/glib/garray.h: /usr/include/glib-2.0/glib/gasyncqueue.h: /usr/include/glib-2.0/glib/gthread.h: /usr/include/glib-2.0/glib/gatomic.h: /usr/include/glib-2.0/glib/gerror.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h: /usr/include/glib-2.0/glib/gquark.h: /usr/include/glib-2.0/glib/gbacktrace.h: /usr/include/signal.h: /usr/include/x86_64-linux-gnu/bits/sigset.h: /usr/include/x86_64-linux-gnu/bits/signum.h: /usr/include/x86_64-linux-gnu/bits/siginfo.h: /usr/include/x86_64-linux-gnu/bits/sigaction.h: /usr/include/x86_64-linux-gnu/bits/sigcontext.h: /usr/include/x86_64-linux-gnu/bits/sigstack.h: /usr/include/x86_64-linux-gnu/sys/ucontext.h: /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: /usr/include/x86_64-linux-gnu/bits/sigthread.h: /usr/include/glib-2.0/glib/gbase64.h: /usr/include/glib-2.0/glib/gbitlock.h: /usr/include/glib-2.0/glib/gbookmarkfile.h: /usr/include/glib-2.0/glib/gbytes.h: /usr/include/glib-2.0/glib/gcharset.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/gconvert.h: /usr/include/glib-2.0/glib/gdataset.h: /usr/include/glib-2.0/glib/gdate.h: /usr/include/glib-2.0/glib/gdatetime.h: /usr/include/glib-2.0/glib/gtimezone.h: /usr/include/glib-2.0/glib/gdir.h: /usr/include/dirent.h: /usr/include/x86_64-linux-gnu/bits/dirent.h: /usr/include/glib-2.0/glib/genviron.h: /usr/include/glib-2.0/glib/gfileutils.h: /usr/include/glib-2.0/glib/ggettext.h: /usr/include/glib-2.0/glib/ghash.h: /usr/include/glib-2.0/glib/glist.h: /usr/include/glib-2.0/glib/gmem.h: /usr/include/glib-2.0/glib/gnode.h: /usr/include/glib-2.0/glib/ghmac.h: /usr/include/glib-2.0/glib/gchecksum.h: /usr/include/glib-2.0/glib/ghook.h: /usr/include/glib-2.0/glib/ghostutils.h: /usr/include/glib-2.0/glib/giochannel.h: /usr/include/glib-2.0/glib/gmain.h: /usr/include/glib-2.0/glib/gpoll.h: /usr/include/glib-2.0/glib/gslist.h: /usr/include/glib-2.0/glib/gstring.h: /usr/include/glib-2.0/glib/gunicode.h: /usr/include/glib-2.0/glib/gutils.h: /usr/include/glib-2.0/glib/gkeyfile.h: /usr/include/glib-2.0/glib/gmappedfile.h: /usr/include/glib-2.0/glib/gmarkup.h: /usr/include/glib-2.0/glib/gmessages.h: /usr/include/glib-2.0/glib/goption.h: /usr/include/glib-2.0/glib/gpattern.h: /usr/include/glib-2.0/glib/gprimes.h: /usr/include/glib-2.0/glib/gqsort.h: /usr/include/glib-2.0/glib/gqueue.h: /usr/include/glib-2.0/glib/grand.h: /usr/include/glib-2.0/glib/gregex.h: /usr/include/glib-2.0/glib/gscanner.h: /usr/include/glib-2.0/glib/gsequence.h: /usr/include/glib-2.0/glib/gshell.h: /usr/include/glib-2.0/glib/gslice.h: /usr/include/glib-2.0/glib/gspawn.h: /usr/include/glib-2.0/glib/gstrfuncs.h: /usr/include/glib-2.0/glib/gstringchunk.h: /usr/include/glib-2.0/glib/gtestutils.h: /usr/include/glib-2.0/glib/gthreadpool.h: /usr/include/glib-2.0/glib/gtimer.h: /usr/include/glib-2.0/glib/gtrashstack.h: /usr/include/glib-2.0/glib/gtree.h: /usr/include/glib-2.0/glib/gurifuncs.h: /usr/include/glib-2.0/glib/gvarianttype.h: /usr/include/glib-2.0/glib/gvariant.h: /usr/include/glib-2.0/glib/gversion.h: /usr/include/glib-2.0/glib/deprecated/gallocator.h: /usr/include/glib-2.0/glib/deprecated/gcache.h: /usr/include/glib-2.0/glib/deprecated/gcompletion.h: /usr/include/glib-2.0/glib/deprecated/gmain.h: /usr/include/glib-2.0/glib/deprecated/grel.h: /usr/include/glib-2.0/glib/deprecated/gthread.h: /usr/include/x86_64-linux-gnu/sys/types.h: /usr/include/x86_64-linux-gnu/sys/select.h: /usr/include/x86_64-linux-gnu/bits/select.h: /usr/include/x86_64-linux-gnu/bits/select2.h: /usr/include/x86_64-linux-gnu/sys/sysmacros.h: /usr/include/pthread.h: /usr/include/sched.h: /usr/include/x86_64-linux-gnu/bits/sched.h: /usr/include/x86_64-linux-gnu/bits/setjmp.h: /usr/include/glib-2.0/gobject/gobject.h: /usr/include/glib-2.0/gobject/gtype.h: /usr/include/glib-2.0/gobject/gvalue.h: /usr/include/glib-2.0/gobject/gparam.h: /usr/include/glib-2.0/gobject/gclosure.h: /usr/include/glib-2.0/gobject/gsignal.h: /usr/include/glib-2.0/gobject/gmarshal.h: /usr/include/glib-2.0/gobject/gboxed.h: /usr/include/glib-2.0/gobject/glib-types.h: /usr/include/glib-2.0/gobject/genums.h: /usr/include/glib-2.0/gobject/gparamspecs.h: /usr/include/glib-2.0/gobject/gsourceclosure.h: /usr/include/glib-2.0/gobject/gtypemodule.h: /usr/include/glib-2.0/gobject/gtypeplugin.h: /usr/include/glib-2.0/gobject/gvaluearray.h: /usr/include/glib-2.0/gobject/gvaluetypes.h: /usr/include/glib-2.0/gio/gaction.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactiongroupexporter.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gappinfo.h: /usr/include/glib-2.0/gio/gapplication.h: /usr/include/glib-2.0/gio/gapplicationcommandline.h: /usr/include/glib-2.0/gio/gasyncinitable.h: /usr/include/glib-2.0/gio/ginitable.h: /usr/include/glib-2.0/gio/gasyncresult.h: /usr/include/glib-2.0/gio/gbufferedinputstream.h: /usr/include/glib-2.0/gio/gfilterinputstream.h: /usr/include/glib-2.0/gio/ginputstream.h: /usr/include/glib-2.0/gio/gbufferedoutputstream.h: /usr/include/glib-2.0/gio/gfilteroutputstream.h: /usr/include/glib-2.0/gio/goutputstream.h: /usr/include/glib-2.0/gio/gbytesicon.h: /usr/include/glib-2.0/gio/gcancellable.h: /usr/include/glib-2.0/gio/gcharsetconverter.h: /usr/include/glib-2.0/gio/gconverter.h: /usr/include/glib-2.0/gio/gcontenttype.h: /usr/include/glib-2.0/gio/gconverterinputstream.h: /usr/include/glib-2.0/gio/gconverteroutputstream.h: /usr/include/glib-2.0/gio/gcredentials.h: /usr/include/unistd.h: /usr/include/x86_64-linux-gnu/bits/posix_opt.h: /usr/include/x86_64-linux-gnu/bits/environments.h: /usr/include/x86_64-linux-gnu/bits/confname.h: /usr/include/getopt.h: /usr/include/x86_64-linux-gnu/bits/unistd.h: /usr/include/glib-2.0/gio/gdatainputstream.h: /usr/include/glib-2.0/gio/gdataoutputstream.h: /usr/include/glib-2.0/gio/gdbusaddress.h: /usr/include/glib-2.0/gio/gdbusauthobserver.h: /usr/include/glib-2.0/gio/gdbusconnection.h: /usr/include/glib-2.0/gio/gdbuserror.h: /usr/include/glib-2.0/gio/gdbusintrospection.h: /usr/include/glib-2.0/gio/gdbusmessage.h: /usr/include/glib-2.0/gio/gdbusmethodinvocation.h: /usr/include/glib-2.0/gio/gdbusnameowning.h: /usr/include/glib-2.0/gio/gdbusnamewatching.h: /usr/include/glib-2.0/gio/gdbusproxy.h: /usr/include/glib-2.0/gio/gdbusserver.h: /usr/include/glib-2.0/gio/gdbusutils.h: /usr/include/glib-2.0/gio/gdrive.h: /usr/include/glib-2.0/gio/gemblemedicon.h: /usr/include/glib-2.0/gio/gicon.h: /usr/include/glib-2.0/gio/gemblem.h: /usr/include/glib-2.0/gio/gfileattribute.h: /usr/include/glib-2.0/gio/gfileenumerator.h: /usr/include/glib-2.0/gio/gfile.h: /usr/include/glib-2.0/gio/gfileicon.h: /usr/include/glib-2.0/gio/gfileinfo.h: /usr/include/glib-2.0/gio/gfileinputstream.h: /usr/include/glib-2.0/gio/gfileiostream.h: /usr/include/glib-2.0/gio/giostream.h: /usr/include/glib-2.0/gio/gioerror.h: /usr/include/glib-2.0/gio/gfilemonitor.h: /usr/include/glib-2.0/gio/gfilenamecompleter.h: /usr/include/glib-2.0/gio/gfileoutputstream.h: /usr/include/glib-2.0/gio/ginetaddress.h: /usr/include/glib-2.0/gio/ginetaddressmask.h: /usr/include/glib-2.0/gio/ginetsocketaddress.h: /usr/include/glib-2.0/gio/gsocketaddress.h: /usr/include/glib-2.0/gio/gioenumtypes.h: /usr/include/glib-2.0/gio/giomodule.h: /usr/include/glib-2.0/gmodule.h: /usr/include/glib-2.0/gio/gioscheduler.h: /usr/include/glib-2.0/gio/gloadableicon.h: /usr/include/glib-2.0/gio/gmemoryinputstream.h: /usr/include/glib-2.0/gio/gmemoryoutputstream.h: /usr/include/glib-2.0/gio/gmount.h: /usr/include/glib-2.0/gio/gmountoperation.h: /usr/include/glib-2.0/gio/gnativevolumemonitor.h: /usr/include/glib-2.0/gio/gvolumemonitor.h: /usr/include/glib-2.0/gio/gnetworkaddress.h: /usr/include/glib-2.0/gio/gnetworkmonitor.h: /usr/include/glib-2.0/gio/gnetworkservice.h: /usr/include/glib-2.0/gio/gpermission.h: /usr/include/glib-2.0/gio/gpollableinputstream.h: /usr/include/glib-2.0/gio/gpollableoutputstream.h: /usr/include/glib-2.0/gio/gpollableutils.h: /usr/include/glib-2.0/gio/gpropertyaction.h: /usr/include/glib-2.0/gio/gproxy.h: /usr/include/glib-2.0/gio/gproxyaddress.h: /usr/include/glib-2.0/gio/gproxyaddressenumerator.h: /usr/include/glib-2.0/gio/gsocketaddressenumerator.h: /usr/include/glib-2.0/gio/gproxyresolver.h: /usr/include/glib-2.0/gio/gresolver.h: /usr/include/glib-2.0/gio/gresource.h: /usr/include/glib-2.0/gio/gseekable.h: /usr/include/glib-2.0/gio/gsettingsschema.h: /usr/include/glib-2.0/gio/gsettings.h: /usr/include/glib-2.0/gio/gsimpleaction.h: /usr/include/glib-2.0/gio/gsimpleactiongroup.h: /usr/include/glib-2.0/gio/gactiongroup.h: /usr/include/glib-2.0/gio/gactionmap.h: /usr/include/glib-2.0/gio/gsimpleasyncresult.h: /usr/include/glib-2.0/gio/gsimplepermission.h: /usr/include/glib-2.0/gio/gsocketclient.h: /usr/include/glib-2.0/gio/gsocketconnectable.h: /usr/include/glib-2.0/gio/gsocketconnection.h: /usr/include/glib-2.0/gio/gsocket.h: /usr/include/glib-2.0/gio/gsocketcontrolmessage.h: /usr/include/glib-2.0/gio/gsocketlistener.h: /usr/include/glib-2.0/gio/gsocketservice.h: /usr/include/glib-2.0/gio/gsrvtarget.h: /usr/include/glib-2.0/gio/gsimpleproxyresolver.h: /usr/include/glib-2.0/gio/gtask.h: /usr/include/glib-2.0/gio/gsubprocess.h: /usr/include/glib-2.0/gio/gsubprocesslauncher.h: /usr/include/glib-2.0/gio/gtcpconnection.h: /usr/include/glib-2.0/gio/gtcpwrapperconnection.h: /usr/include/glib-2.0/gio/gtestdbus.h: /usr/include/glib-2.0/gio/gthemedicon.h: /usr/include/glib-2.0/gio/gthreadedsocketservice.h: /usr/include/glib-2.0/gio/gtlsbackend.h: /usr/include/glib-2.0/gio/gtlscertificate.h: /usr/include/glib-2.0/gio/gtlsclientconnection.h: /usr/include/glib-2.0/gio/gtlsconnection.h: /usr/include/glib-2.0/gio/gtlsdatabase.h: /usr/include/glib-2.0/gio/gtlsfiledatabase.h: /usr/include/glib-2.0/gio/gtlsinteraction.h: /usr/include/glib-2.0/gio/gtlsserverconnection.h: /usr/include/glib-2.0/gio/gtlspassword.h: /usr/include/glib-2.0/gio/gvfs.h: /usr/include/glib-2.0/gio/gvolume.h: /usr/include/glib-2.0/gio/gzlibcompressor.h: /usr/include/glib-2.0/gio/gzlibdecompressor.h: /usr/include/glib-2.0/gio/gdbusinterface.h: /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h: /usr/include/glib-2.0/gio/gdbusobject.h: /usr/include/glib-2.0/gio/gdbusobjectskeleton.h: /usr/include/glib-2.0/gio/gdbusobjectproxy.h: /usr/include/glib-2.0/gio/gdbusobjectmanager.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h: /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h: /usr/include/glib-2.0/gio/gdbusactiongroup.h: /usr/include/glib-2.0/gio/giotypes.h: /usr/include/glib-2.0/gio/gremoteactiongroup.h: /usr/include/glib-2.0/gio/gmenumodel.h: /usr/include/glib-2.0/gio/gmenu.h: /usr/include/glib-2.0/gio/gmenuexporter.h: /usr/include/glib-2.0/gio/gdbusmenumodel.h: /usr/include/glib-2.0/gio/gnotification.h: /usr/include/gtk-2.0/gdk/gdkscreen.h: /usr/include/cairo/cairo.h: /usr/include/cairo/cairo-version.h: /usr/include/cairo/cairo-features.h: /usr/include/cairo/cairo-deprecated.h: /usr/include/gtk-2.0/gdk/gdktypes.h: /usr/include/pango-1.0/pango/pango.h: /usr/include/pango-1.0/pango/pango-attributes.h: /usr/include/pango-1.0/pango/pango-font.h: /usr/include/pango-1.0/pango/pango-coverage.h: /usr/include/pango-1.0/pango/pango-types.h: /usr/include/pango-1.0/pango/pango-gravity.h: /usr/include/pango-1.0/pango/pango-matrix.h: /usr/include/pango-1.0/pango/pango-script.h: /usr/include/pango-1.0/pango/pango-language.h: /usr/include/pango-1.0/pango/pango-bidi-type.h: /usr/include/pango-1.0/pango/pango-break.h: /usr/include/pango-1.0/pango/pango-item.h: /usr/include/pango-1.0/pango/pango-context.h: /usr/include/pango-1.0/pango/pango-fontmap.h: /usr/include/pango-1.0/pango/pango-fontset.h: /usr/include/pango-1.0/pango/pango-engine.h: /usr/include/pango-1.0/pango/pango-glyph.h: /usr/include/pango-1.0/pango/pango-enum-types.h: /usr/include/pango-1.0/pango/pango-features.h: /usr/include/pango-1.0/pango/pango-glyph-item.h: /usr/include/pango-1.0/pango/pango-layout.h: /usr/include/pango-1.0/pango/pango-tabs.h: /usr/include/pango-1.0/pango/pango-renderer.h: /usr/include/pango-1.0/pango/pango-utils.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/x86_64-linux-gnu/bits/stdio_lim.h: /usr/include/x86_64-linux-gnu/bits/sys_errlist.h: /usr/include/x86_64-linux-gnu/bits/stdio.h: /usr/include/x86_64-linux-gnu/bits/stdio2.h: /usr/lib/x86_64-linux-gnu/gtk-2.0/include/gdkconfig.h: /usr/include/gtk-2.0/gdk/gdkdisplay.h: /usr/include/gtk-2.0/gdk/gdkevents.h: /usr/include/gtk-2.0/gdk/gdkcolor.h: /usr/include/gtk-2.0/gdk/gdkdnd.h: /usr/include/gtk-2.0/gdk/gdkinput.h: /usr/include/gtk-2.0/gdk/gdkcairo.h: /usr/include/gtk-2.0/gdk/gdkpixbuf.h: /usr/include/gtk-2.0/gdk/gdkrgb.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h: /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h: /usr/include/pango-1.0/pango/pangocairo.h: /usr/include/gtk-2.0/gdk/gdkcursor.h: /usr/include/gtk-2.0/gdk/gdkdisplaymanager.h: /usr/include/gtk-2.0/gdk/gdkdrawable.h: /usr/include/gtk-2.0/gdk/gdkgc.h: /usr/include/gtk-2.0/gdk/gdkenumtypes.h: /usr/include/gtk-2.0/gdk/gdkfont.h: /usr/include/gtk-2.0/gdk/gdkimage.h: /usr/include/gtk-2.0/gdk/gdkkeys.h: /usr/include/gtk-2.0/gdk/gdkpango.h: /usr/include/gtk-2.0/gdk/gdkpixmap.h: /usr/include/gtk-2.0/gdk/gdkproperty.h: /usr/include/gtk-2.0/gdk/gdkregion.h: /usr/include/gtk-2.0/gdk/gdkselection.h: /usr/include/gtk-2.0/gdk/gdkspawn.h: /usr/include/gtk-2.0/gdk/gdktestutils.h: /usr/include/gtk-2.0/gdk/gdkwindow.h: /usr/include/gtk-2.0/gdk/gdkvisual.h: /usr/include/gtk-2.0/gtk/gtkaboutdialog.h: /usr/include/gtk-2.0/gtk/gtkdialog.h: /usr/include/gtk-2.0/gtk/gtkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccelgroup.h: /usr/include/gtk-2.0/gtk/gtkenums.h: /usr/include/gtk-2.0/gtk/gtkbin.h: /usr/include/gtk-2.0/gtk/gtkcontainer.h: /usr/include/gtk-2.0/gtk/gtkwidget.h: /usr/include/gtk-2.0/gtk/gtkobject.h: /usr/include/gtk-2.0/gtk/gtktypeutils.h: /usr/include/gtk-2.0/gtk/gtktypebuiltins.h: /usr/include/gtk-2.0/gtk/gtkdebug.h: /usr/include/gtk-2.0/gtk/gtkadjustment.h: /usr/include/gtk-2.0/gtk/gtkstyle.h: /usr/include/gtk-2.0/gtk/gtksettings.h: /usr/include/gtk-2.0/gtk/gtkrc.h: /usr/include/atk-1.0/atk/atk.h: /usr/include/atk-1.0/atk/atkobject.h: /usr/include/atk-1.0/atk/atkstate.h: /usr/include/atk-1.0/atk/atkrelationtype.h: /usr/include/atk-1.0/atk/atkaction.h: /usr/include/atk-1.0/atk/atkcomponent.h: /usr/include/atk-1.0/atk/atkutil.h: /usr/include/atk-1.0/atk/atkdocument.h: /usr/include/atk-1.0/atk/atkeditabletext.h: /usr/include/atk-1.0/atk/atktext.h: /usr/include/atk-1.0/atk/atkgobjectaccessible.h: /usr/include/atk-1.0/atk/atkhyperlink.h: /usr/include/atk-1.0/atk/atkhyperlinkimpl.h: /usr/include/atk-1.0/atk/atkhypertext.h: /usr/include/atk-1.0/atk/atkimage.h: /usr/include/atk-1.0/atk/atknoopobject.h: /usr/include/atk-1.0/atk/atknoopobjectfactory.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkplug.h: /usr/include/atk-1.0/atk/atkregistry.h: /usr/include/atk-1.0/atk/atkobjectfactory.h: /usr/include/atk-1.0/atk/atkrelation.h: /usr/include/atk-1.0/atk/atkrelationset.h: /usr/include/atk-1.0/atk/atkselection.h: /usr/include/atk-1.0/atk/atksocket.h: /usr/include/atk-1.0/atk/atkstateset.h: /usr/include/atk-1.0/atk/atkstreamablecontent.h: /usr/include/atk-1.0/atk/atktable.h: /usr/include/atk-1.0/atk/atkmisc.h: /usr/include/atk-1.0/atk/atkvalue.h: /usr/include/atk-1.0/atk/atkversion.h: /usr/include/atk-1.0/atk/atkwindow.h: /usr/include/gtk-2.0/gtk/gtkaccellabel.h: /usr/include/gtk-2.0/gtk/gtklabel.h: /usr/include/gtk-2.0/gtk/gtkmisc.h: /usr/include/gtk-2.0/gtk/gtkmenu.h: /usr/include/gtk-2.0/gtk/gtkmenushell.h: /usr/include/gtk-2.0/gtk/gtkaccelmap.h: /usr/include/gtk-2.0/gtk/gtkaccessible.h: /usr/include/gtk-2.0/gtk/gtkaction.h: /usr/include/gtk-2.0/gtk/gtkactiongroup.h: /usr/include/gtk-2.0/gtk/gtkactivatable.h: /usr/include/gtk-2.0/gtk/gtkalignment.h: /usr/include/gtk-2.0/gtk/gtkarrow.h: /usr/include/gtk-2.0/gtk/gtkaspectframe.h: /usr/include/gtk-2.0/gtk/gtkframe.h: /usr/include/gtk-2.0/gtk/gtkassistant.h: /usr/include/gtk-2.0/gtk/gtkbbox.h: /usr/include/gtk-2.0/gtk/gtkbox.h: /usr/include/gtk-2.0/gtk/gtkbindings.h: /usr/include/gtk-2.0/gtk/gtkbuildable.h: /usr/include/gtk-2.0/gtk/gtkbuilder.h: /usr/include/gtk-2.0/gtk/gtkbutton.h: /usr/include/gtk-2.0/gtk/gtkimage.h: /usr/include/gtk-2.0/gtk/gtkcalendar.h: /usr/include/gtk-2.0/gtk/gtksignal.h: /usr/include/gtk-2.0/gtk/gtkmarshal.h: /usr/include/gtk-2.0/gtk/gtkcelleditable.h: /usr/include/gtk-2.0/gtk/gtkcelllayout.h: /usr/include/gtk-2.0/gtk/gtkcellrenderer.h: /usr/include/gtk-2.0/gtk/gtktreeviewcolumn.h: /usr/include/gtk-2.0/gtk/gtktreemodel.h: /usr/include/gtk-2.0/gtk/gtktreesortable.h: /usr/include/gtk-2.0/gtk/gtkcellrendereraccel.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertext.h: /usr/include/gtk-2.0/gtk/gtkcellrenderercombo.h: /usr/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h: /usr/include/gtk-2.0/gtk/gtkcellrendererprogress.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspin.h: /usr/include/gtk-2.0/gtk/gtkcellrendererspinner.h: /usr/include/gtk-2.0/gtk/gtkcellrenderertoggle.h: /usr/include/gtk-2.0/gtk/gtkcellview.h: /usr/include/gtk-2.0/gtk/gtkcheckbutton.h: /usr/include/gtk-2.0/gtk/gtktogglebutton.h: /usr/include/gtk-2.0/gtk/gtkcheckmenuitem.h: /usr/include/gtk-2.0/gtk/gtkmenuitem.h: /usr/include/gtk-2.0/gtk/gtkitem.h: /usr/include/gtk-2.0/gtk/gtkclipboard.h: /usr/include/gtk-2.0/gtk/gtkselection.h: /usr/include/gtk-2.0/gtk/gtktextiter.h: /usr/include/gtk-2.0/gtk/gtktexttag.h: /usr/include/gtk-2.0/gtk/gtktextchild.h: /usr/include/gtk-2.0/gtk/gtkcolorbutton.h: /usr/include/gtk-2.0/gtk/gtkcolorsel.h: /usr/include/gtk-2.0/gtk/gtkvbox.h: /usr/include/gtk-2.0/gtk/gtkcolorseldialog.h: /usr/include/gtk-2.0/gtk/gtkcombobox.h: /usr/include/gtk-2.0/gtk/gtktreeview.h: /usr/include/gtk-2.0/gtk/gtkdnd.h: /usr/include/gtk-2.0/gtk/gtkentry.h: /usr/include/gtk-2.0/gtk/gtkeditable.h: /usr/include/gtk-2.0/gtk/gtkimcontext.h: /usr/include/gtk-2.0/gtk/gtkentrybuffer.h: /usr/include/gtk-2.0/gtk/gtkentrycompletion.h: /usr/include/gtk-2.0/gtk/gtkliststore.h: /usr/include/gtk-2.0/gtk/gtktreemodelfilter.h: /usr/include/gtk-2.0/gtk/gtkcomboboxentry.h: /usr/include/gtk-2.0/gtk/gtkcomboboxtext.h: /usr/include/gtk-2.0/gtk/gtkdrawingarea.h: /usr/include/gtk-2.0/gtk/gtkeventbox.h: /usr/include/gtk-2.0/gtk/gtkexpander.h: /usr/include/gtk-2.0/gtk/gtkfixed.h: /usr/include/gtk-2.0/gtk/gtkfilechooser.h: /usr/include/gtk-2.0/gtk/gtkfilefilter.h: /usr/include/gtk-2.0/gtk/gtkfilechooserbutton.h: /usr/include/gtk-2.0/gtk/gtkhbox.h: /usr/include/gtk-2.0/gtk/gtkfilechooserdialog.h: /usr/include/gtk-2.0/gtk/gtkfilechooserwidget.h: /usr/include/gtk-2.0/gtk/gtkfontbutton.h: /usr/include/gtk-2.0/gtk/gtkfontsel.h: /usr/include/gtk-2.0/gtk/gtkgc.h: /usr/include/gtk-2.0/gtk/gtkhandlebox.h: /usr/include/gtk-2.0/gtk/gtkhbbox.h: /usr/include/gtk-2.0/gtk/gtkhpaned.h: /usr/include/gtk-2.0/gtk/gtkpaned.h: /usr/include/gtk-2.0/gtk/gtkhruler.h: /usr/include/gtk-2.0/gtk/gtkruler.h: /usr/include/gtk-2.0/gtk/gtkhscale.h: /usr/include/gtk-2.0/gtk/gtkscale.h: /usr/include/gtk-2.0/gtk/gtkrange.h: /usr/include/gtk-2.0/gtk/gtkhscrollbar.h: /usr/include/gtk-2.0/gtk/gtkscrollbar.h: /usr/include/gtk-2.0/gtk/gtkhseparator.h: /usr/include/gtk-2.0/gtk/gtkseparator.h: /usr/include/gtk-2.0/gtk/gtkhsv.h: /usr/include/gtk-2.0/gtk/gtkiconfactory.h: /usr/include/gtk-2.0/gtk/gtkicontheme.h: /usr/include/gtk-2.0/gtk/gtkiconview.h: /usr/include/gtk-2.0/gtk/gtktooltip.h: /usr/include/gtk-2.0/gtk/gtkimagemenuitem.h: /usr/include/gtk-2.0/gtk/gtkimcontextsimple.h: /usr/include/gtk-2.0/gtk/gtkimmulticontext.h: /usr/include/gtk-2.0/gtk/gtkinfobar.h: /usr/include/gtk-2.0/gtk/gtkinvisible.h: /usr/include/gtk-2.0/gtk/gtklayout.h: /usr/include/gtk-2.0/gtk/gtklinkbutton.h: /usr/include/gtk-2.0/gtk/gtkmain.h: /usr/include/gtk-2.0/gtk/gtkmenubar.h: /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoolitem.h: /usr/include/gtk-2.0/gtk/gtktooltips.h: /usr/include/gtk-2.0/gtk/gtksizegroup.h: /usr/include/gtk-2.0/gtk/gtkmessagedialog.h: /usr/include/gtk-2.0/gtk/gtkmodules.h: /usr/include/gtk-2.0/gtk/gtkmountoperation.h: /usr/include/gtk-2.0/gtk/gtknotebook.h: /usr/include/gtk-2.0/gtk/gtkoffscreenwindow.h: /usr/include/gtk-2.0/gtk/gtkorientable.h: /usr/include/gtk-2.0/gtk/gtkpagesetup.h: /usr/include/gtk-2.0/gtk/gtkpapersize.h: /usr/include/gtk-2.0/gtk/gtkplug.h: /usr/include/gtk-2.0/gtk/gtksocket.h: /usr/include/gtk-2.0/gtk/gtkprintcontext.h: /usr/include/gtk-2.0/gtk/gtkprintoperation.h: /usr/include/gtk-2.0/gtk/gtkprintsettings.h: /usr/include/gtk-2.0/gtk/gtkprintoperationpreview.h: /usr/include/gtk-2.0/gtk/gtkprogressbar.h: /usr/include/gtk-2.0/gtk/gtkprogress.h: /usr/include/gtk-2.0/gtk/gtkradioaction.h: /usr/include/gtk-2.0/gtk/gtktoggleaction.h: /usr/include/gtk-2.0/gtk/gtkradiobutton.h: /usr/include/gtk-2.0/gtk/gtkradiomenuitem.h: /usr/include/gtk-2.0/gtk/gtkradiotoolbutton.h: /usr/include/gtk-2.0/gtk/gtktoggletoolbutton.h: /usr/include/gtk-2.0/gtk/gtkrecentaction.h: /usr/include/gtk-2.0/gtk/gtkrecentmanager.h: /usr/include/gtk-2.0/gtk/gtkrecentchooser.h: /usr/include/gtk-2.0/gtk/gtkrecentfilter.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserdialog.h: /usr/include/gtk-2.0/gtk/gtkrecentchoosermenu.h: /usr/include/gtk-2.0/gtk/gtkrecentchooserwidget.h: /usr/include/gtk-2.0/gtk/gtkscalebutton.h: /usr/include/gtk-2.0/gtk/gtkscrolledwindow.h: /usr/include/gtk-2.0/gtk/gtkvscrollbar.h: /usr/include/gtk-2.0/gtk/gtkviewport.h: /usr/include/gtk-2.0/gtk/gtkseparatormenuitem.h: /usr/include/gtk-2.0/gtk/gtkseparatortoolitem.h: /usr/include/gtk-2.0/gtk/gtkshow.h: /usr/include/gtk-2.0/gtk/gtkspinbutton.h: /usr/include/gtk-2.0/gtk/gtkspinner.h: /usr/include/gtk-2.0/gtk/gtkstatusbar.h: /usr/include/gtk-2.0/gtk/gtkstatusicon.h: /usr/include/gtk-2.0/gtk/gtkstock.h: /usr/include/gtk-2.0/gtk/gtktable.h: /usr/include/gtk-2.0/gtk/gtktearoffmenuitem.h: /usr/include/gtk-2.0/gtk/gtktextbuffer.h: /usr/include/gtk-2.0/gtk/gtktexttagtable.h: /usr/include/gtk-2.0/gtk/gtktextmark.h: /usr/include/gtk-2.0/gtk/gtktextbufferrichtext.h: /usr/include/gtk-2.0/gtk/gtktextview.h: /usr/include/gtk-2.0/gtk/gtktoolbar.h: /usr/include/gtk-2.0/gtk/gtkpixmap.h: /usr/include/gtk-2.0/gtk/gtktoolitemgroup.h: /usr/include/gtk-2.0/gtk/gtktoolpalette.h: /usr/include/gtk-2.0/gtk/gtktoolshell.h: /usr/include/gtk-2.0/gtk/gtktestutils.h: /usr/include/gtk-2.0/gtk/gtktreednd.h: /usr/include/gtk-2.0/gtk/gtktreemodelsort.h: /usr/include/gtk-2.0/gtk/gtktreeselection.h: /usr/include/gtk-2.0/gtk/gtktreestore.h: /usr/include/gtk-2.0/gtk/gtkuimanager.h: /usr/include/gtk-2.0/gtk/gtkvbbox.h: /usr/include/gtk-2.0/gtk/gtkversion.h: /usr/include/gtk-2.0/gtk/gtkvolumebutton.h: /usr/include/gtk-2.0/gtk/gtkvpaned.h: /usr/include/gtk-2.0/gtk/gtkvruler.h: /usr/include/gtk-2.0/gtk/gtkvscale.h: /usr/include/gtk-2.0/gtk/gtkvseparator.h: /usr/include/gtk-2.0/gtk/gtktext.h: /usr/include/gtk-2.0/gtk/gtktree.h: /usr/include/gtk-2.0/gtk/gtktreeitem.h: /usr/include/gtk-2.0/gtk/gtkclist.h: /usr/include/gtk-2.0/gtk/gtkcombo.h: /usr/include/gtk-2.0/gtk/gtkctree.h: /usr/include/gtk-2.0/gtk/gtkcurve.h: /usr/include/gtk-2.0/gtk/gtkfilesel.h: /usr/include/gtk-2.0/gtk/gtkgamma.h: /usr/include/gtk-2.0/gtk/gtkinputdialog.h: /usr/include/gtk-2.0/gtk/gtkitemfactory.h: /usr/include/gtk-2.0/gtk/gtklist.h: /usr/include/gtk-2.0/gtk/gtklistitem.h: /usr/include/gtk-2.0/gtk/gtkoldeditable.h: /usr/include/gtk-2.0/gtk/gtkoptionmenu.h: /usr/include/gtk-2.0/gtk/gtkpreview.h: /usr/include/gtk-2.0/gtk/gtktipsquery.h: guake-indicator.h: guake-indicator-new-entry.h: guake-indicator-read-json.h: /usr/include/json-c/json.h: /usr/include/json-c/bits.h: /usr/include/json-c/debug.h: /usr/include/x86_64-linux-gnu/bits/waitflags.h: /usr/include/x86_64-linux-gnu/bits/waitstatus.h: /usr/include/alloca.h: /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h: /usr/include/x86_64-linux-gnu/bits/stdlib-float.h: /usr/include/x86_64-linux-gnu/bits/stdlib.h: /usr/include/json-c/linkhash.h: /usr/include/json-c/json_object.h: /usr/include/json-c/json_inttypes.h: /usr/include/json-c/json_config.h: /usr/include/inttypes.h: /usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdint.h: /usr/include/stdint.h: /usr/include/x86_64-linux-gnu/bits/wchar.h: /usr/include/json-c/arraylist.h: /usr/include/json-c/json_util.h: /usr/include/json-c/json_tokener.h: /usr/include/json-c/json_object_iterator.h: /usr/include/json-c/json_c_version.h: guake-indicator-write-json.h: guake-indicator-delete-entry-group.h: guake-indicator/config.h.in000664 001750 001750 00000003301 12451035035 016234 0ustar00ozzyozzy000000 000000 /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the `bzero' function. */ #undef HAVE_BZERO /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mkdir' function. */ #undef HAVE_MKDIR /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the `strerror' function. */ #undef HAVE_STRERROR /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION guake-indicator/data/icons/22x22/000775 001750 001750 00000000000 12451035035 017017 5ustar00ozzyozzy000000 000000 guake-indicator/data/icons/24x24/apps/guake-indicator.png000664 001750 001750 00000002701 12451035035 023542 0ustar00ozzyozzy000000 000000 PNG  IHDRw=bKGD pHYsIIEtIME $,% NIDATHǵ]]W{sϽ3I4Ѫ؎hjբQT/RDR}0j@)*Ƃ)MӠ(UĤGkf=sϽ|8')> {_{KݻwBDRvg7LH55wEq\E;iUى&Z ֒Pj[WF[$*T"5.]nړZQ# c >PaVq l@z3.( Rmҽ툻^?)a'_Rjq޲]%]Q9(b a#N&6rA3HiPxn逸(rt "My" B!l4Ay7AF1J[O9 JoVvcJZH+Q 8 [9(,tp18<µ"bK+F)O%˝W2Fl$D:&hCN4XkLD`Ńjcq z[2(R.Ȳ>:LM8>tǻ軮dfp8~0\'py.[xk \ xlm_sK^{8^̘ozdlz矢|34;F|wE눑fVRb&FFs-[ϏؙCe߾ߣk1zXkY Cƣ5w$}~켕9ll$Z|ax៿㻏Eiszz7Нgӧxd=ӔM;O,,|d>iZ0W,"=x'p wvSy'|~pPJ- XCc8 q=sU6`KɅ G=kg?D΁o>BhuC;.(si4MY^Yf8Lp\}q,.Er^Vtx㈝kVӴZ-h4A3A,j+`e>8E9vemdX<=g} URWJYq$b!1Nv$g! rd,A no jP~x jY֘$αtYZ[*4[w9[sOO<v)|-̶OaQů ҥ+ϼt9{"f&+IENDB`guake-indicator/data/icons/32x32/apps/guake-indicator.png000664 001750 001750 00000003723 12451035035 023545 0ustar00ozzyozzy000000 000000 PNG  IHDR szzbKGD pHYsIIEtIME %'_`IDATXŗUG?s}v.]S@,6QIiBlTq&hhHj16V+ 4]h"BX~첻{ 7s9snp{9mzbɍkMSOibc}}C kXt,N#x@CFt1 qqWeo^z4wc|OdyL@ɳDi6!9qLG$b<i6S:R 1,śn&#G/u@$Q\ sk֐ =g&IR@D5Ǯ V(:9ƌX|O%h'1ŤL9qGQ5Tsll)I&ڗ1c,q{e 82KRXЉcزc?M~˺G9%%~KNw3I\IƂTp(DA) Yp!:.q&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(srcdir)/config.h.in COPYING TODO compile depcomp install-sh \ missing py-compile ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPINDICATORLIB = @APPINDICATORLIB@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ GTKLIB = @GTKLIB@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PYTHON = @PYTHON@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src data plugins all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: