Changeset 1081

Show
Ignore:
Timestamp:
07/21/07 22:06:06 (6 years ago)
Author:
maxim-gavrilov
Message:

missed

Location:
branch/max/umitNSEFacilitator
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branch/max/umitNSEFacilitator/ScriptManager.py

    r1080 r1081  
    343343        vbox = HIGVBox() 
    344344 
    345         btn = HIGButton(_("Add File...")) 
     345        btn = HIGButton(_("Add File..."), gtk.STOCK_OPEN) 
    346346        vbox.pack_start(btn, False, False) 
    347347        btn.connect("clicked", self._add_file_cb) 
    348348 
    349         btn = HIGButton(_("Add Directory...")) 
     349        btn = HIGButton(_("Add Directory..."), gtk.STOCK_OPEN) 
    350350        vbox.pack_start(btn, False, False) 
    351351        btn.connect("clicked", self._add_dir_cb) 
    352352 
    353         btn = HIGButton(_("Add URL File...")) 
     353        btn = HIGButton(_("Add URL File..."), gtk.STOCK_OPEN) 
    354354        vbox.pack_start(btn, False, False) 
    355355        btn.connect("clicked", self._add_url_file_cb) 
    356356 
    357         btn = HIGButton(_("Add URL Base...")) 
     357        btn = HIGButton(_("Add URL Base..."), gtk.STOCK_OPEN) 
    358358        vbox.pack_start(btn, False, False) 
    359359        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 
    119import gtk 
    220from higwidgets.higscrollers import HIGScrolledWindow