예제 #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)
예제 #2
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)
예제 #3
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)
예제 #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)
예제 #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
예제 #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
예제 #7
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)
예제 #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)
예제 #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)
예제 #10
0
def empty(self):
    cb = ContentBook()
    cv = content_view(service=None, prefix="view")
    cb.add(cv)

    def _e(cb):
        pass

    cb.connect("empty", _e)
예제 #11
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)
예제 #12
0
def icon_name(self):
    cv = content_view(service=None, prefix="svcprefix", icon_name="gtk-close")
    assert_equal(cv.icon_name, "gtk-close")
예제 #13
0
def short_title_init(self):
    cv = content_view(service=None, prefix="svcprefix", short_title="short")
    assert_equal(cv.short_title, "short")
예제 #14
0
def icon_name(self):
    cv = content_view(service=None, prefix='svcprefix', icon_name='gtk-close')
    assert_equal(cv.icon_name, 'gtk-close')
예제 #15
0
def _cv():
    return content_view(service=None, prefix='svcprefix')
예제 #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)
예제 #17
0
def _cv():
    return content_view(service=None, prefix="svcprefix")
예제 #18
0
def short_title_init(self):
    cv = content_view(service=None, prefix='svcprefix', short_title='short')
    assert_equal(cv.short_title, 'short')