Exemple #1
0
def newly_active(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix='view')
    cb.add(cv)
    cv = content_view(service=None, prefix='view')
    cb.add(cv)
    assert_equal(cb.get_current_page(), 1)
def newly_active(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix="view")
    cb.add(cv)
    cv = content_view(service=None, prefix="view")
    cb.add(cv)
    assert_equal(cb.get_current_page(), 1)
def cycle(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix="view")
    cb.add(cv)
    cv = content_view(service=None, prefix="view")
    cb.add(cv)
    assert_equal(cb.get_current_page(), 1)
    cb.next_page()
    assert_equal(cb.get_current_page(), 0)
    cb.prev_page()
    assert_equal(cb.get_current_page(), 1)
Exemple #4
0
def cycle(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix='view')
    cb.add(cv)
    cv = content_view(service=None, prefix='view')
    cb.add(cv)
    assert_equal(cb.get_current_page(), 1)
    cb.next_page()
    assert_equal(cb.get_current_page(), 0)
    cb.prev_page()
    assert_equal(cb.get_current_page(), 1)
Exemple #5
0
def cv(boss):
    svc = boss.get_service('window')
    t = Tree()
    v = content_view(service=svc, prefix='test', widget=t)
    svc.call('append_page', bookname='view', view=v)
    v.show_all()
    return svc, v, t
Exemple #6
0
def cv(boss):
    svc = boss.get_service('window')
    t = Tree()
    v = content_view(service=svc, prefix='test', widget=t)
    svc.call('append_page', bookname='view', view=v)
    v.show_all()
    return svc, v, t
def remove(self):
    cv = content_view(service=None, prefix="view")
    cb = ContentBook()
    cb.add(cv)
    assert_equal(cb.get_n_pages(), 1)
    assert_equal(cb.has_uid(cv.unique_id), True)
    cb.remove_view(cv)
    assert_equal(cb.get_n_pages(), 0)
    assert_equal(cb.has_uid(cv.unique_id), False)
Exemple #8
0
def empty(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix='view')
    cb.add(cv)

    def _e(cb):
        pass

    cb.connect('empty', _e)
Exemple #9
0
def remove(self):
    cv = content_view(service=None, prefix='view')
    cb = ContentBook()
    cb.add(cv)
    assert_equal(cb.get_n_pages(), 1)
    assert_equal(cb.has_uid(cv.unique_id), True)
    cb.remove_view(cv)
    assert_equal(cb.get_n_pages(), 0)
    assert_equal(cb.has_uid(cv.unique_id), False)
def empty(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix="view")
    cb.add(cv)

    def _e(cb):
        pass

    cb.connect("empty", _e)
def icon(self):
    cv = content_view(service=None, prefix="svcprefix", icon_name="gtk-close")
    i1 = cv.icon
    i2 = cv.icon
    assert_notequal(i1, i2)
    assert_equal(isinstance(i1, gtk.Image), True)
def icon_name(self):
    cv = content_view(service=None, prefix="svcprefix", icon_name="gtk-close")
    assert_equal(cv.icon_name, "gtk-close")
def short_title_init(self):
    cv = content_view(service=None, prefix="svcprefix", short_title="short")
    assert_equal(cv.short_title, "short")
Exemple #14
0
def icon_name(self):
    cv = content_view(service=None, prefix='svcprefix', icon_name='gtk-close')
    assert_equal(cv.icon_name, 'gtk-close')
Exemple #15
0
def _cv():
    return content_view(service=None, prefix='svcprefix')
Exemple #16
0
def icon(self):
    cv = content_view(service=None, prefix='svcprefix', icon_name='gtk-close')
    i1 = cv.icon
    i2 = cv.icon
    assert_notequal(i1, i2)
    assert_equal(isinstance(i1, gtk.Image), True)
def _cv():
    return content_view(service=None, prefix="svcprefix")
Exemple #18
0
def short_title_init(self):
    cv = content_view(service=None, prefix='svcprefix', short_title='short')
    assert_equal(cv.short_title, 'short')