Changeset 1081
- Timestamp:
- 07/21/07 22:06:06 (6 years ago)
- Location:
- branch/max/umitNSEFacilitator
- Files:
-
- 2 modified
-
ScriptManager.py (modified) (1 diff)
-
Utils.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branch/max/umitNSEFacilitator/ScriptManager.py
r1080 r1081 343 343 vbox = HIGVBox() 344 344 345 btn = HIGButton(_("Add File...") )345 btn = HIGButton(_("Add File..."), gtk.STOCK_OPEN) 346 346 vbox.pack_start(btn, False, False) 347 347 btn.connect("clicked", self._add_file_cb) 348 348 349 btn = HIGButton(_("Add Directory...") )349 btn = HIGButton(_("Add Directory..."), gtk.STOCK_OPEN) 350 350 vbox.pack_start(btn, False, False) 351 351 btn.connect("clicked", self._add_dir_cb) 352 352 353 btn = HIGButton(_("Add URL File...") )353 btn = HIGButton(_("Add URL File..."), gtk.STOCK_OPEN) 354 354 vbox.pack_start(btn, False, False) 355 355 btn.connect("clicked", self._add_url_file_cb) 356 356 357 btn = HIGButton(_("Add URL Base...") )357 btn = HIGButton(_("Add URL Base..."), gtk.STOCK_OPEN) 358 358 vbox.pack_start(btn, False, False) 359 359 btn.connect("clicked", self._add_url_base_cb) -
branch/max/umitNSEFacilitator/Utils.py
r1080 r1081 1 # Copyright (C) 2007 Adriano Monteiro Marques <py.adriano@gmail.com> 2 # 3 # Author: Maxim Gavrilov <lovelymax@gmail.com> 4 # 5 # This program is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 2 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; if not, write to the Free Software 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 1 19 import gtk 2 20 from higwidgets.higscrollers import HIGScrolledWindow
