# Copyright (C) 2005 Insecure.Com LLC. # # Author: Adriano Monteiro Marques # # 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 import gtk from umitGUI.SearchGUI import SearchGUI from umitCore.I18N import _ from higwidgets.higboxes import HIGVBox from higwidgets.higbuttons import HIGButton class SearchWindow(gtk.Window, object): def __init__(self, load_method): gtk.Window.__init__(self) self.set_title(_("Search Window")) self.set_position(gtk.WIN_POS_CENTER) self.load_method = load_method self._create_widgets() self._pack_widgets() self._connect_widgets() def _create_widgets(self): self.vbox = HIGVBox() self.btn_box = gtk.HButtonBox() self.btn_open = HIGButton(stock=gtk.STOCK_OPEN) self.btn_close = HIGButton(stock=gtk.STOCK_CLOSE) self.search_gui = SearchGUI() def _pack_widgets(self): self.vbox.pack_start(self.search_gui) self.vbox.pack_start(self.btn_box) self.btn_box.set_layout(gtk.BUTTONBOX_END) self.btn_box.set_spacing(6) self.btn_box.pack_start(self.btn_close) self.btn_box.pack_start(self.btn_open) self.add(self.vbox) def _connect_widgets(self): # Double click on result, opens it self.search_gui.result_view.connect("row-activated", self.open_selected) self.btn_open.connect("clicked", self.open_selected) self.btn_close.connect("clicked", self.close) self.connect("delete-event", self.close) def close(self, widget=None, event=None): self.destroy() def open_selected(self, widget=None, path=None, view_column=None, extra=None): # Open selected results! self.load_method(self.results) # Close Search Window self.close() def get_results(self): # Return list with parsed objects from result list store return self.search_gui.selected_results results = property(get_results) if __name__ == "__main__": search = SearchWindow() search.show_all() gtk.main()