File: DiskManager.py

package info (click to toggle)
disk-manager 1.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,764 kB
  • ctags: 439
  • sloc: python: 3,373; sh: 3,282; makefile: 119
file content (662 lines) | stat: -rw-r--r-- 26,281 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
# -*- coding: UTF-8 -*-
#
#  DiskManager.py : Manage main interfaces
#  Copyright (C) 2007 Mertens Florent <flomertens@gmail.com>
#
#  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 os
import re
import sys
import time
import logging
import threading
from xml.sax.saxutils import escape as escape_mkup

import pygtk
pygtk.require("2.0")
import gtk
import pango
import gtk.glade
import gobject
from SimpleGladeApp import SimpleGladeApp
from gettext import gettext as _

from Utility import *

try :
    import pynotify
    NOTIFICATION = True
except :
    print >>sys.stderr, "WARNING : python-notify is not installed, disable notification"
    NOTIFICATION = False

if not gtk.check_version( 2, 10, 0 ) == None :
    TRAYTYPE = "egg"
else :
    try :
        pynotify.Notification.attach_to_status_icon
        TRAYTYPE = "gtk"
    except :
        TRAYTYPE = "egg"
        
if TRAYTYPE == "egg" :
    try :
        import egg.trayicon
    except :
        if not gtk.check_version( 2, 10, 0 ) == None :
            print >>sys.stderr, "WARNING : Can't find a valid tray icon module"
            TRAYTYPE = None
        else :
            TRAYTYPE = "gtk"
            NOTIFICATION = False
            print >>sys.stderr, "WARNING : python-notify is too old, disable notification"
            
ICON_THEME = gtk.icon_theme_get_default()
ICON_THEME.append_search_path("%s/.icons" % get_user("dir"))
ICON_THEME.append_search_path("%s/.local/share/icons" % get_user("dir"))
try :
    PIX_MOUNT = ICON_THEME.load_icon("gnome-dev-harddisk", 24, 0)
except :
    try :
        PIX_MOUNT = ICON_THEME.load_icon("hdd_mount", 24, 0)
    except :
        PIX_MOUNT = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 1, 1)
try :
    PIX_UNMOUNT = ICON_THEME.load_icon("gnome-dev-removable", 24, 0)
except :
    try :
        PIX_UNMOUNT = ICON_THEME.load_icon("hdd_unmount", 24, 0)
    except :
        PIX_UNMOUNT = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 1, 1)       

from config import *
from Config import Config
from Dialogs import *
from AddWizard import *
from Fstab.FstabHandler import *

gtk.glade.bindtextdomain("disk-manager",localedir)
gtk.glade.textdomain("disk-manager")


class DiskManager(SimpleGladeApp) :
    ''' Class that manage the main window '''

    def __init__(self) :

        SimpleGladeApp.__init__(self, GLADEFILE, "window_main", domain = "disk-manager")
        self.window_main.set_title(_("Disk Manager"))
        
        # Start configuration
        self.conf = Config()

        # Delete broken link, and create hal fdi directory if it don't exist
        for value in (TARGET_NTFS_WRITE, TARGET_NTFS_READ) :
            if not os.path.exists(value) and os.path.islink(value) :
                os.unlink(value)
        if not os.path.exists(HAL_CONFIG_DIR) :
            os.mkdir(HAL_CONFIG_DIR)

        # Perform sanity check
        check = SanityCheck(parent = self.window_main, conf = self.conf)
        check.unknow()
        check.duplicate()

        # Start fstab handler
        naming = self.conf.get("General", "fstab_naming")
        backend = self.conf.get("General", "backend")
        self.disk = FstabHandler(FSTAB, naming = naming, backend = backend, \
                parent = self.window_main, external_change_watch = True)

        # Don't use ntfs-3g when we don't have it. Use it when we don't have ntfs
        ntfs_driver = self.disk.info.get_drivers("ntfs")["all"].keys()
        if not "ntfs-3g" in ntfs_driver :
            self.vbox_ntfs.hide()
            self.conf.set("General","ntfs_driver","ntfs")
        elif not "ntfs" in ntfs_driver :
            self.checkbutton_ntfs.set_active(True)
            self.conf.set("General","ntfs_driver","ntfs-3g")
            self.checkbutton_ntfs.set_sensitive(False)

        # Set external NTFS policy. Set internal NTFS polcy for non mounted new devices
        self.set_external_ntfs_policy(self.conf.get("General","ntfs_driver"))
        if os.path.exists(TARGET_NTFS_WRITE) :
            self.conf.set("General","ntfs_driver","ntfs-3g")
            self.set_external_ntfs_policy("ntfs-3g")
        driver = self.conf.get("General","ntfs_driver")
        for entry in self.disk.get_new() :
            if entry["FS_TYPE"] == "ntfs" and not entry["FSTAB_TYPE"] == driver \
                and not entry.get_is_mounted() :
                self.disk.set(entry, type = driver)
    
        #Disable notify if we can't show it :
        if not TRAYTYPE :
            self.conf.set("General","notify","False")
            self.checkbutton_notify.set_sensitive(False)     
        
        # Draw stuff
        try :
            self.window_main.resize(\
                self.conf.getint("Gui Config", "main_width"), \
                self.conf.getint("Gui Config", "main_height"))
        except :
            self.conf.set_default("Gui Config", "main_width")
            self.conf.set_default("Gui Config", "main_height")
        self.width = self.conf.getint("Gui Config", "main_width")
        self.height = self.conf.getint("Gui Config", "main_width")
        self.window_main.show()
        self.set_buttons()
        self.setupTreeView()
        self.update_main()
                
        # Store all detected device
        detected = " ".join([ k["DEVICE"] for k in self.disk.get_all() ])
        self.conf.set("Detected Device", "detected", detected)
        
        # Connect events
        self.checkbutton_ntfs.connect("toggled", self.on_ntfs_toggled)
        self.checkbutton_notify.connect("toggled", self.on_notify_toggled)
        self.ntfs_button.connect("clicked",  self.on_ntfs_toggled)
        self.quit_menu.connect("activate", self.on_close_clicked)
        self.window_main.connect("destroy", self.on_close_clicked)
        self.window_main.connect("configure-event", self.on_resize)
        self.undo_menu.connect("activate", self.on_revert_clicked)
        self.save_menu.connect("activate", self.on_save_clicked)
        self.history_menu.connect("activate", self.on_history_clicked)
        self.about_menu.connect("activate", about_dialog, self.window_main)
        self.new_button.connect("clicked", self.on_new_clicked)
        self.edit_button.connect("clicked",  self.on_edit_clicked)
        self.mount_button.connect("clicked",  self.on_mount_clicked)
        self.info_button.connect("clicked", self.on_info_clicked)
        self.treeview.connect("row-activated", self.on_row_activated)
        self.treeview.connect("cursor_changed", self.on_cursor_changed)
        self.disk.connect("any_changed", gobject.idle_add, self.update_main)
        
        # Add some tooltip
        gtk.Tooltips().set_tip(self.eventbox_total_avail, \
        _("Available size can differ from free size\n"
        "because some space may be reserved for the root user."))
        
        gtk.gdk.threads_init()

    def set_buttons(self) :
        ''' Set ntfs policy & notify button '''
        
        if self.conf.get("General","notify") == "True" :
            self.checkbutton_notify.set_active(True)
        if self.conf.get("General","ntfs_driver") == "ntfs-3g" \
            and os.path.exists(TARGET_NTFS_WRITE):
            self.checkbutton_ntfs.set_active(True)
        elif self.conf.get("General","ntfs_driver") == "ntfs" \
            and os.path.exists(TARGET_NTFS_READ) :
            self.checkbutton_ntfs.set_active(False)
        else : self.checkbutton_ntfs.set_inconsistent(True)
        
    def setupTreeView(self) :
        ''' treeview setup '''
        
        renderer= gtk.CellRendererToggle()
        renderer.set_property("activatable", True)
        renderer.connect("toggled", self.on_enable_toggled)
        column = gtk.TreeViewColumn(_("Enable"), renderer, active=0, sensitive=1, activatable=1)
        column.set_sort_column_id(0)
        column.set_reorderable(True)
        self.treeview.append_column(column)
        
        pix_renderer = gtk.CellRendererPixbuf()
        column = gtk.TreeViewColumn(_("Device"))
        column.pack_start(pix_renderer, False)
        column.set_attributes(pix_renderer, pixbuf=6)
        pix_renderer.set_property("xpad", 3)
        text_renderer = gtk.CellRendererText()
        column.pack_end(text_renderer, False)
        column.set_attributes(text_renderer, text=2, sensitive=0, style=5)
        column.set_sort_column_id(2)
        column.set_reorderable(True)
        column.set_expand(True)
        self.treeview.append_column(column)
        
        renderer = gtk.CellRendererText()
        column = gtk.TreeViewColumn(_("Mount point"), renderer, text=3, sensitive=0, style=5)
        column.set_sort_column_id(3)
        column.set_expand(True)
        column.set_reorderable(True)
        self.treeview.append_column(column)
       
        renderer = gtk.CellRendererText()
        column = gtk.TreeViewColumn(_("Type"), renderer, text=4, sensitive=0, style=5)
        column.set_sort_column_id(4)
        column.set_expand(True)
        column.set_reorderable(True)
        self.treeview.append_column(column)
        
        renderer = gtk.CellRendererText()
        column = gtk.TreeViewColumn(_("Total"), renderer, text=7, sensitive=0, style=5)
        column.set_sort_column_id(7)
        column.set_expand(True)
        column.set_reorderable(True)
        self.treeview.append_column(column)
        
        renderer = gtk.CellRendererText()
        column = gtk.TreeViewColumn(_("Free"), renderer, text=8, sensitive=0, style=5)
        column.set_sort_column_id(8)
        column.set_expand(True)
        column.set_reorderable(True)
        self.treeview.append_column(column)
        
        renderer = gtk.CellRendererProgress()
        column = gtk.TreeViewColumn(_("Used"), renderer, text=9, value=10, sensitive=0)
        column.set_sort_column_id(9)
        column.set_expand(True)
        column.set_reorderable(True)
        renderer.set_property("ypad", 4)
        renderer.set_property("xpad", 4)
        self.treeview.append_column(column)
        
        self.tree_store = gtk.ListStore(bool, bool, str, str, str, int, \
                    gtk.gdk.Pixbuf, str, str, str, int)
        self.tree_store.set_sort_func(7, self.sort_size, "size")
        self.tree_store.set_sort_func(8, self.sort_size, "free")
        self.tree_store.set_sort_func(9, self.sort_size, "used")
        try :
            self.tree_store.set_sort_column_id( \
                int(self.conf.get("Gui Config", "selected")), \
                getattr(gtk,"SORT_" + self.conf.get("Gui Config", \
                    "selected_order").upper()))
        except ValueError :
            self.tree_store.set_sort_column_id( \
                int(self.conf.set_default("Gui Config", "selected")), \
                getattr(gtk,"SORT_" + self.conf.set_default("Gui Config", \
                    "selected_order").upper()))
        self.treeview.set_model(self.tree_store)
        
    def set_external_ntfs_policy(self, driver) :
        ''' Set external NTFS policy '''
    
        if driver =="ntfs-3g" :
            if not os.path.exists(TARGET_NTFS_WRITE) :
                os.symlink(NTFS_WRITE, TARGET_NTFS_WRITE)
            if os.path.exists(TARGET_NTFS_READ) :
                os.unlink(TARGET_NTFS_READ)   
        else : 
            if not os.path.exists(TARGET_NTFS_READ) :
                os.symlink(NTFS_READ, TARGET_NTFS_READ)
            if os.path.exists(TARGET_NTFS_WRITE) :
                os.unlink(TARGET_NTFS_WRITE)

    def update_main(self) :
        ''' Update the window '''
    
        focus_path = self.treeview.get_cursor()[0]
        if focus_path :
            l = self.tree_store[focus_path]
            current_focus = (l[2], l[3])

        self.undo_menu.set_sensitive(self.disk.original_has_changed())
        self.save_menu.set_sensitive(self.disk.lastsave_has_changed())
            
        self.hbuttonbox_ntfs.hide()
        for i in self.disk.search("ntfs", keys = ["FS_TYPE"]) :
            if not self.disk[i]["FSTAB_TYPE"] == self.conf.get("General","ntfs_driver") :
                self.hbuttonbox_ntfs.show()
                break

        new_device = self.disk.get_new()
        if new_device :
            self.label_status_new.set_label(_("%i new partition(s) can be configured.") \
                    % len(new_device))
            self.hbuttonbox_new.show()
        else : 
            self.label_status_new.set_label(_("All partitions are configured"))
            self.hbuttonbox_new.hide()
            
        (self.total, self.total_free, self.total_used, self.total_avail) = (0,0,0,0)
        configured = self.disk.get_configured()
        self.tree_store.clear()
        for entry in self.disk :
            device = entry["DEV"]
            type = entry["FSTAB_TYPE"]
            path = entry["FSTAB_PATH"]
            sensitive = not entry.get_is_system() or not entry in configured
            size_real  = entry.get_size()
            size = size_renderer(size_real)
            if entry in configured :
                self.total += size_real
                enable = True
                style = pango.STYLE_NORMAL
            else :
                enable = False
                style = pango.STYLE_ITALIC
            if entry.get_is_mounted() :
                pix = PIX_MOUNT
                free_real = entry.get_free_size()
                free = size_renderer(free_real)
                used_real = entry.get_used_size()
                used = size_renderer(used_real)
                try :
                    per_use = used_real  / float(size_real) * 100
                except ZeroDivisionError :
                    per_use = 0
                if entry in configured :
                    self.total_free += free_real 
                    self.total_used += used_real 
                    self.total_avail += entry.get_available_size()
            else :
                pix = PIX_UNMOUNT
                free = used = ""
                per_use = 0
            self.tree_store.append((enable, sensitive, device, path, type, \
                    style, pix, size, free, used, per_use))
                    
        self.label_status_configured.set_label( \
            _("%i partitions are in use. (total size : %s)") % \
            (len(configured), size_renderer(self.total)))
        self.label_status_free.set_label(size_renderer(self.total_free))
        self.label_status_used.set_label(size_renderer(self.total_used))
        self.label_status_avail.set_label(size_renderer(self.total_avail))
                    
        if focus_path :
            for path in range(len(self.tree_store)) :
                l = self.tree_store[path]
                if current_focus == (l[2], l[3]) :
                    self.treeview.set_cursor(path)
                    break
                elif current_focus[0] == l[2] and len(self.disk.search(l[2], keys = ["DEV"])) < 2 :
                    self.treeview.set_cursor(path)
                    break
        if not self.treeview.get_cursor()[0] :
            self.info_button.set_sensitive(False)
            self.mount_button.set_sensitive(False)
            self.edit_button.set_sensitive(False)

    def sort_size(self, treemodel, iter1, iter2, type) :
    
        iter = [iter1, iter2]
        size = [0, 0]
        for i in range(2) :
            if not self.tree_store.get_value(iter[i], 3) :
                return 0
            entry = self.tree_store.get_value(iter[i], 3)
            if type == "size" :
                size[i] = self.disk.get_property(entry, type)
            else :
                size[i] = self.disk.get_property(entry, "%s_size" % type)
        if size[0] < size[1] :
            return -1
        return 1
             
    def on_ntfs_toggled(self, button) :
        ''' Set NTFS policy corresponding to the button status '''
        
        self.checkbutton_ntfs.set_inconsistent(False)
        if self.checkbutton_ntfs.get_active() : 
            driver = "ntfs-3g"
        else : 
            driver = "ntfs"
        self.disk.set_mode("delay")
        for entry in self.disk.get_all() :
            if entry["FS_TYPE"] == "ntfs" and not entry["FSTAB_TYPE"] == driver :
                self.disk.set(entry, type = driver)
        self.disk.set_mode("real")
        self.set_external_ntfs_policy(driver)
        self.conf.set("General","ntfs_driver",driver)
        self.hbuttonbox_ntfs.hide()
        for i in self.disk.search("ntfs", keys = ["FS_TYPE"]) :
            if not self.disk[i]["FSTAB_TYPE"] == self.conf.get("General","ntfs_driver") :
                self.hbuttonbox_ntfs.show()
                break
        
    def on_notify_toggled(self, button) :
        ''' Set notify corresponding to the button status '''
    
        self.conf.set("General","notify",self.checkbutton_notify.get_active())

    def on_new_clicked(self, button) :
        ''' Start configuration_wizard '''

        app = AddWizard(parent = self.window_main, disk = self.disk, log = False)
        app.run()

    def on_edit_clicked(self, button) :

        path = self.treeview.get_cursor()[0]
        entry = self.disk[self.tree_store[path][3]]
        if entry.get_is_system() :
            ret = dialog("question", _("Editing system partition?"), \
                _("<i>%s</i> is an important system partition.\n" \
                "Be really careful when editing it, or you may have\n" \
                "serious problems. Do you want to continue?") % entry["DEV"], \
                parent = self.window_main)
            if ret[0] == gtk.RESPONSE_REJECT :
                return
        dial = EditPartition(self.disk, entry, parent = self.window_main)
        dial.dialog_edit.run()

    def on_mount_clicked(self, button) :
    
        path = self.treeview.get_cursor()[0]
        entry = self.disk[self.tree_store[path][3]]
        if entry.get_is_mounted() : 
            self.disk.umount(entry)
        else : 
            self.disk.mount(entry)
        
    def on_info_clicked(self, button) :
    
        path = self.treeview.get_cursor()[0]
        col = path[0]
        dial = InfoDialog(None, self.disk, parent = self.window_main)
        res = 0
        while not res in (gtk.RESPONSE_CLOSE, gtk.RESPONSE_DELETE_EVENT) :
            dial.entry = self.disk[self.tree_store[path][3]]
            dial.update_dial()
            if col == 0 :
                dial.back_button.set_sensitive(False)
            if col == len(self.tree_store) - 1 :
                dial.forward_button.set_sensitive(False)                
            res = dial.dialog_info.run()
            if res == 1 : 
                col = col - 1
                dial.forward_button.set_sensitive(True)
            if res == 2 :
                col = col + 1
                dial.back_button.set_sensitive(True)
            path = (col,)
            self.treeview.set_cursor(path)
        dial.dialog_info.destroy()
        
    def on_row_activated(self, treeview, path, view_column) :
        ''' Start browser on double click. '''
    
        entry = self.disk[self.tree_store[path][3]]
        if not self.disk.mount(entry) :
            open_url(entry["FSTAB_PATH"])
        
    def on_enable_toggled(self, renderer, path) :
    
        use = self.tree_store[path][0]
        entry = self.disk[self.tree_store[path][3]]
        self.treeview.set_cursor(path)
        if use :
            self.disk.unconfigure(entry)
        else :
            self.disk.configure(entry)
        
    def on_cursor_changed(self, treeview) :
        ''' Set button when we change device in the advance configuration '''

        path = self.treeview.get_cursor()[0]
        try :
            entry = self.disk[self.tree_store[path][3]]
        except NotInDatabase :
            self.info_button.set_sensitive(False)
            self.edit_button.set_sensitive(False)
            self.mount_button.set_sensitive(False)
            return
        sensitive = self.tree_store[path][1]
        self.info_button.set_sensitive(True)
        self.edit_button.set_sensitive(True)
        self.mount_button.set_sensitive(sensitive)
        if entry.get_is_mounted() :
            self.icon_mount.set_from_stock(gtk.STOCK_CANCEL, gtk.ICON_SIZE_BUTTON)
            self.label_mount.set_label(_("Unmount"))
        else :
            self.icon_mount.set_from_stock(gtk.STOCK_APPLY, gtk.ICON_SIZE_BUTTON)
            self.label_mount.set_label(_("Mount"))
            
    def on_revert_clicked(self, button) :
        ''' Come back to the original fstab when we click on revert '''
    
        ret = dialog("question", _("Reverting to an older version?"), \
            [_("This will apply the following changes:"), _("Do you want to continue?")],
            "\n".join(self.disk.get_changes_current_to_original()), parent = self.window_main)
        if ret[0] == gtk.RESPONSE_YES :
            self.disk.undo()
        
    def on_history_clicked(self, button) :
        ''' Start HistoryDialog. '''
    
        dial = HistoryDialog(self.disk, parent = self.window_main)
        dial.dialog_history.run()
        
    def on_save_clicked(self, button) :
    
        self.disk.savelog()
        self.update_main()
        
    def on_resize(self, widget, event) :
    
        self.width = event.width
        self.height = event.height
    
    def on_close_clicked(self, button) :
        ''' Save the log when we close the app '''

        self.window_main.hide()
        while gtk.events_pending() :
            gtk.main_iteration()
        self.conf.set("Gui Config", "selected", \
                self.tree_store.get_sort_column_id()[0])
        self.conf.set("Gui Config", "selected_order", \
                self.tree_store.get_sort_column_id()[1].value_nick)
        self.conf.set("Gui Config", "main_width", self.width)
        self.conf.set("Gui Config", "main_height", self.height)
        self.disk.shutdown()
        gtk.main_quit()
       
               
class Notification :
    ''' Class that manage the notification '''
   

    def __init__(self) :
    
        if TRAYTYPE == "gtk" :
            self.trayicon = gtk.status_icon_new_from_icon_name("disk-manager")
            self.trayicon.connect("activate", self.open_wizard)
            self.trayicon.connect( "popup-menu", self.on_popup_menu )
            self.buildMenu()
            self.trayicon.set_tooltip(_("New partitions detected"))
            gtk.gdk.threads_init()
            t = threading.Thread(target=self.start_notification)
            t.start()
            gtk.main()
        elif TRAYTYPE == "egg" :
            self.trayicon = egg.trayicon.TrayIcon("disk-manager")
            self.eventbox = gtk.EventBox()
            self.eventbox.set_events(gtk.gdk.BUTTON_PRESS_MASK)
            self.eventbox.connect_object("button_press_event", self.iconclick, self.eventbox)
            self.image = gtk.image_new_from_icon_name("disk-manager", gtk.ICON_SIZE_BUTTON)
            self.tooltips = gtk.Tooltips()
            self.tooltips.set_tip(self.eventbox, _("New partitions detected"))
            self.eventbox.add(self.image)
            self.trayicon.add(self.eventbox)
            self.eventbox.show_all()
            self.trayicon.show_all()
            self.buildMenu()
            gobject.timeout_add(2500, self.show_notify)
            gtk.main()
        else :
            logging.warning("Notification is disabled")
            
    def start_notification(self) :
    
        for i in range(100) :
            if self.trayicon.is_embedded() :
                break
            time.sleep(2)
        gobject.timeout_add(2500, self.show_notify)
            
    def show_notify(self) :
    
        if not NOTIFICATION :
            return
        pynotify.init("disk-manager")
        notify = pynotify.Notification(_("New partitions detected"),
           _("New partitions have been detected and can be\n"
             "configured by clicking on this icon."),"disk-manager")
        if TRAYTYPE == "gtk" :
            notify.attach_to_status_icon(self.trayicon)
        else :
            notify.attach_to_widget(self.trayicon)
        notify.set_timeout(10000)
        notify.show()
        
    def iconclick(self, widget, event):

        if event.type == gtk.gdk.BUTTON_PRESS:
            if event.button == 1:
                self.open_wizard(self.eventbox)
            elif event.button == 3: 
                self.menu.popup(None, None, None, event.button, event.time)
        
    def buildMenu(self):

        self.menu = gtk.Menu()
        menuItem = gtk.MenuItem(_("Start configuration"))
        menuItem.connect("activate", self.open_wizard)
        self.menu.append(menuItem)
        menuItem = gtk.MenuItem(_("Automatic configuration"))
        menuItem.connect("activate", self.start_auto)
        self.menu.append(menuItem)
        self.menu.append( gtk.SeparatorMenuItem() )
        menuItem = gtk.ImageMenuItem( gtk.STOCK_QUIT )
        menuItem.connect("activate", self.on_quit)
        self.menu.append(menuItem)
        self.menu.show_all()
        
    def on_popup_menu( self, status_icon, button, activate_time ):
    
        self.menu.popup( None, None, None, button, activate_time )
        
    def on_quit(self, widget) :
    
        gtk.main_quit()
        
    def start_auto(self, widget) :
    
        gtk.main_quit()
        argv = ["disk-manager-root", "-b"]
        sys.exit(os.spawnvp(os.P_WAIT, "disk-manager-root", argv))

    def open_wizard(self, *args) :
        ''' Execute AddWizard as root '''
        
        gtk.main_quit()
        argv = ["disk-manager-root", "-a"]
        sys.exit(os.spawnvp(os.P_WAIT, "disk-manager-root", argv))